diff --git a/.backportrc.json b/.backportrc.json index 59a101195bef7..f9d0f001c35f6 100644 --- a/.backportrc.json +++ b/.backportrc.json @@ -3,6 +3,7 @@ "targetBranchChoices": [ { "name": "master", "checked": true }, { "name": "7.x", "checked": true }, + "7.14", "7.13", "7.12", "7.11", @@ -31,7 +32,7 @@ "targetPRLabels": ["backport"], "branchLabelMapping": { "^v8.0.0$": "master", - "^v7.14.0$": "7.x", + "^v7.15.0$": "7.x", "^v(\\d+).(\\d+).\\d+$": "$1.$2" }, "autoMerge": true, diff --git a/.eslintrc.js b/.eslintrc.js index 2eea41984b30e..09de32a91bca3 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -445,6 +445,7 @@ module.exports = { '(src|x-pack)/plugins/**/(public|server)/**/*', '!(src|x-pack)/plugins/**/(public|server)/mocks/index.{js,mjs,ts}', '!(src|x-pack)/plugins/**/(public|server)/(index|mocks).{js,mjs,ts,tsx}', + '!(src|x-pack)/plugins/**/__stories__/index.{js,mjs,ts,tsx}', ], allowSameFolder: true, errorMessage: 'Plugins may only import from top-level public and server modules.', diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 726e4257a5aac..1ea9e5a5a75bc 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -12,7 +12,7 @@ Delete any items that are not applicable to this PR. - [ ] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios - [ ] Any UI touched in this PR is usable by keyboard only (learn more about [keyboard accessibility](https://webaim.org/techniques/keyboard/)) - [ ] Any UI touched in this PR does not create any new axe failures (run axe in browser: [FF](https://addons.mozilla.org/en-US/firefox/addon/axe-devtools/), [Chrome](https://chrome.google.com/webstore/detail/axe-web-accessibility-tes/lhdoppojpmngadmnindnejefpokejbdd?hl=en-US)) -- [ ] If a plugin configuration key changed, check if it needs to be allowlisted in the [cloud](https://github.com/elastic/cloud) and added to the [docker list](https://github.com/elastic/kibana/blob/c29adfef29e921cc447d2a5ed06ac2047ceab552/src/dev/build/tasks/os_packages/docker_generator/resources/bin/kibana-docker) +- [ ] If a plugin configuration key changed, check if it needs to be allowlisted in the cloud and added to the [docker list](https://github.com/elastic/kibana/blob/master/src/dev/build/tasks/os_packages/docker_generator/resources/base/bin/kibana-docker) - [ ] This renders correctly on smaller devices using a responsive layout. (You can test this [in your browser](https://www.browserstack.com/guide/responsive-testing-on-local-server)) - [ ] This was checked for [cross-browser compatibility](https://www.elastic.co/support/matrix#matrix_browsers) diff --git a/.i18nrc.json b/.i18nrc.json index 0926f73722731..390e5e917d08e 100644 --- a/.i18nrc.json +++ b/.i18nrc.json @@ -16,6 +16,7 @@ "esUi": "src/plugins/es_ui_shared", "devTools": "src/plugins/dev_tools", "expressions": "src/plugins/expressions", + "expressionRevealImage": "src/plugins/expression_reveal_image", "inputControl": "src/plugins/input_control_vis", "inspector": "src/plugins/inspector", "inspectorViews": "src/legacy/core_plugins/inspector_views", diff --git a/WORKSPACE.bazel b/WORKSPACE.bazel index acb62043a15ca..ebf7bbc8488ac 100644 --- a/WORKSPACE.bazel +++ b/WORKSPACE.bazel @@ -10,15 +10,15 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") # Fetch Node.js rules http_archive( name = "build_bazel_rules_nodejs", - sha256 = "4a5d654a4ccd4a4c24eca5d319d85a88a650edf119601550c95bf400c8cc897e", - urls = ["https://github.com/bazelbuild/rules_nodejs/releases/download/3.5.1/rules_nodejs-3.5.1.tar.gz"], + sha256 = "0fa2d443571c9e02fcb7363a74ae591bdcce2dd76af8677a95965edf329d778a", + urls = ["https://github.com/bazelbuild/rules_nodejs/releases/download/3.6.0/rules_nodejs-3.6.0.tar.gz"], ) # Now that we have the rules let's import from them to complete the work load("@build_bazel_rules_nodejs//:index.bzl", "check_rules_nodejs_version", "node_repositories", "yarn_install") # Assure we have at least a given rules_nodejs version -check_rules_nodejs_version(minimum_version_string = "3.5.1") +check_rules_nodejs_version(minimum_version_string = "3.6.0") # Setup the Node.js toolchain for the architectures we want to support # diff --git a/api_docs/actions.json b/api_docs/actions.json index d7c5e63434c07..8ee6cfbc7d4f9 100644 --- a/api_docs/actions.json +++ b/api_docs/actions.json @@ -969,9 +969,9 @@ "section": "def-server.ActionResult", "text": "ActionResult" }, - ">>; execute: ({ actionId, params, source, }: Pick<", + ">>; execute: ({ actionId, params, source, relatedSavedObjects, }: Pick<", "ExecuteOptions", - ", \"source\" | \"params\" | \"actionId\">) => Promise<", + ", \"source\" | \"params\" | \"actionId\" | \"taskInfo\" | \"relatedSavedObjects\">) => Promise<", { "pluginId": "actions", "scope": "common", diff --git a/api_docs/actions.mdx b/api_docs/actions.mdx index 0131bca3e6c50..854541bbdf85d 100644 --- a/api_docs/actions.mdx +++ b/api_docs/actions.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'actions'] warning: 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. --- - import actionsObj from './actions.json'; diff --git a/api_docs/advanced_settings.mdx b/api_docs/advanced_settings.mdx index 241b6b82598c3..5be4696f40b3e 100644 --- a/api_docs/advanced_settings.mdx +++ b/api_docs/advanced_settings.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'advancedSettings'] warning: 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. --- - import advancedSettingsObj from './advanced_settings.json'; diff --git a/api_docs/alerting.json b/api_docs/alerting.json index 979f444659c20..ec784dc8fc991 100644 --- a/api_docs/alerting.json +++ b/api_docs/alerting.json @@ -25,13 +25,7 @@ "text": "Alert" }, ", \"enabled\" | \"id\" | \"name\" | \"params\" | \"actions\" | \"tags\" | \"alertTypeId\" | \"consumer\" | \"schedule\" | \"scheduledTaskId\" | \"createdBy\" | \"updatedBy\" | \"createdAt\" | \"updatedAt\" | \"apiKeyOwner\" | \"throttle\" | \"notifyWhen\" | \"muteAll\" | \"mutedInstanceIds\" | \"executionStatus\">) => string | ", - { - "pluginId": "kibanaUtils", - "scope": "common", - "docId": "kibKibanaUtilsPluginApi", - "section": "def-common.JsonObject", - "text": "JsonObject" - } + "JsonObject" ], "source": { "path": "x-pack/plugins/alerting/public/alert_navigation_registry/types.ts", @@ -64,7 +58,7 @@ ], "label": "registerNavigation", "description": [ - "\nRegister a customized view of the particular rule type. Stack Management provides a generic overview, but a developer can register a\ncustom navigation to provide the user an extra link to a more curated view. The alerting plugin doesn't actually do\nanything with this information, but it can be used by other plugins via the `getNavigation` functionality. Currently\nthe trigger_actions_ui plugin uses it to expose the link from the generic rule view in Stack Management.\n" + "\nRegister a customized view of the particular rule type. Stack Management provides a generic overview, but a developer can register a\ncustom navigation to provide the user an extra link to a more curated view. The alerting plugin doesn't actually do\nanything with this information, but it can be used by other plugins via the `getNavigation` functionality. Currently\nthe trigger_actions_ui plugin uses it to expose the link from the generic rule details view in Stack Management.\n" ], "signature": [ "(applicationId: string, ruleType: string, handler: ", @@ -133,13 +127,7 @@ "text": "Alert" }, ", \"enabled\" | \"id\" | \"name\" | \"params\" | \"actions\" | \"tags\" | \"alertTypeId\" | \"consumer\" | \"schedule\" | \"scheduledTaskId\" | \"createdBy\" | \"updatedBy\" | \"createdAt\" | \"updatedAt\" | \"apiKeyOwner\" | \"throttle\" | \"notifyWhen\" | \"muteAll\" | \"mutedInstanceIds\" | \"executionStatus\">) => string | ", - { - "pluginId": "kibanaUtils", - "scope": "common", - "docId": "kibKibanaUtilsPluginApi", - "section": "def-common.JsonObject", - "text": "JsonObject" - } + "JsonObject" ], "source": { "path": "x-pack/plugins/alerting/public/plugin.ts", @@ -156,7 +144,7 @@ "tags": [], "label": "registerDefaultNavigation", "description": [ - "\nRegister a customized view for all rule types. Stack Management provides a generic overview, but a developer can register a\ncustom navigation to provide the user an extra link to a more curated view. The alerting plugin doesn't actually do\nanything with this information, but it can be used by other plugins via the `getNavigation` functionality. Currently\nthe trigger_actions_ui plugin uses it to expose the link from the generic rule view in Stack Management.\n" + "\nRegister a customized view for all rule types with this application id. Stack Management provides a generic overview, but a developer can register a\ncustom navigation to provide the user an extra link to a more curated view. The alerting plugin doesn't actually do\nanything with this information, but it can be used by other plugins via the `getNavigation` functionality. Currently\nthe trigger_actions_ui plugin uses it to expose the link from the generic rule details view in Stack Management.\n" ], "signature": [ "(applicationId: string, handler: ", @@ -210,13 +198,7 @@ "text": "Alert" }, ", \"enabled\" | \"id\" | \"name\" | \"params\" | \"actions\" | \"tags\" | \"alertTypeId\" | \"consumer\" | \"schedule\" | \"scheduledTaskId\" | \"createdBy\" | \"updatedBy\" | \"createdAt\" | \"updatedAt\" | \"apiKeyOwner\" | \"throttle\" | \"notifyWhen\" | \"muteAll\" | \"mutedInstanceIds\" | \"executionStatus\">) => string | ", - { - "pluginId": "kibanaUtils", - "scope": "common", - "docId": "kibKibanaUtilsPluginApi", - "section": "def-common.JsonObject", - "text": "JsonObject" - } + "JsonObject" ], "source": { "path": "x-pack/plugins/alerting/public/plugin.ts", @@ -396,7 +378,7 @@ ], "source": { "path": "x-pack/plugins/alerting/common/alert_type.ts", - "lineNumber": 25 + "lineNumber": 26 }, "deprecated": false, "children": [ @@ -412,7 +394,7 @@ ], "source": { "path": "x-pack/plugins/alerting/common/alert_type.ts", - "lineNumber": 26 + "lineNumber": 27 }, "deprecated": false }, @@ -425,7 +407,7 @@ "description": [], "source": { "path": "x-pack/plugins/alerting/common/alert_type.ts", - "lineNumber": 27 + "lineNumber": 28 }, "deprecated": false } @@ -786,7 +768,7 @@ "description": [], "source": { "path": "x-pack/plugins/alerting/server/types.ts", - "lineNumber": 221 + "lineNumber": 222 }, "deprecated": false, "children": [ @@ -808,7 +790,7 @@ ], "source": { "path": "x-pack/plugins/alerting/server/types.ts", - "lineNumber": 222 + "lineNumber": 223 }, "deprecated": false }, @@ -830,7 +812,7 @@ ], "source": { "path": "x-pack/plugins/alerting/server/types.ts", - "lineNumber": 223 + "lineNumber": 224 }, "deprecated": false } @@ -1153,6 +1135,19 @@ "lineNumber": 148 }, "deprecated": false + }, + { + "parentPluginId": "alerting", + "id": "def-server.AlertType.isExportable", + "type": "boolean", + "tags": [], + "label": "isExportable", + "description": [], + "source": { + "path": "x-pack/plugins/alerting/server/types.ts", + "lineNumber": 149 + }, + "deprecated": false } ], "initialIsOpen": false @@ -1255,7 +1250,7 @@ "description": [], "source": { "path": "x-pack/plugins/alerting/server/plugin.ts", - "lineNumber": 85 + "lineNumber": 87 }, "deprecated": false, "children": [ @@ -1279,7 +1274,7 @@ ], "source": { "path": "x-pack/plugins/alerting/server/plugin.ts", - "lineNumber": 86 + "lineNumber": 88 }, "deprecated": false, "children": [ @@ -1302,7 +1297,7 @@ ], "source": { "path": "x-pack/plugins/alerting/server/plugin.ts", - "lineNumber": 94 + "lineNumber": 96 }, "deprecated": false, "isRequired": true @@ -1322,7 +1317,7 @@ "description": [], "source": { "path": "x-pack/plugins/alerting/server/plugin.ts", - "lineNumber": 105 + "lineNumber": 107 }, "deprecated": false, "children": [ @@ -1340,7 +1335,7 @@ ], "source": { "path": "x-pack/plugins/alerting/server/plugin.ts", - "lineNumber": 106 + "lineNumber": 108 }, "deprecated": false, "returnComment": [], @@ -1374,7 +1369,7 @@ ], "source": { "path": "x-pack/plugins/alerting/server/plugin.ts", - "lineNumber": 107 + "lineNumber": 109 }, "deprecated": false, "children": [ @@ -1397,7 +1392,7 @@ ], "source": { "path": "x-pack/plugins/alerting/server/plugin.ts", - "lineNumber": 107 + "lineNumber": 109 }, "deprecated": false, "isRequired": true @@ -1427,7 +1422,7 @@ ], "source": { "path": "x-pack/plugins/alerting/server/plugin.ts", - "lineNumber": 108 + "lineNumber": 110 }, "deprecated": false, "children": [ @@ -1450,7 +1445,7 @@ ], "source": { "path": "x-pack/plugins/alerting/server/plugin.ts", - "lineNumber": 109 + "lineNumber": 111 }, "deprecated": false, "isRequired": true @@ -1478,7 +1473,7 @@ ], "source": { "path": "x-pack/plugins/alerting/server/plugin.ts", - "lineNumber": 111 + "lineNumber": 113 }, "deprecated": false, "returnComment": [], @@ -1518,7 +1513,7 @@ ], "source": { "path": "x-pack/plugins/alerting/common/alert_type.ts", - "lineNumber": 30 + "lineNumber": 31 }, "deprecated": false, "initialIsOpen": false @@ -1711,7 +1706,7 @@ ], "source": { "path": "x-pack/plugins/alerting/server/types.ts", - "lineNumber": 181 + "lineNumber": 182 }, "deprecated": false, "initialIsOpen": false @@ -2073,7 +2068,7 @@ ], "source": { "path": "x-pack/plugins/alerting/common/alert_type.ts", - "lineNumber": 25 + "lineNumber": 26 }, "deprecated": false, "children": [ @@ -2089,7 +2084,7 @@ ], "source": { "path": "x-pack/plugins/alerting/common/alert_type.ts", - "lineNumber": 26 + "lineNumber": 27 }, "deprecated": false }, @@ -2102,7 +2097,7 @@ "description": [], "source": { "path": "x-pack/plugins/alerting/common/alert_type.ts", - "lineNumber": 27 + "lineNumber": 28 }, "deprecated": false } @@ -3199,7 +3194,7 @@ "description": [], "source": { "path": "x-pack/plugins/alerting/common/alert_navigation.ts", - "lineNumber": 13 + "lineNumber": 12 }, "deprecated": false, "children": [ @@ -3211,17 +3206,11 @@ "label": "state", "description": [], "signature": [ - { - "pluginId": "kibanaUtils", - "scope": "common", - "docId": "kibKibanaUtilsPluginApi", - "section": "def-common.JsonObject", - "text": "JsonObject" - } + "JsonObject" ], "source": { "path": "x-pack/plugins/alerting/common/alert_navigation.ts", - "lineNumber": 14 + "lineNumber": 13 }, "deprecated": false } @@ -3383,6 +3372,19 @@ "lineNumber": 22 }, "deprecated": false + }, + { + "parentPluginId": "alerting", + "id": "def-common.AlertType.isExportable", + "type": "boolean", + "tags": [], + "label": "isExportable", + "description": [], + "source": { + "path": "x-pack/plugins/alerting/common/alert_type.ts", + "lineNumber": 23 + }, + "deprecated": false } ], "initialIsOpen": false @@ -3396,7 +3398,7 @@ "description": [], "source": { "path": "x-pack/plugins/alerting/common/alert_navigation.ts", - "lineNumber": 10 + "lineNumber": 9 }, "deprecated": false, "children": [ @@ -3409,7 +3411,7 @@ "description": [], "source": { "path": "x-pack/plugins/alerting/common/alert_navigation.ts", - "lineNumber": 11 + "lineNumber": 10 }, "deprecated": false } @@ -3516,7 +3518,7 @@ ], "source": { "path": "x-pack/plugins/alerting/common/alert_type.ts", - "lineNumber": 30 + "lineNumber": 31 }, "deprecated": false, "initialIsOpen": false @@ -3670,7 +3672,7 @@ ], "source": { "path": "x-pack/plugins/alerting/common/alert_navigation.ts", - "lineNumber": 16 + "lineNumber": 15 }, "deprecated": false, "initialIsOpen": false diff --git a/api_docs/alerting.mdx b/api_docs/alerting.mdx index c3c844148106f..ae36d22d013b8 100644 --- a/api_docs/alerting.mdx +++ b/api_docs/alerting.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'alerting'] warning: 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. --- - import alertingObj from './alerting.json'; @@ -19,7 +18,7 @@ import alertingObj from './alerting.json'; | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 213 | 0 | 213 | 15 | +| 216 | 0 | 208 | 14 | ## Client diff --git a/api_docs/apm.json b/api_docs/apm.json index 84f5a87f404ae..1d0776a8d1953 100644 --- a/api_docs/apm.json +++ b/api_docs/apm.json @@ -144,7 +144,7 @@ ], "source": { "path": "x-pack/plugins/apm/server/plugin.ts", - "lineNumber": 54 + "lineNumber": 55 }, "deprecated": false, "children": [ @@ -160,7 +160,7 @@ ], "source": { "path": "x-pack/plugins/apm/server/plugin.ts", - "lineNumber": 64 + "lineNumber": 65 }, "deprecated": false, "children": [ @@ -183,7 +183,7 @@ ], "source": { "path": "x-pack/plugins/apm/server/plugin.ts", - "lineNumber": 64 + "lineNumber": 65 }, "deprecated": false, "isRequired": true @@ -211,7 +211,7 @@ "APMPluginStartDependencies", ", unknown>, plugins: Pick<", "APMPluginSetupDependencies", - ", \"data\" | \"security\" | \"home\" | \"features\" | \"ml\" | \"actions\" | \"usageCollection\" | \"apmOss\" | \"licensing\" | \"observability\" | \"ruleRegistry\" | \"spaces\" | \"cloud\" | \"taskManager\" | \"alerting\">) => { config$: ", + ", \"data\" | \"security\" | \"home\" | \"features\" | \"fleet\" | \"ml\" | \"actions\" | \"usageCollection\" | \"apmOss\" | \"licensing\" | \"observability\" | \"ruleRegistry\" | \"spaces\" | \"cloud\" | \"taskManager\" | \"alerting\">) => { config$: ", "Observable", "<{ 'apm_oss.transactionIndices': string; 'apm_oss.spanIndices': string; 'apm_oss.errorIndices': string; 'apm_oss.metricsIndices': string; 'apm_oss.sourcemapIndices': string; 'apm_oss.onboardingIndices': string; 'apm_oss.indexPattern': string; 'xpack.apm.serviceMapEnabled': boolean; 'xpack.apm.serviceMapFingerprintBucketSize': number; 'xpack.apm.serviceMapTraceIdBucketSize': number; 'xpack.apm.serviceMapFingerprintGlobalBucketSize': number; 'xpack.apm.serviceMapTraceIdGlobalBucketSize': number; 'xpack.apm.serviceMapMaxTracesPerRequest': number; 'xpack.apm.ui.enabled': boolean; 'xpack.apm.maxServiceEnvironments': number; 'xpack.apm.maxServiceSelection': number; 'xpack.apm.ui.maxTraceItems': number; 'xpack.apm.ui.transactionGroupBucketSize': number; 'xpack.apm.autocreateApmIndexPattern': boolean; 'xpack.apm.telemetryCollectionEnabled': boolean; 'xpack.apm.searchAggregatedTransactions': ", "SearchAggregatedTransactionSetting", @@ -229,7 +229,7 @@ "ApmPluginRequestHandlerContext", "; }) => Promise<{ search(params: TParams, { includeLegacyData }?: { includeLegacyData?: boolean | undefined; }): Promise<", + ">(operationName: string, params: TParams): Promise<", "InferSearchResponseOf", "" + ", \"data\" | \"security\" | \"home\" | \"features\" | \"fleet\" | \"ml\" | \"actions\" | \"usageCollection\" | \"apmOss\" | \"licensing\" | \"observability\" | \"ruleRegistry\" | \"spaces\" | \"cloud\" | \"taskManager\" | \"alerting\">" ], "source": { "path": "x-pack/plugins/apm/server/plugin.ts", - "lineNumber": 70 + "lineNumber": 71 }, "deprecated": false, "isRequired": true @@ -309,7 +309,7 @@ ], "source": { "path": "x-pack/plugins/apm/server/plugin.ts", - "lineNumber": 260 + "lineNumber": 270 }, "deprecated": false, "children": [ @@ -331,7 +331,7 @@ ], "source": { "path": "x-pack/plugins/apm/server/plugin.ts", - "lineNumber": 260 + "lineNumber": 270 }, "deprecated": false, "isRequired": true @@ -351,7 +351,7 @@ ], "source": { "path": "x-pack/plugins/apm/server/plugin.ts", - "lineNumber": 279 + "lineNumber": 289 }, "deprecated": false, "children": [], @@ -433,7 +433,7 @@ "description": [], "source": { "path": "x-pack/plugins/apm/server/routes/typings.ts", - "lineNumber": 45 + "lineNumber": 46 }, "deprecated": false, "children": [ @@ -456,7 +456,7 @@ ], "source": { "path": "x-pack/plugins/apm/server/routes/typings.ts", - "lineNumber": 46 + "lineNumber": 47 }, "deprecated": false }, @@ -472,7 +472,7 @@ ], "source": { "path": "x-pack/plugins/apm/server/routes/typings.ts", - "lineNumber": 47 + "lineNumber": 48 }, "deprecated": false }, @@ -488,7 +488,7 @@ ], "source": { "path": "x-pack/plugins/apm/server/routes/typings.ts", - "lineNumber": 48 + "lineNumber": 49 }, "deprecated": false }, @@ -506,7 +506,7 @@ ], "source": { "path": "x-pack/plugins/apm/server/routes/typings.ts", - "lineNumber": 53 + "lineNumber": 54 }, "deprecated": false }, @@ -522,7 +522,7 @@ ], "source": { "path": "x-pack/plugins/apm/server/routes/typings.ts", - "lineNumber": 54 + "lineNumber": 55 }, "deprecated": false }, @@ -554,7 +554,7 @@ ], "source": { "path": "x-pack/plugins/apm/server/routes/typings.ts", - "lineNumber": 55 + "lineNumber": 56 }, "deprecated": false }, @@ -692,6 +692,14 @@ "section": "def-server.HomeServerPluginStart", "text": "HomeServerPluginStart" }, + ">; } | undefined; fleet?: { setup: void; start: () => Promise<", + { + "pluginId": "fleet", + "scope": "server", + "docId": "kibFleetPluginApi", + "section": "def-server.FleetStartContract", + "text": "FleetStartContract" + }, ">; } | undefined; ml?: { setup: ", "SharedServices", "; start: () => Promise; } | undefined; actions?: { setup: ", @@ -778,7 +786,7 @@ ], "source": { "path": "x-pack/plugins/apm/server/routes/typings.ts", - "lineNumber": 59 + "lineNumber": 60 }, "deprecated": false }, @@ -800,7 +808,7 @@ ], "source": { "path": "x-pack/plugins/apm/server/routes/typings.ts", - "lineNumber": 65 + "lineNumber": 66 }, "deprecated": false } @@ -1135,7 +1143,9 @@ "section": "def-server.APMRouteHandlerResources", "text": "APMRouteHandlerResources" }, - ", { hasData: boolean; }, ", + ", { hasData: boolean; indices: ", + "ApmIndicesConfig", + "; }, ", "APMRouteCreateOptions", ">; } & { \"GET /api/apm/rum/client-metrics\": ", "ServerRoute", @@ -1503,40 +1513,6 @@ }, ", { indices: string; hasData: boolean; serviceName: any; }, ", "APMRouteCreateOptions", - ">; } & { \"GET /api/apm/rum/local_filters\": ", - "ServerRoute", - "<\"GET /api/apm/rum/local_filters\", ", - "TypeC", - "<{ query: ", - "IntersectionC", - "<[", - "IntersectionC", - "<[", - "TypeC", - "<{ filterNames: ", - "Type", - "<(\"host\" | \"location\" | \"browser\" | \"serviceName\" | \"agentName\" | \"containerId\" | \"podName\" | \"transactionResult\" | \"serviceVersion\" | \"transactionUrl\" | \"device\" | \"os\")[], string, unknown>; }>, ", - "TypeC", - "<{ uiFilters: ", - "StringC", - "; }>, ", - "TypeC", - "<{ start: ", - "Type", - "; end: ", - "Type", - "; }>]>, ", - "TypeC", - "<{}>]>; }>, ", - { - "pluginId": "apm", - "scope": "server", - "docId": "kibApmPluginApi", - "section": "def-server.APMRouteHandlerResources", - "text": "APMRouteHandlerResources" - }, - ", { localUiFilters: { options: any[]; name: \"host\" | \"location\" | \"browser\" | \"serviceName\" | \"agentName\" | \"containerId\" | \"podName\" | \"transactionResult\" | \"serviceVersion\" | \"transactionUrl\" | \"device\" | \"os\"; title: string; fieldName: string; }[]; }, ", - "APMRouteCreateOptions", ">; } & { \"GET /api/apm/service-map\": ", "ServerRoute", "<\"GET /api/apm/service-map\", ", @@ -2429,6 +2405,26 @@ "ProcessorEvent", ">; }, ", "APMRouteCreateOptions", + ">; } & { \"GET /api/apm/transactions/{transactionId}\": ", + "ServerRoute", + "<\"GET /api/apm/transactions/{transactionId}\", ", + "TypeC", + "<{ path: ", + "TypeC", + "<{ transactionId: ", + "StringC", + "; }>; }>, ", + { + "pluginId": "apm", + "scope": "server", + "docId": "kibApmPluginApi", + "section": "def-server.APMRouteHandlerResources", + "text": "APMRouteHandlerResources" + }, + ", { transaction: TypeOfProcessorEvent<", + "ProcessorEvent", + ">; }, ", + "APMRouteCreateOptions", ">; } & { \"GET /api/apm/services/{serviceName}/transactions/groups\": ", "ServerRoute", "<\"GET /api/apm/services/{serviceName}/transactions/groups\", ", @@ -3569,11 +3565,99 @@ }, ", { result: string; }, ", "APMRouteCreateOptions", + ">; } & { \"GET /api/apm/sourcemaps\": ", + "ServerRoute", + "<\"GET /api/apm/sourcemaps\", undefined, ", + { + "pluginId": "apm", + "scope": "server", + "docId": "kibApmPluginApi", + "section": "def-server.APMRouteHandlerResources", + "text": "APMRouteHandlerResources" + }, + ", { artifacts: ", + "ArtifactSourceMap", + "[]; } | undefined, ", + "APMRouteCreateOptions", + ">; } & { \"POST /api/apm/sourcemaps\": ", + "ServerRoute", + "<\"POST /api/apm/sourcemaps\", ", + "TypeC", + "<{ body: ", + "TypeC", + "<{ service_name: ", + "StringC", + "; service_version: ", + "StringC", + "; bundle_filepath: ", + "StringC", + "; sourcemap: ", + "Type", + "<{ version: number; sources: string[]; mappings: string; } & { names?: string[] | undefined; file?: string | undefined; sourceRoot?: string | undefined; sourcesContent?: string[] | undefined; }, string, unknown>; }>; }>, ", + { + "pluginId": "apm", + "scope": "server", + "docId": "kibApmPluginApi", + "section": "def-server.APMRouteHandlerResources", + "text": "APMRouteHandlerResources" + }, + ", ", + { + "pluginId": "fleet", + "scope": "server", + "docId": "kibFleetPluginApi", + "section": "def-server.Artifact", + "text": "Artifact" + }, + " | undefined, ", + "APMRouteCreateOptions", + ">; } & { \"DELETE /api/apm/sourcemaps/{id}\": ", + "ServerRoute", + "<\"DELETE /api/apm/sourcemaps/{id}\", ", + "TypeC", + "<{ path: ", + "TypeC", + "<{ id: ", + "StringC", + "; }>; }>, ", + { + "pluginId": "apm", + "scope": "server", + "docId": "kibApmPluginApi", + "section": "def-server.APMRouteHandlerResources", + "text": "APMRouteHandlerResources" + }, + ", void, ", + "APMRouteCreateOptions", + ">; } & { \"GET /api/apm/fleet/has_data\": ", + "ServerRoute", + "<\"GET /api/apm/fleet/has_data\", undefined, ", + { + "pluginId": "apm", + "scope": "server", + "docId": "kibApmPluginApi", + "section": "def-server.APMRouteHandlerResources", + "text": "APMRouteHandlerResources" + }, + ", { hasData: boolean; }, ", + "APMRouteCreateOptions", + ">; } & { \"GET /api/apm/fleet/agents\": ", + "ServerRoute", + "<\"GET /api/apm/fleet/agents\", undefined, ", + { + "pluginId": "apm", + "scope": "server", + "docId": "kibApmPluginApi", + "section": "def-server.APMRouteHandlerResources", + "text": "APMRouteHandlerResources" + }, + ", { cloudStandaloneSetup: { apmServerUrl: string | undefined; secretToken: string | undefined; } | undefined; fleetAgents: { id: string; name: string; apmServerUrl: any; secretToken: any; }[]; }, ", + "APMRouteCreateOptions", ">; }>" ], "source": { "path": "x-pack/plugins/apm/server/routes/get_global_apm_server_route_repository.ts", - "lineNumber": 60 + "lineNumber": 64 }, "deprecated": false, "initialIsOpen": false @@ -3625,7 +3709,7 @@ "description": [], "source": { "path": "x-pack/plugins/apm/server/types.ts", - "lineNumber": 51 + "lineNumber": 55 }, "deprecated": false, "children": [ @@ -3644,7 +3728,7 @@ ], "source": { "path": "x-pack/plugins/apm/server/types.ts", - "lineNumber": 52 + "lineNumber": 56 }, "deprecated": false }, @@ -3662,7 +3746,7 @@ ], "source": { "path": "x-pack/plugins/apm/server/types.ts", - "lineNumber": 53 + "lineNumber": 57 }, "deprecated": false, "returnComment": [], @@ -3688,7 +3772,7 @@ "ApmPluginRequestHandlerContext", "; }) => Promise<{ search(params: TParams, { includeLegacyData }?: { includeLegacyData?: boolean | undefined; }): Promise<", + ">(operationName: string, params: TParams): Promise<", "InferSearchResponseOf", ", null>" + " | null, null>" ], "source": { "path": "x-pack/plugins/cases/public/components/all_cases/index.tsx", @@ -327,7 +327,7 @@ "description": [], "signature": [ "CasesNavigation", - ", null>" + " | null, null>" ], "source": { "path": "x-pack/plugins/cases/public/components/all_cases/index.tsx", @@ -335,6 +335,38 @@ }, "deprecated": false }, + { + "parentPluginId": "cases", + "id": "def-public.AllCasesProps.disableAlerts", + "type": "CompoundType", + "tags": [], + "label": "disableAlerts", + "description": [], + "signature": [ + "boolean | undefined" + ], + "source": { + "path": "x-pack/plugins/cases/public/components/all_cases/index.tsx", + "lineNumber": 17 + }, + "deprecated": false + }, + { + "parentPluginId": "cases", + "id": "def-public.AllCasesProps.showTitle", + "type": "CompoundType", + "tags": [], + "label": "showTitle", + "description": [], + "signature": [ + "boolean | undefined" + ], + "source": { + "path": "x-pack/plugins/cases/public/components/all_cases/index.tsx", + "lineNumber": 18 + }, + "deprecated": false + }, { "parentPluginId": "cases", "id": "def-public.AllCasesProps.userCanCrud", @@ -344,7 +376,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/public/components/all_cases/index.tsx", - "lineNumber": 17 + "lineNumber": 19 }, "deprecated": false } @@ -416,7 +448,7 @@ "description": [], "signature": [ "CasesNavigation", - ", null>" + " | null, null>" ], "source": { "path": "x-pack/plugins/cases/public/components/all_cases/selector_modal/index.tsx", @@ -573,7 +605,7 @@ ], "source": { "path": "x-pack/plugins/cases/public/components/case_view/index.tsx", - "lineNumber": 63 + "lineNumber": 65 }, "deprecated": false, "children": [ @@ -597,7 +629,7 @@ ], "source": { "path": "x-pack/plugins/cases/public/components/case_view/index.tsx", - "lineNumber": 64 + "lineNumber": 66 }, "deprecated": false }, @@ -614,7 +646,7 @@ ], "source": { "path": "x-pack/plugins/cases/public/components/case_view/index.tsx", - "lineNumber": 65 + "lineNumber": 67 }, "deprecated": false } @@ -641,7 +673,7 @@ ], "source": { "path": "x-pack/plugins/cases/public/components/configure_cases/index.tsx", - "lineNumber": 55 + "lineNumber": 51 }, "deprecated": false, "children": [ @@ -654,7 +686,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/public/components/configure_cases/index.tsx", - "lineNumber": 56 + "lineNumber": 52 }, "deprecated": false } @@ -732,6 +764,22 @@ }, "deprecated": false }, + { + "parentPluginId": "cases", + "id": "def-public.CreateCaseProps.disableAlerts", + "type": "CompoundType", + "tags": [], + "label": "disableAlerts", + "description": [], + "signature": [ + "boolean | undefined" + ], + "source": { + "path": "x-pack/plugins/cases/public/components/create/index.tsx", + "lineNumber": 37 + }, + "deprecated": false + }, { "parentPluginId": "cases", "id": "def-public.CreateCaseProps.hideConnectorServiceNowSir", @@ -744,7 +792,7 @@ ], "source": { "path": "x-pack/plugins/cases/public/components/create/index.tsx", - "lineNumber": 37 + "lineNumber": 38 }, "deprecated": false }, @@ -760,7 +808,7 @@ ], "source": { "path": "x-pack/plugins/cases/public/components/create/index.tsx", - "lineNumber": 38 + "lineNumber": 39 }, "deprecated": false, "returnComment": [], @@ -786,7 +834,7 @@ ], "source": { "path": "x-pack/plugins/cases/public/components/create/index.tsx", - "lineNumber": 39 + "lineNumber": 40 }, "deprecated": false, "returnComment": [], @@ -809,7 +857,7 @@ ], "source": { "path": "x-pack/plugins/cases/public/components/create/index.tsx", - "lineNumber": 39 + "lineNumber": 40 }, "deprecated": false } @@ -828,7 +876,7 @@ ], "source": { "path": "x-pack/plugins/cases/public/components/create/index.tsx", - "lineNumber": 40 + "lineNumber": 41 }, "deprecated": false }, @@ -844,7 +892,7 @@ ], "source": { "path": "x-pack/plugins/cases/public/components/create/index.tsx", - "lineNumber": 41 + "lineNumber": 42 }, "deprecated": false } @@ -884,7 +932,7 @@ "description": [], "signature": [ "CasesNavigation", - ", null>" + " | null, null>" ], "source": { "path": "x-pack/plugins/cases/public/components/recent_cases/index.tsx", @@ -920,7 +968,7 @@ "description": [], "signature": [ "CasesNavigation", - ", null>" + " | null, null>" ], "source": { "path": "x-pack/plugins/cases/public/components/recent_cases/index.tsx", @@ -928,6 +976,19 @@ }, "deprecated": false }, + { + "parentPluginId": "cases", + "id": "def-public.RecentCasesProps.hasWritePermissions", + "type": "boolean", + "tags": [], + "label": "hasWritePermissions", + "description": [], + "source": { + "path": "x-pack/plugins/cases/public/components/recent_cases/index.tsx", + "lineNumber": 24 + }, + "deprecated": false + }, { "parentPluginId": "cases", "id": "def-public.RecentCasesProps.maxCasesToShow", @@ -937,7 +998,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/public/components/recent_cases/index.tsx", - "lineNumber": 24 + "lineNumber": 25 }, "deprecated": false } @@ -2305,7 +2366,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 145 + "lineNumber": 162 }, "deprecated": false, "children": [ @@ -2318,7 +2379,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 146 + "lineNumber": 163 }, "deprecated": false }, @@ -2331,7 +2392,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 147 + "lineNumber": 164 }, "deprecated": false }, @@ -2344,7 +2405,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 148 + "lineNumber": 165 }, "deprecated": false }, @@ -2357,7 +2418,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 149 + "lineNumber": 166 }, "deprecated": false }, @@ -2370,7 +2431,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 150 + "lineNumber": 167 }, "deprecated": false } @@ -2403,7 +2464,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 113 + "lineNumber": 130 }, "deprecated": false, "children": [ @@ -2426,7 +2487,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 114 + "lineNumber": 131 }, "deprecated": false }, @@ -2439,7 +2500,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 115 + "lineNumber": 132 }, "deprecated": false }, @@ -2452,7 +2513,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 116 + "lineNumber": 133 }, "deprecated": false }, @@ -2465,7 +2526,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 117 + "lineNumber": 134 }, "deprecated": false } @@ -2481,7 +2542,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 136 + "lineNumber": 153 }, "deprecated": false, "children": [ @@ -2497,7 +2558,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 137 + "lineNumber": 154 }, "deprecated": false } @@ -2513,7 +2574,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 140 + "lineNumber": 157 }, "deprecated": false, "children": [ @@ -2526,7 +2587,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 141 + "lineNumber": 158 }, "deprecated": false }, @@ -2539,7 +2600,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 142 + "lineNumber": 159 }, "deprecated": false }, @@ -2552,7 +2613,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 143 + "lineNumber": 160 }, "deprecated": false } @@ -2578,7 +2639,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 81 + "lineNumber": 98 }, "deprecated": false, "children": [ @@ -2606,6 +2667,14 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none; fields: null; }) | ({ id: string; name: string; } & { type: ", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; name: string; } & { type: ", { "pluginId": "cases", @@ -2630,11 +2699,11 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none; fields: null; })" + ".swimlane; fields: { caseId: string | null; } | null; })" ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 82 + "lineNumber": 99 }, "deprecated": false }, @@ -2647,7 +2716,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 83 + "lineNumber": 100 }, "deprecated": false }, @@ -2670,7 +2739,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 84 + "lineNumber": 101 }, "deprecated": false }, @@ -2693,7 +2762,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 85 + "lineNumber": 102 }, "deprecated": false }, @@ -2709,7 +2778,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 86 + "lineNumber": 103 }, "deprecated": false }, @@ -2725,7 +2794,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 87 + "lineNumber": 104 }, "deprecated": false }, @@ -2741,7 +2810,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 88 + "lineNumber": 105 }, "deprecated": false }, @@ -2763,7 +2832,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 89 + "lineNumber": 106 }, "deprecated": false } @@ -2779,7 +2848,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 49 + "lineNumber": 66 }, "deprecated": false, "children": [ @@ -2792,7 +2861,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 50 + "lineNumber": 67 }, "deprecated": false }, @@ -2814,7 +2883,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 51 + "lineNumber": 68 }, "deprecated": false }, @@ -2827,7 +2896,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 52 + "lineNumber": 69 }, "deprecated": false }, @@ -2840,7 +2909,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 53 + "lineNumber": 70 }, "deprecated": false }, @@ -2853,7 +2922,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 54 + "lineNumber": 71 }, "deprecated": false }, @@ -2866,7 +2935,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 55 + "lineNumber": 72 }, "deprecated": false }, @@ -2879,7 +2948,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 56 + "lineNumber": 73 }, "deprecated": false } @@ -2895,7 +2964,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 107 + "lineNumber": 124 }, "deprecated": false, "children": [ @@ -2911,7 +2980,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 108 + "lineNumber": 125 }, "deprecated": false }, @@ -2927,7 +2996,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 109 + "lineNumber": 126 }, "deprecated": false }, @@ -2943,7 +3012,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 110 + "lineNumber": 127 }, "deprecated": false } @@ -2959,7 +3028,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 37 + "lineNumber": 54 }, "deprecated": false, "children": [ @@ -2972,7 +3041,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 38 + "lineNumber": 55 }, "deprecated": false }, @@ -2988,7 +3057,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 39 + "lineNumber": 56 }, "deprecated": false }, @@ -3004,7 +3073,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 40 + "lineNumber": 57 }, "deprecated": false }, @@ -3017,7 +3086,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 41 + "lineNumber": 58 }, "deprecated": false }, @@ -3039,7 +3108,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 42 + "lineNumber": 59 }, "deprecated": false }, @@ -3052,7 +3121,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 43 + "lineNumber": 60 }, "deprecated": false }, @@ -3068,7 +3137,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 44 + "lineNumber": 61 }, "deprecated": false }, @@ -3084,7 +3153,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 45 + "lineNumber": 62 }, "deprecated": false }, @@ -3100,7 +3169,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 46 + "lineNumber": 63 }, "deprecated": false } @@ -3116,7 +3185,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 153 + "lineNumber": 170 }, "deprecated": false, "children": [ @@ -3129,7 +3198,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 154 + "lineNumber": 171 }, "deprecated": false }, @@ -3152,7 +3221,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 155 + "lineNumber": 172 }, "deprecated": false }, @@ -3163,12 +3232,9 @@ "tags": [], "label": "title", "description": [], - "signature": [ - "string | undefined" - ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 156 + "lineNumber": 173 }, "deprecated": false } @@ -3184,7 +3250,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 226 + "lineNumber": 243 }, "deprecated": false, "children": [ @@ -3197,7 +3263,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 227 + "lineNumber": 244 }, "deprecated": false }, @@ -3213,7 +3279,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 228 + "lineNumber": 245 }, "deprecated": false }, @@ -3236,7 +3302,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 229 + "lineNumber": 246 }, "deprecated": false } @@ -3252,7 +3318,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 125 + "lineNumber": 142 }, "deprecated": false, "children": [ @@ -3268,7 +3334,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 126 + "lineNumber": 143 }, "deprecated": false }, @@ -3284,7 +3350,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 127 + "lineNumber": 144 }, "deprecated": false }, @@ -3300,7 +3366,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 128 + "lineNumber": 145 }, "deprecated": false } @@ -3316,7 +3382,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/api/connectors/index.ts", - "lineNumber": 100 + "lineNumber": 112 }, "deprecated": false, "children": [ @@ -3329,7 +3395,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/api/connectors/index.ts", - "lineNumber": 101 + "lineNumber": 113 }, "deprecated": false }, @@ -3342,7 +3408,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/api/connectors/index.ts", - "lineNumber": 102 + "lineNumber": 114 }, "deprecated": false }, @@ -3364,7 +3430,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/connectors/index.ts", - "lineNumber": 103 + "lineNumber": 115 }, "deprecated": false }, @@ -3387,7 +3453,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/connectors/index.ts", - "lineNumber": 104 + "lineNumber": 116 }, "deprecated": false } @@ -3420,7 +3486,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 131 + "lineNumber": 148 }, "deprecated": false, "children": [ @@ -3443,7 +3509,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 132 + "lineNumber": 149 }, "deprecated": false }, @@ -3467,7 +3533,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 133 + "lineNumber": 150 }, "deprecated": false } @@ -3483,7 +3549,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 159 + "lineNumber": 176 }, "deprecated": false, "children": [ @@ -3496,7 +3562,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 160 + "lineNumber": 177 }, "deprecated": false }, @@ -3512,7 +3578,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 161 + "lineNumber": 178 }, "deprecated": false } @@ -3528,7 +3594,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 99 + "lineNumber": 116 }, "deprecated": false, "children": [ @@ -3541,7 +3607,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 100 + "lineNumber": 117 }, "deprecated": false }, @@ -3564,7 +3630,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 101 + "lineNumber": 118 }, "deprecated": false }, @@ -3580,7 +3646,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 102 + "lineNumber": 119 }, "deprecated": false }, @@ -3596,7 +3662,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 103 + "lineNumber": 120 }, "deprecated": false }, @@ -3612,7 +3678,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 104 + "lineNumber": 121 }, "deprecated": false } @@ -3628,7 +3694,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 92 + "lineNumber": 109 }, "deprecated": false, "children": [ @@ -3641,7 +3707,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 93 + "lineNumber": 110 }, "deprecated": false }, @@ -3654,7 +3720,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 94 + "lineNumber": 111 }, "deprecated": false }, @@ -3676,7 +3742,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 95 + "lineNumber": 112 }, "deprecated": false }, @@ -3692,7 +3758,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 96 + "lineNumber": 113 }, "deprecated": false } @@ -3708,7 +3774,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 179 + "lineNumber": 196 }, "deprecated": false, "children": [ @@ -3724,7 +3790,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 180 + "lineNumber": 197 }, "deprecated": false }, @@ -3740,7 +3806,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 181 + "lineNumber": 198 }, "deprecated": false }, @@ -3756,7 +3822,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 182 + "lineNumber": 199 }, "deprecated": false }, @@ -3772,7 +3838,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 183 + "lineNumber": 200 }, "deprecated": false }, @@ -3788,7 +3854,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 184 + "lineNumber": 201 }, "deprecated": false }, @@ -3804,7 +3870,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 185 + "lineNumber": 202 }, "deprecated": false }, @@ -3820,7 +3886,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 186 + "lineNumber": 203 }, "deprecated": false }, @@ -3836,7 +3902,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 187 + "lineNumber": 204 }, "deprecated": false }, @@ -3852,7 +3918,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 188 + "lineNumber": 205 }, "deprecated": false }, @@ -3868,7 +3934,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 189 + "lineNumber": 206 }, "deprecated": false }, @@ -3884,7 +3950,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 190 + "lineNumber": 207 }, "deprecated": false }, @@ -3900,7 +3966,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 191 + "lineNumber": 208 }, "deprecated": false }, @@ -3916,7 +3982,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 192 + "lineNumber": 209 }, "deprecated": false }, @@ -3932,7 +3998,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 193 + "lineNumber": 210 }, "deprecated": false }, @@ -3948,7 +4014,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 194 + "lineNumber": 211 }, "deprecated": false }, @@ -3964,7 +4030,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 195 + "lineNumber": 212 }, "deprecated": false }, @@ -3980,7 +4046,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 196 + "lineNumber": 213 }, "deprecated": false }, @@ -3996,7 +4062,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 197 + "lineNumber": 214 }, "deprecated": false }, @@ -4012,7 +4078,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 198 + "lineNumber": 215 }, "deprecated": false }, @@ -4028,7 +4094,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 199 + "lineNumber": 216 }, "deprecated": false }, @@ -4044,7 +4110,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 200 + "lineNumber": 217 }, "deprecated": false }, @@ -4060,7 +4126,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 201 + "lineNumber": 218 }, "deprecated": false }, @@ -4076,7 +4142,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 202 + "lineNumber": 219 }, "deprecated": false }, @@ -4092,7 +4158,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 203 + "lineNumber": 220 }, "deprecated": false }, @@ -4108,7 +4174,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 204 + "lineNumber": 221 }, "deprecated": false }, @@ -4124,7 +4190,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 205 + "lineNumber": 222 }, "deprecated": false }, @@ -4140,7 +4206,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 206 + "lineNumber": 223 }, "deprecated": false }, @@ -4156,7 +4222,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 207 + "lineNumber": 224 }, "deprecated": false }, @@ -4172,7 +4238,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 208 + "lineNumber": 225 }, "deprecated": false }, @@ -4188,7 +4254,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 209 + "lineNumber": 226 }, "deprecated": false }, @@ -4204,7 +4270,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 210 + "lineNumber": 227 }, "deprecated": false }, @@ -4220,7 +4286,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 211 + "lineNumber": 228 }, "deprecated": false }, @@ -4236,7 +4302,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 212 + "lineNumber": 229 }, "deprecated": false }, @@ -4252,7 +4318,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 213 + "lineNumber": 230 }, "deprecated": false } @@ -4268,7 +4334,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 216 + "lineNumber": 233 }, "deprecated": false, "children": [ @@ -4291,7 +4357,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 217 + "lineNumber": 234 }, "deprecated": false }, @@ -4307,7 +4373,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 218 + "lineNumber": 235 }, "deprecated": false }, @@ -4323,7 +4389,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 219 + "lineNumber": 236 }, "deprecated": false }, @@ -4339,7 +4405,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 220 + "lineNumber": 237 }, "deprecated": false }, @@ -4355,7 +4421,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 223 + "lineNumber": 240 }, "deprecated": false } @@ -4381,7 +4447,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 76 + "lineNumber": 93 }, "deprecated": false, "children": [ @@ -4403,7 +4469,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 77 + "lineNumber": 94 }, "deprecated": false }, @@ -4416,7 +4482,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 78 + "lineNumber": 95 }, "deprecated": false } @@ -4432,7 +4498,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 169 + "lineNumber": 186 }, "deprecated": false, "children": [ @@ -4448,7 +4514,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 170 + "lineNumber": 187 }, "deprecated": false }, @@ -4476,6 +4542,14 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none; fields: null; }) | ({ id: string; name: string; } & { type: ", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; name: string; } & { type: ", { "pluginId": "cases", @@ -4500,11 +4574,11 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none; fields: null; }) | { syncAlerts: boolean; } | undefined" + ".swimlane; fields: { caseId: string | null; } | null; }) | { syncAlerts: boolean; } | undefined" ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 171 + "lineNumber": 188 }, "deprecated": false }, @@ -4520,7 +4594,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 172 + "lineNumber": 189 }, "deprecated": false }, @@ -4544,7 +4618,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 173 + "lineNumber": 190 }, "deprecated": false }, @@ -4566,7 +4640,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 174 + "lineNumber": 191 }, "deprecated": false }, @@ -4582,7 +4656,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 175 + "lineNumber": 192 }, "deprecated": false }, @@ -4598,7 +4672,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 176 + "lineNumber": 193 }, "deprecated": false } @@ -4618,7 +4692,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/comment.ts", - "lineNumber": 34 + "lineNumber": 19 }, "deprecated": false, "initialIsOpen": false @@ -4646,7 +4720,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/api/cases/case.ts", - "lineNumber": 17 + "lineNumber": 39 }, "deprecated": false, "initialIsOpen": false @@ -4660,7 +4734,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/api/cases/comment.ts", - "lineNumber": 53 + "lineNumber": 38 }, "deprecated": false, "initialIsOpen": false @@ -4674,7 +4748,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/api/connectors/index.ts", - "lineNumber": 33 + "lineNumber": 35 }, "deprecated": false, "initialIsOpen": false @@ -4688,26 +4762,40 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 120 + "lineNumber": 137 }, "deprecated": false, "initialIsOpen": false - } - ], - "misc": [ + }, { "parentPluginId": "cases", - "id": "def-common.ACTION_TYPES_URL", - "type": "string", + "id": "def-common.SwimlaneConnectorType", + "type": "Enum", "tags": [], - "label": "ACTION_TYPES_URL", + "label": "SwimlaneConnectorType", "description": [], - "signature": [ - "\"/api/actions/list_action_types\"" + "source": { + "path": "x-pack/plugins/cases/common/api/connectors/swimlane.ts", + "lineNumber": 15 + }, + "deprecated": false, + "initialIsOpen": false + } + ], + "misc": [ + { + "parentPluginId": "cases", + "id": "def-common.ACTION_TYPES_URL", + "type": "string", + "tags": [], + "label": "ACTION_TYPES_URL", + "description": [], + "signature": [ + "\"/api/actions/list_action_types\"" ], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 60 + "lineNumber": 63 }, "deprecated": false, "initialIsOpen": false @@ -4726,7 +4814,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 59 + "lineNumber": 62 }, "deprecated": false, "initialIsOpen": false @@ -4749,7 +4837,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/connectors/index.ts", - "lineNumber": 22 + "lineNumber": 24 }, "deprecated": false, "initialIsOpen": false @@ -4789,7 +4877,24 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/connectors/index.ts", - "lineNumber": 23 + "lineNumber": 25 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "cases", + "id": "def-common.AlertResponse", + "type": "Type", + "tags": [], + "label": "AlertResponse", + "description": [], + "signature": [ + "{ id: string; index: string; attached_at: string; }[]" + ], + "source": { + "path": "x-pack/plugins/cases/common/api/cases/alerts.ts", + "lineNumber": 18 }, "deprecated": false, "initialIsOpen": false @@ -4846,7 +4951,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/comment.ts", - "lineNumber": 149 + "lineNumber": 134 }, "deprecated": false, "initialIsOpen": false @@ -4863,7 +4968,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/case.ts", - "lineNumber": 313 + "lineNumber": 335 }, "deprecated": false, "initialIsOpen": false @@ -4880,7 +4985,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/case.ts", - "lineNumber": 312 + "lineNumber": 334 }, "deprecated": false, "initialIsOpen": false @@ -4897,7 +5002,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 10 + "lineNumber": 12 }, "deprecated": false, "initialIsOpen": false @@ -4938,7 +5043,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/comment.ts", - "lineNumber": 143 + "lineNumber": 128 }, "deprecated": false, "initialIsOpen": false @@ -4971,7 +5076,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/comment.ts", - "lineNumber": 144 + "lineNumber": 129 }, "deprecated": false, "initialIsOpen": false @@ -4985,7 +5090,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 53 + "lineNumber": 55 }, "deprecated": false, "initialIsOpen": false @@ -4999,7 +5104,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 46 + "lineNumber": 48 }, "deprecated": false, "initialIsOpen": false @@ -5016,7 +5121,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 16 + "lineNumber": 18 }, "deprecated": false, "initialIsOpen": false @@ -5030,7 +5135,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 45 + "lineNumber": 47 }, "deprecated": false, "initialIsOpen": false @@ -5044,7 +5149,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 38 + "lineNumber": 40 }, "deprecated": false, "initialIsOpen": false @@ -5058,7 +5163,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 37 + "lineNumber": 39 }, "deprecated": false, "initialIsOpen": false @@ -5075,7 +5180,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 17 + "lineNumber": 19 }, "deprecated": false, "initialIsOpen": false @@ -5089,7 +5194,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 36 + "lineNumber": 38 }, "deprecated": false, "initialIsOpen": false @@ -5106,7 +5211,21 @@ ], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 13 + "lineNumber": 15 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "cases", + "id": "def-common.CASE_DETAILS_ALERTS_URL", + "type": "string", + "tags": [], + "label": "CASE_DETAILS_ALERTS_URL", + "description": [], + "source": { + "path": "x-pack/plugins/cases/common/constants.ts", + "lineNumber": 56 }, "deprecated": false, "initialIsOpen": false @@ -5120,7 +5239,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 35 + "lineNumber": 37 }, "deprecated": false, "initialIsOpen": false @@ -5134,7 +5253,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 47 + "lineNumber": 49 }, "deprecated": false, "initialIsOpen": false @@ -5148,7 +5267,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 48 + "lineNumber": 50 }, "deprecated": false, "initialIsOpen": false @@ -5165,7 +5284,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 12 + "lineNumber": 14 }, "deprecated": false, "initialIsOpen": false @@ -5179,7 +5298,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 49 + "lineNumber": 51 }, "deprecated": false, "initialIsOpen": false @@ -5193,7 +5312,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 50 + "lineNumber": 52 }, "deprecated": false, "initialIsOpen": false @@ -5210,7 +5329,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 15 + "lineNumber": 17 }, "deprecated": false, "initialIsOpen": false @@ -5224,7 +5343,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 51 + "lineNumber": 53 }, "deprecated": false, "initialIsOpen": false @@ -5269,6 +5388,14 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none; fields: null; }) | ({ id: string; name: string; } & { type: ", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; name: string; } & { type: ", { "pluginId": "cases", @@ -5293,11 +5420,11 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none; fields: null; }); settings: { syncAlerts: boolean; }; owner: string; } & { closed_at: string | null; closed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; external_service: ({ connector_id: string; connector_name: string; external_id: string; external_title: string; external_url: string; } & { pushed_at: string; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; }) | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; }" + ".swimlane; fields: { caseId: string | null; } | null; }); settings: { syncAlerts: boolean; }; owner: string; } & { closed_at: string | null; closed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; external_service: ({ connector_id: string; connector_name: string; external_id: string; external_title: string; external_url: string; } & { pushed_at: string; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; }) | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; }" ], "source": { "path": "x-pack/plugins/cases/common/api/cases/case.ts", - "lineNumber": 288 + "lineNumber": 310 }, "deprecated": false, "initialIsOpen": false @@ -5326,6 +5453,14 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none; fields: null; }) | ({ id: string; name: string; } & { type: ", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; name: string; } & { type: ", { "pluginId": "cases", @@ -5350,11 +5485,11 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none; fields: null; })" + ".swimlane; fields: { caseId: string | null; } | null; })" ], "source": { "path": "x-pack/plugins/cases/common/api/connectors/index.ts", - "lineNumber": 82 + "lineNumber": 93 }, "deprecated": false, "initialIsOpen": false @@ -5388,7 +5523,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/case.ts", - "lineNumber": 303 + "lineNumber": 325 }, "deprecated": false, "initialIsOpen": false @@ -5433,6 +5568,14 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none; fields: null; }) | ({ id: string; name: string; } & { type: ", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; name: string; } & { type: ", { "pluginId": "cases", @@ -5457,11 +5600,11 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none; fields: null; }) | undefined; settings?: { syncAlerts: boolean; } | undefined; owner?: string | undefined; } & { id: string; version: string; }" + ".swimlane; fields: { caseId: string | null; } | null; }) | undefined; settings?: { syncAlerts: boolean; } | undefined; owner?: string | undefined; } & { id: string; version: string; }" ], "source": { "path": "x-pack/plugins/cases/common/api/cases/case.ts", - "lineNumber": 301 + "lineNumber": 323 }, "deprecated": false, "initialIsOpen": false @@ -5498,6 +5641,14 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none; fields: null; }) | ({ id: string; name: string; } & { type: ", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; name: string; } & { type: ", { "pluginId": "cases", @@ -5522,11 +5673,11 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none; fields: null; }); settings: { syncAlerts: boolean; }; owner: string; }" + ".swimlane; fields: { caseId: string | null; } | null; }); settings: { syncAlerts: boolean; }; owner: string; }" ], "source": { "path": "x-pack/plugins/cases/common/api/cases/case.ts", - "lineNumber": 295 + "lineNumber": 317 }, "deprecated": false, "initialIsOpen": false @@ -5571,6 +5722,14 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none; fields: null; }) | ({ id: string; name: string; } & { type: ", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; name: string; } & { type: ", { "pluginId": "cases", @@ -5595,7 +5754,7 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none; fields: null; }); settings: { syncAlerts: boolean; }; owner: string; } & { closed_at: string | null; closed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; external_service: ({ connector_id: string; connector_name: string; external_id: string; external_title: string; external_url: string; } & { pushed_at: string; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; }) | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; totalComment: number; totalAlerts: number; version: string; } & { subCaseIds?: string[] | undefined; subCases?: ({ status: ", + ".swimlane; fields: { caseId: string | null; } | null; }); settings: { syncAlerts: boolean; }; owner: string; } & { closed_at: string | null; closed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; external_service: ({ connector_id: string; connector_name: string; external_id: string; external_title: string; external_url: string; } & { pushed_at: string; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; }) | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; totalComment: number; totalAlerts: number; version: string; } & { subCaseIds?: string[] | undefined; subCases?: ({ status: ", { "pluginId": "cases", "scope": "common", @@ -5687,7 +5846,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/case.ts", - "lineNumber": 296 + "lineNumber": 318 }, "deprecated": false, "initialIsOpen": false @@ -5706,7 +5865,24 @@ ], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 34 + "lineNumber": 36 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "cases", + "id": "def-common.CasesByAlertId", + "type": "Type", + "tags": [], + "label": "CasesByAlertId", + "description": [], + "signature": [ + "{ id: string; title: string; }[]" + ], + "source": { + "path": "x-pack/plugins/cases/common/api/cases/case.ts", + "lineNumber": 338 }, "deprecated": false, "initialIsOpen": false @@ -5723,7 +5899,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/case.ts", - "lineNumber": 299 + "lineNumber": 321 }, "deprecated": false, "initialIsOpen": false @@ -5762,6 +5938,14 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none; fields: null; }) | ({ id: string; name: string; } & { type: ", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; name: string; } & { type: ", { "pluginId": "cases", @@ -5786,11 +5970,11 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none; fields: null; }); settings: { syncAlerts: boolean; }; owner: string; }" + ".swimlane; fields: { caseId: string | null; } | null; }); settings: { syncAlerts: boolean; }; owner: string; }" ], "source": { "path": "x-pack/plugins/cases/common/api/cases/case.ts", - "lineNumber": 294 + "lineNumber": 316 }, "deprecated": false, "initialIsOpen": false @@ -5819,6 +6003,14 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none; fields: null; }) | ({ id: string; name: string; } & { type: ", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; name: string; } & { type: ", { "pluginId": "cases", @@ -5843,7 +6035,7 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none; fields: null; }); closure_type: \"close-by-user\" | \"close-by-pushing\"; } & { owner: string; } & { created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { mappings: { action_type: \"append\" | \"overwrite\" | \"nothing\"; source: \"description\" | \"title\" | \"comments\"; target: string; }[]; owner: string; } & { id: string; version: string; error: string | null; owner: string; })[]" + ".swimlane; fields: { caseId: string | null; } | null; }); closure_type: \"close-by-user\" | \"close-by-pushing\"; } & { owner: string; } & { created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { mappings: { action_type: \"append\" | \"overwrite\" | \"nothing\"; source: \"description\" | \"title\" | \"comments\"; target: string; }[]; owner: string; } & { id: string; version: string; error: string | null; owner: string; })[]" ], "source": { "path": "x-pack/plugins/cases/common/api/cases/configure.ts", @@ -5876,6 +6068,14 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none; fields: null; }) | ({ id: string; name: string; } & { type: ", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; name: string; } & { type: ", { "pluginId": "cases", @@ -5900,7 +6100,7 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none; fields: null; }); closure_type: \"close-by-user\" | \"close-by-pushing\"; } & { owner: string; }" + ".swimlane; fields: { caseId: string | null; } | null; }); closure_type: \"close-by-user\" | \"close-by-pushing\"; } & { owner: string; }" ], "source": { "path": "x-pack/plugins/cases/common/api/cases/configure.ts", @@ -5933,6 +6133,14 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none; fields: null; }) | ({ id: string; name: string; } & { type: ", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; name: string; } & { type: ", { "pluginId": "cases", @@ -5957,7 +6165,7 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none; fields: null; }); closure_type: \"close-by-user\" | \"close-by-pushing\"; } & { owner: string; } & { created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; }" + ".swimlane; fields: { caseId: string | null; } | null; }); closure_type: \"close-by-user\" | \"close-by-pushing\"; } & { owner: string; } & { created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; }" ], "source": { "path": "x-pack/plugins/cases/common/api/cases/configure.ts", @@ -5990,6 +6198,14 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none; fields: null; }) | ({ id: string; name: string; } & { type: ", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; name: string; } & { type: ", { "pluginId": "cases", @@ -6014,7 +6230,7 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none; fields: null; }) | undefined; closure_type?: \"close-by-user\" | \"close-by-pushing\" | undefined; } & { version: string; }" + ".swimlane; fields: { caseId: string | null; } | null; }) | undefined; closure_type?: \"close-by-user\" | \"close-by-pushing\" | undefined; } & { version: string; }" ], "source": { "path": "x-pack/plugins/cases/common/api/cases/configure.ts", @@ -6047,6 +6263,14 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none; fields: null; }) | ({ id: string; name: string; } & { type: ", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; name: string; } & { type: ", { "pluginId": "cases", @@ -6071,7 +6295,7 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none; fields: null; }); closure_type: \"close-by-user\" | \"close-by-pushing\"; } & { owner: string; }" + ".swimlane; fields: { caseId: string | null; } | null; }); closure_type: \"close-by-user\" | \"close-by-pushing\"; } & { owner: string; }" ], "source": { "path": "x-pack/plugins/cases/common/api/cases/configure.ts", @@ -6104,6 +6328,14 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none; fields: null; }) | ({ id: string; name: string; } & { type: ", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; name: string; } & { type: ", { "pluginId": "cases", @@ -6128,7 +6360,7 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none; fields: null; }); closure_type: \"close-by-user\" | \"close-by-pushing\"; } & { owner: string; } & { created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { mappings: { action_type: \"append\" | \"overwrite\" | \"nothing\"; source: \"description\" | \"title\" | \"comments\"; target: string; }[]; owner: string; } & { id: string; version: string; error: string | null; owner: string; }" + ".swimlane; fields: { caseId: string | null; } | null; }); closure_type: \"close-by-user\" | \"close-by-pushing\"; } & { owner: string; } & { created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { mappings: { action_type: \"append\" | \"overwrite\" | \"nothing\"; source: \"description\" | \"title\" | \"comments\"; target: string; }[]; owner: string; } & { id: string; version: string; error: string | null; owner: string; }" ], "source": { "path": "x-pack/plugins/cases/common/api/cases/configure.ts", @@ -6149,7 +6381,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/case.ts", - "lineNumber": 304 + "lineNumber": 326 }, "deprecated": false, "initialIsOpen": false @@ -6182,7 +6414,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/case.ts", - "lineNumber": 298 + "lineNumber": 320 }, "deprecated": false, "initialIsOpen": false @@ -6227,6 +6459,14 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none; fields: null; }) | ({ id: string; name: string; } & { type: ", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; name: string; } & { type: ", { "pluginId": "cases", @@ -6251,7 +6491,7 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none; fields: null; }); settings: { syncAlerts: boolean; }; owner: string; } & { closed_at: string | null; closed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; external_service: ({ connector_id: string; connector_name: string; external_id: string; external_title: string; external_url: string; } & { pushed_at: string; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; }) | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; totalComment: number; totalAlerts: number; version: string; } & { subCaseIds?: string[] | undefined; subCases?: ({ status: ", + ".swimlane; fields: { caseId: string | null; } | null; }); settings: { syncAlerts: boolean; }; owner: string; } & { closed_at: string | null; closed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; external_service: ({ connector_id: string; connector_name: string; external_id: string; external_title: string; external_url: string; } & { pushed_at: string; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; }) | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; totalComment: number; totalAlerts: number; version: string; } & { subCaseIds?: string[] | undefined; subCases?: ({ status: ", { "pluginId": "cases", "scope": "common", @@ -6343,7 +6583,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/case.ts", - "lineNumber": 300 + "lineNumber": 322 }, "deprecated": false, "initialIsOpen": false @@ -6388,6 +6628,14 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none; fields: null; }) | ({ id: string; name: string; } & { type: ", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; name: string; } & { type: ", { "pluginId": "cases", @@ -6412,11 +6660,11 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none; fields: null; }) | undefined; settings?: { syncAlerts: boolean; } | undefined; owner?: string | undefined; } & { id: string; version: string; })[]; }" + ".swimlane; fields: { caseId: string | null; } | null; }) | undefined; settings?: { syncAlerts: boolean; } | undefined; owner?: string | undefined; } & { id: string; version: string; })[]; }" ], "source": { "path": "x-pack/plugins/cases/common/api/cases/case.ts", - "lineNumber": 302 + "lineNumber": 324 }, "deprecated": false, "initialIsOpen": false @@ -6461,6 +6709,14 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none; fields: null; }) | ({ id: string; name: string; } & { type: ", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; name: string; } & { type: ", { "pluginId": "cases", @@ -6485,7 +6741,7 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none; fields: null; }); settings: { syncAlerts: boolean; }; owner: string; } & { closed_at: string | null; closed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; external_service: ({ connector_id: string; connector_name: string; external_id: string; external_title: string; external_url: string; } & { pushed_at: string; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; }) | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; totalComment: number; totalAlerts: number; version: string; } & { subCaseIds?: string[] | undefined; subCases?: ({ status: ", + ".swimlane; fields: { caseId: string | null; } | null; }); settings: { syncAlerts: boolean; }; owner: string; } & { closed_at: string | null; closed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; external_service: ({ connector_id: string; connector_name: string; external_id: string; external_title: string; external_url: string; } & { pushed_at: string; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; }) | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; totalComment: number; totalAlerts: number; version: string; } & { subCaseIds?: string[] | undefined; subCases?: ({ status: ", { "pluginId": "cases", "scope": "common", @@ -6577,7 +6833,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/case.ts", - "lineNumber": 297 + "lineNumber": 319 }, "deprecated": false, "initialIsOpen": false @@ -6678,7 +6934,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/case.ts", - "lineNumber": 25 + "lineNumber": 47 }, "deprecated": false, "initialIsOpen": false @@ -6734,6 +6990,25 @@ "deprecated": false, "initialIsOpen": false }, + { + "parentPluginId": "cases", + "id": "def-common.CaseViewRefreshPropInterface", + "type": "Type", + "tags": [], + "label": "CaseViewRefreshPropInterface", + "description": [ + "\nThe type for the `refreshRef` prop (a `React.Ref`) defined by the `CaseViewComponentProps`.\n" + ], + "signature": [ + "{ refreshUserActionsAndComments: () => Promise; refreshCase: () => Promise; } | null" + ], + "source": { + "path": "x-pack/plugins/cases/common/ui/types.ts", + "lineNumber": 33 + }, + "deprecated": false, + "initialIsOpen": false + }, { "parentPluginId": "cases", "id": "def-common.ClosureType", @@ -6835,7 +7110,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 26 + "lineNumber": 43 }, "deprecated": false, "initialIsOpen": false @@ -6892,7 +7167,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/comment.ts", - "lineNumber": 145 + "lineNumber": 130 }, "deprecated": false, "initialIsOpen": false @@ -6941,7 +7216,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/comment.ts", - "lineNumber": 152 + "lineNumber": 137 }, "deprecated": false, "initialIsOpen": false @@ -6982,7 +7257,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/comment.ts", - "lineNumber": 151 + "lineNumber": 136 }, "deprecated": false, "initialIsOpen": false @@ -7023,7 +7298,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/comment.ts", - "lineNumber": 146 + "lineNumber": 131 }, "deprecated": false, "initialIsOpen": false @@ -7056,7 +7331,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/comment.ts", - "lineNumber": 154 + "lineNumber": 139 }, "deprecated": false, "initialIsOpen": false @@ -7081,7 +7356,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/comment.ts", - "lineNumber": 153 + "lineNumber": 138 }, "deprecated": false, "initialIsOpen": false @@ -7138,7 +7413,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/comment.ts", - "lineNumber": 147 + "lineNumber": 132 }, "deprecated": false, "initialIsOpen": false @@ -7179,7 +7454,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/comment.ts", - "lineNumber": 148 + "lineNumber": 133 }, "deprecated": false, "initialIsOpen": false @@ -7236,7 +7511,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/comment.ts", - "lineNumber": 150 + "lineNumber": 135 }, "deprecated": false, "initialIsOpen": false @@ -7270,7 +7545,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/connectors/index.ts", - "lineNumber": 92 + "lineNumber": 104 }, "deprecated": false, "initialIsOpen": false @@ -7295,7 +7570,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/connectors/index.ts", - "lineNumber": 84 + "lineNumber": 95 }, "deprecated": false, "initialIsOpen": false @@ -7354,7 +7629,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/connectors/index.ts", - "lineNumber": 85 + "lineNumber": 96 }, "deprecated": false, "initialIsOpen": false @@ -7379,7 +7654,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/connectors/index.ts", - "lineNumber": 86 + "lineNumber": 98 }, "deprecated": false, "initialIsOpen": false @@ -7404,7 +7679,32 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/connectors/index.ts", - "lineNumber": 89 + "lineNumber": 101 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "cases", + "id": "def-common.ConnectorSwimlaneTypeFields", + "type": "Type", + "tags": [], + "label": "ConnectorSwimlaneTypeFields", + "description": [], + "signature": [ + "{ type: ", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, + ".swimlane; fields: { caseId: string | null; } | null; }" + ], + "source": { + "path": "x-pack/plugins/cases/common/api/connectors/index.ts", + "lineNumber": 97 }, "deprecated": false, "initialIsOpen": false @@ -7433,6 +7733,14 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none; fields: null; } | { type: ", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; } | { type: ", { "pluginId": "cases", @@ -7457,11 +7765,35 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none; fields: null; }" + ".swimlane; fields: { caseId: string | null; } | null; }" ], "source": { "path": "x-pack/plugins/cases/common/api/connectors/index.ts", - "lineNumber": 83 + "lineNumber": 94 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "cases", + "id": "def-common.connectorTypes", + "type": "Array", + "tags": [], + "label": "connectorTypes", + "description": [], + "signature": [ + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/cases/common/api/connectors/index.ts", + "lineNumber": 44 }, "deprecated": false, "initialIsOpen": false @@ -7478,7 +7810,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 7 + "lineNumber": 9 }, "deprecated": false, "initialIsOpen": false @@ -7495,7 +7827,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 8 + "lineNumber": 10 }, "deprecated": false, "initialIsOpen": false @@ -7514,7 +7846,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 90 + "lineNumber": 89 }, "deprecated": false, "initialIsOpen": false @@ -7559,6 +7891,14 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none; fields: null; }) | ({ id: string; name: string; } & { type: ", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; name: string; } & { type: ", { "pluginId": "cases", @@ -7583,7 +7923,7 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none; fields: null; }); settings: { syncAlerts: boolean; }; owner: string; } & { closed_at: string | null; closed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; external_service: ({ connector_id: string; connector_name: string; external_id: string; external_title: string; external_url: string; } & { pushed_at: string; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; }) | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; }, \"type\" | \"status\" | \"description\" | \"title\" | \"updated_at\" | \"tags\" | \"settings\" | \"owner\" | \"created_at\" | \"created_by\" | \"updated_by\" | \"closed_at\" | \"closed_by\" | \"external_service\"> & { connector: ", + ".swimlane; fields: { caseId: string | null; } | null; }); settings: { syncAlerts: boolean; }; owner: string; } & { closed_at: string | null; closed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; external_service: ({ connector_id: string; connector_name: string; external_id: string; external_title: string; external_url: string; } & { pushed_at: string; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; }) | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; }, \"type\" | \"status\" | \"description\" | \"title\" | \"updated_at\" | \"tags\" | \"settings\" | \"owner\" | \"created_at\" | \"created_by\" | \"updated_by\" | \"closed_at\" | \"closed_by\" | \"external_service\"> & { connector: ", { "pluginId": "cases", "scope": "common", @@ -7595,7 +7935,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/case.ts", - "lineNumber": 307 + "lineNumber": 329 }, "deprecated": false, "initialIsOpen": false @@ -7618,7 +7958,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/connectors/index.ts", - "lineNumber": 99 + "lineNumber": 111 }, "deprecated": false, "initialIsOpen": false @@ -7663,6 +8003,14 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none; fields: null; }) | ({ id: string; name: string; } & { type: ", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; name: string; } & { type: ", { "pluginId": "cases", @@ -7687,7 +8035,7 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none; fields: null; }) | undefined; settings?: { syncAlerts: boolean; } | undefined; owner?: string | undefined; } & { id: string; version: string; }, \"type\" | \"status\" | \"description\" | \"title\" | \"id\" | \"version\" | \"tags\" | \"settings\" | \"owner\"> & { connector?: ", + ".swimlane; fields: { caseId: string | null; } | null; }) | undefined; settings?: { syncAlerts: boolean; } | undefined; owner?: string | undefined; } & { id: string; version: string; }, \"type\" | \"status\" | \"description\" | \"title\" | \"id\" | \"version\" | \"tags\" | \"settings\" | \"owner\"> & { connector?: ", { "pluginId": "cases", "scope": "common", @@ -7699,7 +8047,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/case.ts", - "lineNumber": 308 + "lineNumber": 330 }, "deprecated": false, "initialIsOpen": false @@ -7728,6 +8076,14 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none; fields: null; }) | ({ id: string; name: string; } & { type: ", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; name: string; } & { type: ", { "pluginId": "cases", @@ -7752,7 +8108,7 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none; fields: null; }); closure_type: \"close-by-user\" | \"close-by-pushing\"; } & { owner: string; } & { created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; }, \"updated_at\" | \"owner\" | \"created_at\" | \"created_by\" | \"updated_by\" | \"closure_type\"> & { connector: ", + ".swimlane; fields: { caseId: string | null; } | null; }); closure_type: \"close-by-user\" | \"close-by-pushing\"; } & { owner: string; } & { created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; }, \"updated_at\" | \"owner\" | \"created_at\" | \"created_by\" | \"updated_by\" | \"closure_type\"> & { connector: ", { "pluginId": "cases", "scope": "common", @@ -7781,7 +8137,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/connectors/index.ts", - "lineNumber": 94 + "lineNumber": 106 }, "deprecated": false, "initialIsOpen": false @@ -7798,7 +8154,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/case.ts", - "lineNumber": 305 + "lineNumber": 327 }, "deprecated": false, "initialIsOpen": false @@ -7815,7 +8171,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/comment.ts", - "lineNumber": 142 + "lineNumber": 127 }, "deprecated": false, "initialIsOpen": false @@ -7831,8 +8187,8 @@ "{ references: { doc_count: number; caseIds: { buckets: { key: string; }[]; }; }; }" ], "source": { - "path": "x-pack/plugins/cases/common/api/cases/comment.ts", - "lineNumber": 155 + "path": "x-pack/plugins/cases/common/api/cases/case.ts", + "lineNumber": 337 }, "deprecated": false, "initialIsOpen": false @@ -7856,34 +8212,17 @@ }, { "parentPluginId": "cases", - "id": "def-common.GetFieldsResponse", + "id": "def-common.GetDefaultMappingsResponse", "type": "Type", "tags": [], - "label": "GetFieldsResponse", + "label": "GetDefaultMappingsResponse", "description": [], "signature": [ - "{ defaultMappings: { action_type: \"append\" | \"overwrite\" | \"nothing\"; source: \"description\" | \"title\" | \"comments\"; target: string; }[]; fields: { id: string; name: string; required: boolean; type: \"text\" | \"textarea\"; }[]; }" + "{ action_type: \"append\" | \"overwrite\" | \"nothing\"; source: \"description\" | \"title\" | \"comments\"; target: string; }[]" ], "source": { "path": "x-pack/plugins/cases/common/api/connectors/mappings.ts", - "lineNumber": 56 - }, - "deprecated": false, - "initialIsOpen": false - }, - { - "parentPluginId": "cases", - "id": "def-common.JIRA_ACTION_TYPE_ID", - "type": "string", - "tags": [], - "label": "JIRA_ACTION_TYPE_ID", - "description": [], - "signature": [ - "\".jira\"" - ], - "source": { - "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 63 + "lineNumber": 53 }, "deprecated": false, "initialIsOpen": false @@ -7919,7 +8258,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 76 + "lineNumber": 75 }, "deprecated": false, "initialIsOpen": false @@ -7936,7 +8275,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 97 + "lineNumber": 96 }, "deprecated": false, "initialIsOpen": false @@ -7953,7 +8292,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 96 + "lineNumber": 95 }, "deprecated": false, "initialIsOpen": false @@ -7970,7 +8309,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 77 + "lineNumber": 76 }, "deprecated": false, "initialIsOpen": false @@ -7994,23 +8333,6 @@ "deprecated": false, "initialIsOpen": false }, - { - "parentPluginId": "cases", - "id": "def-common.RESILIENT_ACTION_TYPE_ID", - "type": "string", - "tags": [], - "label": "RESILIENT_ACTION_TYPE_ID", - "description": [], - "signature": [ - "\".resilient\"" - ], - "source": { - "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 64 - }, - "deprecated": false, - "initialIsOpen": false - }, { "parentPluginId": "cases", "id": "def-common.ResilientFieldsType", @@ -8042,7 +8364,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 22 + "lineNumber": 24 }, "deprecated": false, "initialIsOpen": false @@ -8059,60 +8381,26 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/saved_object.ts", - "lineNumber": 72 - }, - "deprecated": false, - "initialIsOpen": false - }, - { - "parentPluginId": "cases", - "id": "def-common.SECURITY_SOLUTION_OWNER", - "type": "string", - "tags": [], - "label": "SECURITY_SOLUTION_OWNER", - "description": [ - "\nThis must be the same value that the security solution plugin uses to define the case kind when it registers the\nfeature for the 7.13 migration only.\n\nThis variable is being also used by test files and mocks." - ], - "signature": [ - "\"securitySolution\"" - ], - "source": { - "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 85 - }, - "deprecated": false, - "initialIsOpen": false - }, - { - "parentPluginId": "cases", - "id": "def-common.SERVICENOW_ITSM_ACTION_TYPE_ID", - "type": "string", - "tags": [], - "label": "SERVICENOW_ITSM_ACTION_TYPE_ID", - "description": [], - "signature": [ - "\".servicenow\"" - ], - "source": { - "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 61 + "lineNumber": 72 }, "deprecated": false, "initialIsOpen": false }, { "parentPluginId": "cases", - "id": "def-common.SERVICENOW_SIR_ACTION_TYPE_ID", + "id": "def-common.SECURITY_SOLUTION_OWNER", "type": "string", "tags": [], - "label": "SERVICENOW_SIR_ACTION_TYPE_ID", - "description": [], + "label": "SECURITY_SOLUTION_OWNER", + "description": [ + "\nThis must be the same value that the security solution plugin uses to define the case kind when it registers the\nfeature for the 7.13 migration only.\n\nThis variable is being also used by test files and mocks." + ], "signature": [ - "\".servicenow-sir\"" + "\"securitySolution\"" ], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 62 + "lineNumber": 84 }, "deprecated": false, "initialIsOpen": false @@ -8194,7 +8482,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 42 + "lineNumber": 44 }, "deprecated": false, "initialIsOpen": false @@ -8211,7 +8499,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 14 + "lineNumber": 16 }, "deprecated": false, "initialIsOpen": false @@ -8225,7 +8513,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 43 + "lineNumber": 45 }, "deprecated": false, "initialIsOpen": false @@ -8239,7 +8527,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 40 + "lineNumber": 42 }, "deprecated": false, "initialIsOpen": false @@ -8253,7 +8541,7 @@ "description": [], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 41 + "lineNumber": 43 }, "deprecated": false, "initialIsOpen": false @@ -8278,7 +8566,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/sub_case.ts", - "lineNumber": 107 + "lineNumber": 106 }, "deprecated": false, "initialIsOpen": false @@ -8303,7 +8591,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/sub_case.ts", - "lineNumber": 111 + "lineNumber": 110 }, "deprecated": false, "initialIsOpen": false @@ -8368,7 +8656,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/sub_case.ts", - "lineNumber": 108 + "lineNumber": 107 }, "deprecated": false, "initialIsOpen": false @@ -8393,7 +8681,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/sub_case.ts", - "lineNumber": 113 + "lineNumber": 112 }, "deprecated": false, "initialIsOpen": false @@ -8458,7 +8746,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/sub_case.ts", - "lineNumber": 110 + "lineNumber": 109 }, "deprecated": false, "initialIsOpen": false @@ -8483,7 +8771,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/sub_case.ts", - "lineNumber": 112 + "lineNumber": 111 }, "deprecated": false, "initialIsOpen": false @@ -8548,7 +8836,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/sub_case.ts", - "lineNumber": 109 + "lineNumber": 108 }, "deprecated": false, "initialIsOpen": false @@ -8565,7 +8853,24 @@ ], "source": { "path": "x-pack/plugins/cases/common/constants.ts", - "lineNumber": 66 + "lineNumber": 64 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "cases", + "id": "def-common.SwimlaneFieldsType", + "type": "Type", + "tags": [], + "label": "SwimlaneFieldsType", + "description": [], + "signature": [ + "{ caseId: string | null; }" + ], + "source": { + "path": "x-pack/plugins/cases/common/api/connectors/swimlane.ts", + "lineNumber": 21 }, "deprecated": false, "initialIsOpen": false @@ -8599,7 +8904,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/ui/types.ts", - "lineNumber": 164 + "lineNumber": 181 }, "deprecated": false, "initialIsOpen": false @@ -8743,7 +9048,33 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/comment.ts", - "lineNumber": 70 + "lineNumber": 55 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "cases", + "id": "def-common.AlertResponseRt", + "type": "Object", + "tags": [], + "label": "AlertResponseRt", + "description": [], + "signature": [ + "ArrayC", + "<", + "TypeC", + "<{ id: ", + "StringC", + "; index: ", + "StringC", + "; attached_at: ", + "StringC", + "; }>>" + ], + "source": { + "path": "x-pack/plugins/cases/common/api/cases/alerts.ts", + "lineNumber": 16 }, "deprecated": false, "initialIsOpen": false @@ -9099,7 +9430,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/comment.ts", - "lineNumber": 132 + "lineNumber": 117 }, "deprecated": false, "initialIsOpen": false @@ -9455,7 +9786,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/comment.ts", - "lineNumber": 103 + "lineNumber": 88 }, "deprecated": false, "initialIsOpen": false @@ -9481,7 +9812,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/case.ts", - "lineNumber": 286 + "lineNumber": 308 }, "deprecated": false, "initialIsOpen": false @@ -9507,7 +9838,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/case.ts", - "lineNumber": 278 + "lineNumber": 300 }, "deprecated": false, "initialIsOpen": false @@ -9643,6 +9974,20 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none>; fields: ", + "NullC", + "; }>, ", + "TypeC", + "<{ type: ", + "LiteralC", + "<", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient>; fields: ", "UnionC", "<[", @@ -9783,9 +10128,19 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none>; fields: ", + ".swimlane>; fields: ", + "UnionC", + "<[", + "TypeC", + "<{ caseId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", "NullC", - "; }>]>]>; settings: ", + "]>; }>]>]>; settings: ", "TypeC", "<{ syncAlerts: ", "BooleanC", @@ -9945,7 +10300,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/case.ts", - "lineNumber": 87 + "lineNumber": 109 }, "deprecated": false, "initialIsOpen": false @@ -10025,6 +10380,20 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none>; fields: ", + "NullC", + "; }>, ", + "TypeC", + "<{ type: ", + "LiteralC", + "<", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient>; fields: ", "UnionC", "<[", @@ -10165,9 +10534,19 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none>; fields: ", + ".swimlane>; fields: ", + "UnionC", + "<[", + "TypeC", + "<{ caseId: ", + "UnionC", + "<[", + "StringC", + ", ", "NullC", - "; }>]>]>; closure_type: ", + "]>; }>, ", + "NullC", + "]>; }>]>]>; closure_type: ", "UnionC", "<[", "LiteralC", @@ -10367,6 +10746,20 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none>; fields: ", + "NullC", + "; }>, ", + "TypeC", + "<{ type: ", + "LiteralC", + "<", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient>; fields: ", "UnionC", "<[", @@ -10507,9 +10900,19 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none>; fields: ", + ".swimlane>; fields: ", + "UnionC", + "<[", + "TypeC", + "<{ caseId: ", + "UnionC", + "<[", + "StringC", + ", ", "NullC", - "; }>]>]>; closure_type: ", + "]>; }>, ", + "NullC", + "]>; }>]>]>; closure_type: ", "UnionC", "<[", "LiteralC", @@ -10687,6 +11090,20 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none>; fields: ", + "NullC", + "; }>, ", + "TypeC", + "<{ type: ", + "LiteralC", + "<", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient>; fields: ", "UnionC", "<[", @@ -10827,9 +11244,19 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none>; fields: ", + ".swimlane>; fields: ", + "UnionC", + "<[", + "TypeC", + "<{ caseId: ", + "UnionC", + "<[", + "StringC", + ", ", "NullC", - "; }>]>]>; closure_type: ", + "]>; }>, ", + "NullC", + "]>; }>]>]>; closure_type: ", "UnionC", "<[", "LiteralC", @@ -11023,6 +11450,20 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none>; fields: ", + "NullC", + "; }>, ", + "TypeC", + "<{ type: ", + "LiteralC", + "<", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient>; fields: ", "UnionC", "<[", @@ -11163,13 +11604,23 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none>; fields: ", + ".swimlane>; fields: ", + "UnionC", + "<[", + "TypeC", + "<{ caseId: ", + "UnionC", + "<[", + "StringC", + ", ", "NullC", - "; }>]>]>" + "]>; }>, ", + "NullC", + "]>; }>]>]>" ], "source": { "path": "x-pack/plugins/cases/common/api/connectors/index.ts", - "lineNumber": 74 + "lineNumber": 85 }, "deprecated": false, "initialIsOpen": false @@ -11305,6 +11756,20 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none>; fields: ", + "NullC", + "; }>, ", + "TypeC", + "<{ type: ", + "LiteralC", + "<", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient>; fields: ", "UnionC", "<[", @@ -11445,9 +11910,19 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none>; fields: ", + ".swimlane>; fields: ", + "UnionC", + "<[", + "TypeC", + "<{ caseId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", "NullC", - "; }>]>]>; settings: ", + "]>; }>]>]>; settings: ", "TypeC", "<{ syncAlerts: ", "BooleanC", @@ -11463,7 +11938,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/case.ts", - "lineNumber": 242 + "lineNumber": 264 }, "deprecated": false, "initialIsOpen": false @@ -11571,6 +12046,20 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none>; fields: ", + "NullC", + "; }>, ", + "TypeC", + "<{ type: ", + "LiteralC", + "<", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient>; fields: ", "UnionC", "<[", @@ -11711,9 +12200,19 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none>; fields: ", + ".swimlane>; fields: ", + "UnionC", + "<[", + "TypeC", + "<{ caseId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", "NullC", - "; }>]>]>; settings: ", + "]>; }>]>]>; settings: ", "TypeC", "<{ syncAlerts: ", "BooleanC", @@ -11723,7 +12222,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/case.ts", - "lineNumber": 142 + "lineNumber": 164 }, "deprecated": false, "initialIsOpen": false @@ -11745,7 +12244,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/case.ts", - "lineNumber": 253 + "lineNumber": 275 }, "deprecated": false, "initialIsOpen": false @@ -11871,7 +12370,21 @@ "NullC", "]>; }>, ", "NullC", - "]>; }>, ", + "]>; }>, ", + "TypeC", + "<{ type: ", + "LiteralC", + "<", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, + ".none>; fields: ", + "NullC", + "; }>, ", "TypeC", "<{ type: ", "LiteralC", @@ -12023,9 +12536,19 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none>; fields: ", + ".swimlane>; fields: ", + "UnionC", + "<[", + "TypeC", + "<{ caseId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", "NullC", - "; }>]>]>; settings: ", + "]>; }>]>]>; settings: ", "TypeC", "<{ syncAlerts: ", "BooleanC", @@ -13041,7 +13564,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/case.ts", - "lineNumber": 217 + "lineNumber": 239 }, "deprecated": false, "initialIsOpen": false @@ -13067,7 +13590,31 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/case.ts", - "lineNumber": 209 + "lineNumber": 231 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "cases", + "id": "def-common.CasesByAlertIdRt", + "type": "Object", + "tags": [], + "label": "CasesByAlertIdRt", + "description": [], + "signature": [ + "ArrayC", + "<", + "TypeC", + "<{ id: ", + "StringC", + "; title: ", + "StringC", + "; }>>" + ], + "source": { + "path": "x-pack/plugins/cases/common/api/cases/case.ts", + "lineNumber": 32 }, "deprecated": false, "initialIsOpen": false @@ -13171,6 +13718,20 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none>; fields: ", + "NullC", + "; }>, ", + "TypeC", + "<{ type: ", + "LiteralC", + "<", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient>; fields: ", "UnionC", "<[", @@ -13311,9 +13872,19 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none>; fields: ", + ".swimlane>; fields: ", + "UnionC", + "<[", + "TypeC", + "<{ caseId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", "NullC", - "; }>]>]>; settings: ", + "]>; }>]>]>; settings: ", "TypeC", "<{ syncAlerts: ", "BooleanC", @@ -13323,7 +13894,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/case.ts", - "lineNumber": 131 + "lineNumber": 153 }, "deprecated": false, "initialIsOpen": false @@ -13397,6 +13968,20 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none>; fields: ", + "NullC", + "; }>, ", + "TypeC", + "<{ type: ", + "LiteralC", + "<", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient>; fields: ", "UnionC", "<[", @@ -13537,9 +14122,19 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none>; fields: ", + ".swimlane>; fields: ", + "UnionC", + "<[", + "TypeC", + "<{ caseId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", "NullC", - "; }>]>]>; closure_type: ", + "]>; }>]>]>; closure_type: ", "UnionC", "<[", "LiteralC", @@ -13627,6 +14222,20 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none>; fields: ", + "NullC", + "; }>, ", + "TypeC", + "<{ type: ", + "LiteralC", + "<", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient>; fields: ", "UnionC", "<[", @@ -13767,9 +14376,19 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none>; fields: ", + ".swimlane>; fields: ", + "UnionC", + "<[", + "TypeC", + "<{ caseId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", "NullC", - "; }>]>]>; closure_type: ", + "]>; }>]>]>; closure_type: ", "UnionC", "<[", "LiteralC", @@ -13911,7 +14530,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/case.ts", - "lineNumber": 150 + "lineNumber": 172 }, "deprecated": false, "initialIsOpen": false @@ -14055,6 +14674,20 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none>; fields: ", + "NullC", + "; }>, ", + "TypeC", + "<{ type: ", + "LiteralC", + "<", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient>; fields: ", "UnionC", "<[", @@ -14195,9 +14828,19 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none>; fields: ", + ".swimlane>; fields: ", + "UnionC", + "<[", + "TypeC", + "<{ caseId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", "NullC", - "; }>]>]>; settings: ", + "]>; }>]>]>; settings: ", "TypeC", "<{ syncAlerts: ", "BooleanC", @@ -15227,7 +15870,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/case.ts", - "lineNumber": 232 + "lineNumber": 254 }, "deprecated": false, "initialIsOpen": false @@ -15367,6 +16010,20 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none>; fields: ", + "NullC", + "; }>, ", + "TypeC", + "<{ type: ", + "LiteralC", + "<", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient>; fields: ", "UnionC", "<[", @@ -15507,9 +16164,19 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none>; fields: ", + ".swimlane>; fields: ", + "UnionC", + "<[", + "TypeC", + "<{ caseId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", "NullC", - "; }>]>]>; settings: ", + "]>; }>]>]>; settings: ", "TypeC", "<{ syncAlerts: ", "BooleanC", @@ -15525,7 +16192,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/case.ts", - "lineNumber": 250 + "lineNumber": 272 }, "deprecated": false, "initialIsOpen": false @@ -15665,6 +16332,20 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none>; fields: ", + "NullC", + "; }>, ", + "TypeC", + "<{ type: ", + "LiteralC", + "<", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient>; fields: ", "UnionC", "<[", @@ -15805,9 +16486,19 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none>; fields: ", + ".swimlane>; fields: ", + "UnionC", + "<[", + "TypeC", + "<{ caseId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", "NullC", - "; }>]>]>; settings: ", + "]>; }>]>]>; settings: ", "TypeC", "<{ syncAlerts: ", "BooleanC", @@ -16823,7 +17514,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/case.ts", - "lineNumber": 251 + "lineNumber": 273 }, "deprecated": false, "initialIsOpen": false @@ -17275,7 +17966,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/comment.ts", - "lineNumber": 39 + "lineNumber": 24 }, "deprecated": false, "initialIsOpen": false @@ -17605,7 +18296,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/comment.ts", - "lineNumber": 120 + "lineNumber": 105 }, "deprecated": false, "initialIsOpen": false @@ -17703,7 +18394,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/comment.ts", - "lineNumber": 105 + "lineNumber": 90 }, "deprecated": false, "initialIsOpen": false @@ -17793,7 +18484,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/comment.ts", - "lineNumber": 85 + "lineNumber": 70 }, "deprecated": false, "initialIsOpen": false @@ -18147,7 +18838,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/comment.ts", - "lineNumber": 87 + "lineNumber": 72 }, "deprecated": false, "initialIsOpen": false @@ -18355,7 +19046,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/comment.ts", - "lineNumber": 95 + "lineNumber": 80 }, "deprecated": false, "initialIsOpen": false @@ -18719,7 +19410,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/comment.ts", - "lineNumber": 125 + "lineNumber": 110 }, "deprecated": false, "initialIsOpen": false @@ -18851,7 +19542,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/connectors/index.ts", - "lineNumber": 25 + "lineNumber": 27 }, "deprecated": false, "initialIsOpen": false @@ -18999,6 +19690,20 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, + ".none>; fields: ", + "NullC", + "; }>, ", + "TypeC", + "<{ type: ", + "LiteralC", + "<", + { + "pluginId": "cases", + "scope": "common", + "docId": "kibCasesPluginApi", + "section": "def-common.ConnectorTypes", + "text": "ConnectorTypes" + }, ".resilient>; fields: ", "UnionC", "<[", @@ -19139,13 +19844,23 @@ "section": "def-common.ConnectorTypes", "text": "ConnectorTypes" }, - ".none>; fields: ", + ".swimlane>; fields: ", + "UnionC", + "<[", + "TypeC", + "<{ caseId: ", + "UnionC", + "<[", + "StringC", + ", ", "NullC", - "; }>]>" + "]>; }>, ", + "NullC", + "]>; }>]>" ], "source": { "path": "x-pack/plugins/cases/common/api/connectors/index.ts", - "lineNumber": 66 + "lineNumber": 76 }, "deprecated": false, "initialIsOpen": false @@ -19177,7 +19892,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/comment.ts", - "lineNumber": 59 + "lineNumber": 44 }, "deprecated": false, "initialIsOpen": false @@ -19221,7 +19936,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/case.ts", - "lineNumber": 258 + "lineNumber": 280 }, "deprecated": false, "initialIsOpen": false @@ -19293,7 +20008,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/comment.ts", - "lineNumber": 134 + "lineNumber": 119 }, "deprecated": false, "initialIsOpen": false @@ -19322,8 +20037,8 @@ "; }>>; }>; }>; }>" ], "source": { - "path": "x-pack/plugins/cases/common/api/cases/comment.ts", - "lineNumber": 19 + "path": "x-pack/plugins/cases/common/api/cases/case.ts", + "lineNumber": 23 }, "deprecated": false, "initialIsOpen": false @@ -19773,7 +20488,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/sub_case.ts", - "lineNumber": 23 + "lineNumber": 22 }, "deprecated": false, "initialIsOpen": false @@ -19831,7 +20546,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/sub_case.ts", - "lineNumber": 99 + "lineNumber": 98 }, "deprecated": false, "initialIsOpen": false @@ -20345,7 +21060,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/sub_case.ts", - "lineNumber": 76 + "lineNumber": 75 }, "deprecated": false, "initialIsOpen": false @@ -20425,7 +21140,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/sub_case.ts", - "lineNumber": 36 + "lineNumber": 35 }, "deprecated": false, "initialIsOpen": false @@ -20959,7 +21674,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/sub_case.ts", - "lineNumber": 89 + "lineNumber": 88 }, "deprecated": false, "initialIsOpen": false @@ -21021,7 +21736,7 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/sub_case.ts", - "lineNumber": 104 + "lineNumber": 103 }, "deprecated": false, "initialIsOpen": false @@ -21537,7 +22252,31 @@ ], "source": { "path": "x-pack/plugins/cases/common/api/cases/sub_case.ts", - "lineNumber": 105 + "lineNumber": 104 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "cases", + "id": "def-common.SwimlaneFieldsRT", + "type": "Object", + "tags": [], + "label": "SwimlaneFieldsRT", + "description": [], + "signature": [ + "TypeC", + "<{ caseId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>" + ], + "source": { + "path": "x-pack/plugins/cases/common/api/connectors/swimlane.ts", + "lineNumber": 11 }, "deprecated": false, "initialIsOpen": false diff --git a/api_docs/cases.mdx b/api_docs/cases.mdx index 00714b3217fca..d52ead0690ff1 100644 --- a/api_docs/cases.mdx +++ b/api_docs/cases.mdx @@ -8,18 +8,17 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cases'] warning: 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. --- - import casesObj from './cases.json'; +The Case management system in Kibana - - +Contact [Security Solution Threat Hunting](https://github.com/orgs/elastic/teams/security-threat-hunting) for questions regarding this plugin. **Code health stats** | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 406 | 0 | 381 | 13 | +| 441 | 0 | 404 | 14 | ## Client diff --git a/api_docs/charts.json b/api_docs/charts.json index f42832e5d1e95..0f6623cbc19a8 100644 --- a/api_docs/charts.json +++ b/api_docs/charts.json @@ -1602,7 +1602,13 @@ ], "signature": [ "(state?: T | undefined) => ", - "Ast" + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.ExpressionAstExpression", + "text": "ExpressionAstExpression" + } ], "source": { "path": "src/plugins/charts/public/services/palettes/types.ts", diff --git a/api_docs/charts.mdx b/api_docs/charts.mdx index 95d0bd527e631..16f129214ca95 100644 --- a/api_docs/charts.mdx +++ b/api_docs/charts.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'charts'] warning: 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. --- - import chartsObj from './charts.json'; diff --git a/api_docs/cloud.json b/api_docs/cloud.json index 2b590695b9437..6aa22f4f4ecf4 100644 --- a/api_docs/cloud.json +++ b/api_docs/cloud.json @@ -13,7 +13,7 @@ "description": [], "source": { "path": "x-pack/plugins/cloud/public/plugin.ts", - "lineNumber": 17 + "lineNumber": 28 }, "deprecated": false, "children": [ @@ -29,7 +29,7 @@ ], "source": { "path": "x-pack/plugins/cloud/public/plugin.ts", - "lineNumber": 18 + "lineNumber": 29 }, "deprecated": false }, @@ -45,7 +45,7 @@ ], "source": { "path": "x-pack/plugins/cloud/public/plugin.ts", - "lineNumber": 19 + "lineNumber": 30 }, "deprecated": false }, @@ -61,7 +61,7 @@ ], "source": { "path": "x-pack/plugins/cloud/public/plugin.ts", - "lineNumber": 20 + "lineNumber": 31 }, "deprecated": false }, @@ -77,7 +77,7 @@ ], "source": { "path": "x-pack/plugins/cloud/public/plugin.ts", - "lineNumber": 21 + "lineNumber": 32 }, "deprecated": false }, @@ -93,7 +93,7 @@ ], "source": { "path": "x-pack/plugins/cloud/public/plugin.ts", - "lineNumber": 22 + "lineNumber": 33 }, "deprecated": false }, @@ -109,7 +109,23 @@ ], "source": { "path": "x-pack/plugins/cloud/public/plugin.ts", - "lineNumber": 23 + "lineNumber": 34 + }, + "deprecated": false + }, + { + "parentPluginId": "cloud", + "id": "def-public.CloudConfigType.full_story", + "type": "Object", + "tags": [], + "label": "full_story", + "description": [], + "signature": [ + "{ enabled: boolean; org_id?: string | undefined; }" + ], + "source": { + "path": "x-pack/plugins/cloud/public/plugin.ts", + "lineNumber": 35 }, "deprecated": false } @@ -129,7 +145,7 @@ "description": [], "source": { "path": "x-pack/plugins/cloud/public/plugin.ts", - "lineNumber": 35 + "lineNumber": 50 }, "deprecated": false, "children": [ @@ -145,7 +161,7 @@ ], "source": { "path": "x-pack/plugins/cloud/public/plugin.ts", - "lineNumber": 36 + "lineNumber": 51 }, "deprecated": false }, @@ -161,7 +177,7 @@ ], "source": { "path": "x-pack/plugins/cloud/public/plugin.ts", - "lineNumber": 37 + "lineNumber": 52 }, "deprecated": false }, @@ -177,7 +193,7 @@ ], "source": { "path": "x-pack/plugins/cloud/public/plugin.ts", - "lineNumber": 38 + "lineNumber": 53 }, "deprecated": false }, @@ -193,7 +209,7 @@ ], "source": { "path": "x-pack/plugins/cloud/public/plugin.ts", - "lineNumber": 39 + "lineNumber": 54 }, "deprecated": false }, @@ -209,7 +225,7 @@ ], "source": { "path": "x-pack/plugins/cloud/public/plugin.ts", - "lineNumber": 40 + "lineNumber": 55 }, "deprecated": false }, @@ -225,7 +241,7 @@ ], "source": { "path": "x-pack/plugins/cloud/public/plugin.ts", - "lineNumber": 41 + "lineNumber": 56 }, "deprecated": false }, @@ -238,7 +254,7 @@ "description": [], "source": { "path": "x-pack/plugins/cloud/public/plugin.ts", - "lineNumber": 42 + "lineNumber": 57 }, "deprecated": false } @@ -263,7 +279,7 @@ "description": [], "source": { "path": "x-pack/plugins/cloud/server/plugin.ts", - "lineNumber": 19 + "lineNumber": 20 }, "deprecated": false, "children": [ @@ -279,7 +295,7 @@ ], "source": { "path": "x-pack/plugins/cloud/server/plugin.ts", - "lineNumber": 20 + "lineNumber": 21 }, "deprecated": false }, @@ -295,7 +311,7 @@ ], "source": { "path": "x-pack/plugins/cloud/server/plugin.ts", - "lineNumber": 21 + "lineNumber": 22 }, "deprecated": false }, @@ -308,7 +324,7 @@ "description": [], "source": { "path": "x-pack/plugins/cloud/server/plugin.ts", - "lineNumber": 22 + "lineNumber": 23 }, "deprecated": false }, @@ -324,7 +340,7 @@ ], "source": { "path": "x-pack/plugins/cloud/server/plugin.ts", - "lineNumber": 23 + "lineNumber": 24 }, "deprecated": false } diff --git a/api_docs/cloud.mdx b/api_docs/cloud.mdx index f9d44f9c8d08b..5cd9d0e723689 100644 --- a/api_docs/cloud.mdx +++ b/api_docs/cloud.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloud'] warning: 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. --- - import cloudObj from './cloud.json'; @@ -19,7 +18,7 @@ import cloudObj from './cloud.json'; | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 20 | 0 | 20 | 0 | +| 21 | 0 | 21 | 0 | ## Client diff --git a/api_docs/console.mdx b/api_docs/console.mdx index 74a7fadf7a5c3..1f12ef44d7c82 100644 --- a/api_docs/console.mdx +++ b/api_docs/console.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'console'] warning: 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. --- - import consoleObj from './console.json'; diff --git a/api_docs/core.json b/api_docs/core.json index a5466960dbd36..711dfd57cdf0d 100644 --- a/api_docs/core.json +++ b/api_docs/core.json @@ -1112,7 +1112,7 @@ ], "source": { "path": "src/core/public/index.ts", - "lineNumber": 204 + "lineNumber": 206 }, "deprecated": false, "children": [ @@ -1136,7 +1136,7 @@ ], "source": { "path": "src/core/public/index.ts", - "lineNumber": 206 + "lineNumber": 208 }, "deprecated": false }, @@ -1160,7 +1160,7 @@ ], "source": { "path": "src/core/public/index.ts", - "lineNumber": 208 + "lineNumber": 210 }, "deprecated": false }, @@ -1184,7 +1184,7 @@ ], "source": { "path": "src/core/public/index.ts", - "lineNumber": 210 + "lineNumber": 212 }, "deprecated": false }, @@ -1208,7 +1208,7 @@ ], "source": { "path": "src/core/public/index.ts", - "lineNumber": 212 + "lineNumber": 214 }, "deprecated": false }, @@ -1232,7 +1232,7 @@ ], "source": { "path": "src/core/public/index.ts", - "lineNumber": 214 + "lineNumber": 216 }, "deprecated": false }, @@ -1252,7 +1252,7 @@ ], "source": { "path": "src/core/public/index.ts", - "lineNumber": 221 + "lineNumber": 223 }, "deprecated": true, "references": [] @@ -1279,7 +1279,7 @@ ], "source": { "path": "src/core/public/index.ts", - "lineNumber": 225 + "lineNumber": 227 }, "deprecated": false, "returnComment": [], @@ -1299,7 +1299,7 @@ ], "source": { "path": "src/core/public/index.ts", - "lineNumber": 249 + "lineNumber": 251 }, "deprecated": false, "children": [ @@ -1323,7 +1323,7 @@ ], "source": { "path": "src/core/public/index.ts", - "lineNumber": 251 + "lineNumber": 253 }, "deprecated": false }, @@ -1347,7 +1347,7 @@ ], "source": { "path": "src/core/public/index.ts", - "lineNumber": 253 + "lineNumber": 255 }, "deprecated": false }, @@ -1371,7 +1371,7 @@ ], "source": { "path": "src/core/public/index.ts", - "lineNumber": 255 + "lineNumber": 257 }, "deprecated": false }, @@ -1395,7 +1395,7 @@ ], "source": { "path": "src/core/public/index.ts", - "lineNumber": 257 + "lineNumber": 259 }, "deprecated": false }, @@ -1419,7 +1419,7 @@ ], "source": { "path": "src/core/public/index.ts", - "lineNumber": 259 + "lineNumber": 261 }, "deprecated": false }, @@ -1443,7 +1443,7 @@ ], "source": { "path": "src/core/public/index.ts", - "lineNumber": 261 + "lineNumber": 263 }, "deprecated": false }, @@ -1467,7 +1467,7 @@ ], "source": { "path": "src/core/public/index.ts", - "lineNumber": 263 + "lineNumber": 265 }, "deprecated": false }, @@ -1491,7 +1491,7 @@ ], "source": { "path": "src/core/public/index.ts", - "lineNumber": 265 + "lineNumber": 267 }, "deprecated": false }, @@ -1515,7 +1515,7 @@ ], "source": { "path": "src/core/public/index.ts", - "lineNumber": 267 + "lineNumber": 269 }, "deprecated": false }, @@ -1539,7 +1539,7 @@ ], "source": { "path": "src/core/public/index.ts", - "lineNumber": 269 + "lineNumber": 271 }, "deprecated": false }, @@ -1563,7 +1563,7 @@ ], "source": { "path": "src/core/public/index.ts", - "lineNumber": 271 + "lineNumber": 273 }, "deprecated": false }, @@ -1583,7 +1583,7 @@ ], "source": { "path": "src/core/public/index.ts", - "lineNumber": 278 + "lineNumber": 280 }, "deprecated": true, "references": [ @@ -1770,7 +1770,7 @@ "description": [], "source": { "path": "src/core/public/doc_links/doc_links_service.ts", - "lineNumber": 409 + "lineNumber": 426 }, "deprecated": false, "children": [ @@ -1783,7 +1783,7 @@ "description": [], "source": { "path": "src/core/public/doc_links/doc_links_service.ts", - "lineNumber": 410 + "lineNumber": 427 }, "deprecated": false }, @@ -1796,7 +1796,7 @@ "description": [], "source": { "path": "src/core/public/doc_links/doc_links_service.ts", - "lineNumber": 411 + "lineNumber": 428 }, "deprecated": false }, @@ -1808,11 +1808,11 @@ "label": "links", "description": [], "signature": [ - "{ readonly canvas: { readonly guide: string; }; readonly dashboard: { readonly guide: string; readonly drilldowns: string; readonly drilldownsTriggerPicker: string; readonly urlDrilldownTemplateSyntax: string; readonly urlDrilldownVariables: string; }; readonly discover: Record; readonly filebeat: { readonly base: string; readonly installation: string; readonly configuration: string; readonly elasticsearchOutput: string; readonly elasticsearchModule: string; readonly startup: string; readonly exportedFields: string; }; readonly auditbeat: { readonly base: string; }; readonly metricbeat: { readonly base: string; readonly configure: string; readonly httpEndpoint: string; readonly install: string; readonly start: string; }; readonly enterpriseSearch: { readonly base: string; readonly appSearchBase: string; readonly workplaceSearchBase: string; }; readonly heartbeat: { readonly base: string; }; readonly logstash: { readonly base: string; }; readonly functionbeat: { readonly base: string; }; readonly winlogbeat: { readonly base: string; }; readonly aggs: { 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 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; }; readonly runtimeFields: { readonly overview: string; readonly mapping: string; }; readonly scriptedFields: { readonly scriptFields: string; readonly scriptAggs: string; readonly painless: string; readonly painlessApi: string; readonly painlessLangSpec: string; readonly painlessSyntax: string; readonly painlessWalkthrough: string; readonly luceneExpressions: string; }; readonly search: { readonly sessions: string; }; readonly indexPatterns: { readonly introduction: string; readonly fieldFormattersNumber: string; readonly fieldFormattersString: string; readonly runtimeFields: string; }; readonly addData: string; readonly kibana: string; readonly upgradeAssistant: string; readonly elasticsearch: Record; readonly siem: { readonly guide: string; readonly gettingStarted: string; }; readonly query: { readonly eql: string; readonly kueryQuerySyntax: string; readonly luceneQuerySyntax: string; readonly percolate: string; readonly queryDsl: string; }; readonly date: { readonly dateMath: string; readonly dateMathIndexNames: string; }; readonly management: Record; readonly ml: Record; readonly transforms: Record; readonly visualize: Record; readonly apis: Readonly<{ bulkIndexAlias: string; byteSizeUnits: string; createAutoFollowPattern: string; createFollower: string; createIndex: string; createSnapshotLifecyclePolicy: string; createRoleMapping: string; createRoleMappingTemplates: string; createRollupJobsRequest: string; createApiKey: string; createPipeline: string; createTransformRequest: string; cronExpressions: string; executeWatchActionModes: string; indexExists: string; openIndex: string; putComponentTemplate: string; painlessExecute: string; painlessExecuteAPIContexts: string; putComponentTemplateMetadata: string; putSnapshotLifecyclePolicy: string; putIndexTemplateV1: string; putWatch: string; simulatePipeline: string; timeUnits: string; updateTransform: string; }>; readonly observability: Record; readonly alerting: Record; readonly maps: Record; readonly monitoring: Record; readonly security: Readonly<{ apiKeyServiceSettings: string; clusterPrivileges: string; elasticsearchSettings: string; elasticsearchEnableSecurity: string; indicesPrivileges: string; kibanaTLS: string; kibanaPrivileges: string; mappingRoles: string; mappingRolesFieldRules: string; runAsPrivilege: string; }>; readonly watcher: Record; readonly ccs: Record; readonly plugins: Record; readonly snapshotRestore: Record; readonly ingest: Record; }" + "{ readonly settings: string; readonly canvas: { readonly guide: string; }; readonly dashboard: { readonly guide: string; readonly drilldowns: string; readonly drilldownsTriggerPicker: string; readonly urlDrilldownTemplateSyntax: string; readonly urlDrilldownVariables: string; }; readonly discover: Record; readonly filebeat: { readonly base: string; readonly installation: string; readonly configuration: string; readonly elasticsearchOutput: string; readonly elasticsearchModule: string; readonly startup: string; readonly exportedFields: string; }; readonly auditbeat: { readonly base: string; }; readonly metricbeat: { readonly base: string; readonly configure: string; readonly httpEndpoint: string; readonly install: string; readonly start: string; }; readonly enterpriseSearch: { readonly base: string; readonly appSearchBase: string; readonly workplaceSearchBase: string; }; readonly heartbeat: { readonly base: string; }; readonly logstash: { readonly base: string; }; readonly functionbeat: { readonly base: string; }; readonly winlogbeat: { readonly base: string; }; readonly aggs: { 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 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; }; readonly runtimeFields: { readonly overview: string; readonly mapping: string; }; readonly scriptedFields: { readonly scriptFields: string; readonly scriptAggs: string; readonly painless: string; readonly painlessApi: string; readonly painlessLangSpec: string; readonly painlessSyntax: string; readonly painlessWalkthrough: string; readonly luceneExpressions: string; }; readonly search: { readonly sessions: string; readonly sessionLimits: string; }; readonly indexPatterns: { readonly introduction: string; readonly fieldFormattersNumber: string; readonly fieldFormattersString: string; readonly runtimeFields: string; }; readonly addData: string; readonly kibana: string; readonly upgradeAssistant: string; readonly rollupJobs: string; readonly elasticsearch: Record; readonly siem: { readonly guide: string; readonly gettingStarted: string; }; readonly query: { readonly eql: string; readonly kueryQuerySyntax: string; readonly luceneQuerySyntax: string; readonly percolate: string; readonly queryDsl: string; }; readonly date: { readonly dateMath: string; readonly dateMathIndexNames: string; }; readonly management: Record; readonly ml: Record; readonly transforms: Record; readonly visualize: Record; readonly apis: Readonly<{ bulkIndexAlias: string; byteSizeUnits: string; createAutoFollowPattern: string; createFollower: string; createIndex: string; createSnapshotLifecyclePolicy: string; createRoleMapping: string; createRoleMappingTemplates: string; createRollupJobsRequest: string; createApiKey: string; createPipeline: string; createTransformRequest: string; cronExpressions: string; executeWatchActionModes: string; indexExists: string; openIndex: string; putComponentTemplate: string; painlessExecute: string; painlessExecuteAPIContexts: string; putComponentTemplateMetadata: string; putSnapshotLifecyclePolicy: string; putIndexTemplateV1: string; putWatch: string; simulatePipeline: string; timeUnits: string; updateTransform: string; }>; readonly observability: Record; readonly alerting: Record; readonly maps: Record; readonly monitoring: Record; readonly security: Readonly<{ apiKeyServiceSettings: string; clusterPrivileges: string; elasticsearchSettings: string; elasticsearchEnableSecurity: string; indicesPrivileges: string; kibanaTLS: string; kibanaPrivileges: string; mappingRoles: string; mappingRolesFieldRules: string; runAsPrivilege: string; }>; readonly watcher: Record; readonly ccs: Record; readonly plugins: Record; readonly snapshotRestore: Record; readonly ingest: Record; readonly fleet: Readonly<{ guide: string; fleetServer: string; fleetServerAddFleetServer: string; settings: string; settingsFleetServerHostSettings: string; troubleshooting: string; elasticAgent: string; datastreams: string; datastreamsNamingScheme: string; upgradeElasticAgent: string; upgradeElasticAgent712lower: string; }>; }" ], "source": { "path": "src/core/public/doc_links/doc_links_service.ts", - "lineNumber": 412 + "lineNumber": 429 }, "deprecated": false } @@ -3632,7 +3632,7 @@ "label": "buttonColor", "description": [], "signature": [ - "\"warning\" | \"text\" | \"primary\" | \"danger\" | \"secondary\" | \"ghost\" | undefined" + "\"warning\" | \"text\" | \"primary\" | \"success\" | \"danger\" | \"accent\" | \"secondary\" | \"ghost\" | undefined" ], "source": { "path": "src/core/public/overlays/modal/modal_service.tsx", @@ -4827,14 +4827,14 @@ "tags": [], "label": "namespaces", "description": [ - "Namespace(s) that this saved object exists in. This attribute is only used for multi-namespace saved object types." + "\nSpace(s) that this saved object exists in. This attribute is not used for \"global\" saved object types which are registered with\n`namespaceType: 'agnostic'`." ], "signature": [ "string[] | undefined" ], "source": { "path": "src/core/types/saved_objects.ts", - "lineNumber": 88 + "lineNumber": 91 }, "deprecated": false }, @@ -4852,7 +4852,7 @@ ], "source": { "path": "src/core/types/saved_objects.ts", - "lineNumber": 95 + "lineNumber": 98 }, "deprecated": false } @@ -4902,7 +4902,7 @@ "description": [], "source": { "path": "src/core/types/saved_objects.ts", - "lineNumber": 98 + "lineNumber": 101 }, "deprecated": false, "children": [ @@ -4915,7 +4915,7 @@ "description": [], "source": { "path": "src/core/types/saved_objects.ts", - "lineNumber": 99 + "lineNumber": 102 }, "deprecated": false }, @@ -4928,7 +4928,7 @@ "description": [], "source": { "path": "src/core/types/saved_objects.ts", - "lineNumber": 100 + "lineNumber": 103 }, "deprecated": false }, @@ -4941,7 +4941,7 @@ "description": [], "source": { "path": "src/core/types/saved_objects.ts", - "lineNumber": 101 + "lineNumber": 104 }, "deprecated": false }, @@ -4957,7 +4957,7 @@ ], "source": { "path": "src/core/types/saved_objects.ts", - "lineNumber": 102 + "lineNumber": 105 }, "deprecated": false } @@ -6562,6 +6562,89 @@ ], "initialIsOpen": false }, + { + "parentPluginId": "core", + "id": "def-public.SavedObjectsResolveResponse", + "type": "Interface", + "tags": [], + "label": "SavedObjectsResolveResponse", + "description": [ + "\n" + ], + "signature": [ + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsResolveResponse", + "text": "SavedObjectsResolveResponse" + }, + "" + ], + "source": { + "path": "src/core/server/saved_objects/service/saved_objects_client.ts", + "lineNumber": 313 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "core", + "id": "def-public.SavedObjectsResolveResponse.saved_object", + "type": "Object", + "tags": [], + "label": "saved_object", + "description": [ + "\nThe saved object that was found." + ], + "signature": [ + "SavedObject", + "" + ], + "source": { + "path": "src/core/server/saved_objects/service/saved_objects_client.ts", + "lineNumber": 317 + }, + "deprecated": false + }, + { + "parentPluginId": "core", + "id": "def-public.SavedObjectsResolveResponse.outcome", + "type": "CompoundType", + "tags": [], + "label": "outcome", + "description": [ + "\nThe outcome for a successful `resolve` call is one of the following values:\n\n * `'exactMatch'` -- One document exactly matched the given ID.\n * `'aliasMatch'` -- One document with a legacy URL alias matched the given ID; in this case the `saved_object.id` field is different\n than the given ID.\n * `'conflict'` -- Two documents matched the given ID, one was an exact match and another with a legacy URL alias; in this case the\n `saved_object` object is the exact match, and the `saved_object.id` field is the same as the given ID." + ], + "signature": [ + "\"conflict\" | \"exactMatch\" | \"aliasMatch\"" + ], + "source": { + "path": "src/core/server/saved_objects/service/saved_objects_client.ts", + "lineNumber": 327 + }, + "deprecated": false + }, + { + "parentPluginId": "core", + "id": "def-public.SavedObjectsResolveResponse.aliasTargetId", + "type": "string", + "tags": [], + "label": "aliasTargetId", + "description": [ + "\nThe ID of the object that the legacy URL alias points to. This is only defined when the outcome is `'aliasMatch'` or `'conflict'`." + ], + "signature": [ + "string | undefined" + ], + "source": { + "path": "src/core/server/saved_objects/service/saved_objects_client.ts", + "lineNumber": 331 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, { "parentPluginId": "core", "id": "def-public.ToastOptions", @@ -6789,7 +6872,7 @@ "defines a type of UI element {@link UiSettingsType}" ], "signature": [ - "\"string\" | \"number\" | \"boolean\" | \"undefined\" | \"color\" | \"json\" | \"image\" | \"select\" | \"array\" | \"markdown\" | undefined" + "\"string\" | \"number\" | \"boolean\" | \"undefined\" | \"color\" | \"json\" | \"image\" | \"markdown\" | \"select\" | \"array\" | undefined" ], "source": { "path": "src/core/types/ui_settings.ts", @@ -7279,7 +7362,7 @@ "\nA sub-set of {@link UiSettingsParams} exposed to the client-side." ], "signature": [ - "{ type?: \"string\" | \"number\" | \"boolean\" | \"undefined\" | \"color\" | \"json\" | \"image\" | \"select\" | \"array\" | \"markdown\" | undefined; options?: string[] | undefined; description?: string | undefined; name?: string | undefined; order?: number | undefined; value?: unknown; category?: string[] | undefined; metric?: { type: ", + "{ type?: \"string\" | \"number\" | \"boolean\" | \"undefined\" | \"color\" | \"json\" | \"image\" | \"markdown\" | \"select\" | \"array\" | undefined; options?: string[] | undefined; description?: string | undefined; name?: string | undefined; order?: number | undefined; value?: unknown; category?: string[] | undefined; metric?: { type: ", "UiCounterMetricType", "; name: string; } | undefined; optionLabels?: Record | undefined; requiresPageReload?: boolean | undefined; readonly?: boolean | undefined; sensitive?: boolean | undefined; deprecation?: ", "DeprecationSettings", @@ -7427,7 +7510,7 @@ ], "source": { "path": "src/core/public/index.ts", - "lineNumber": 235 + "lineNumber": 237 }, "deprecated": false, "initialIsOpen": false @@ -7870,7 +7953,7 @@ "\nUI element type to represent the settings." ], "signature": [ - "\"string\" | \"number\" | \"boolean\" | \"undefined\" | \"color\" | \"json\" | \"image\" | \"select\" | \"array\" | \"markdown\"" + "\"string\" | \"number\" | \"boolean\" | \"undefined\" | \"color\" | \"json\" | \"image\" | \"markdown\" | \"select\" | \"array\"" ], "source": { "path": "src/core/types/ui_settings.ts", @@ -7950,7 +8033,7 @@ ], "source": { "path": "src/core/server/csp/csp_config.ts", - "lineNumber": 52 + "lineNumber": 53 }, "deprecated": false, "children": [ @@ -7972,7 +8055,23 @@ ], "source": { "path": "src/core/server/csp/csp_config.ts", - "lineNumber": 53 + "lineNumber": 54 + }, + "deprecated": false + }, + { + "parentPluginId": "core", + "id": "def-server.CspConfig.directives", + "type": "Object", + "tags": [], + "label": "#directives", + "description": [], + "signature": [ + "CspDirectives" + ], + "source": { + "path": "src/core/server/csp/csp_config.ts", + "lineNumber": 56 }, "deprecated": false }, @@ -7988,7 +8087,7 @@ ], "source": { "path": "src/core/server/csp/csp_config.ts", - "lineNumber": 55 + "lineNumber": 57 }, "deprecated": false }, @@ -8001,7 +8100,7 @@ "description": [], "source": { "path": "src/core/server/csp/csp_config.ts", - "lineNumber": 56 + "lineNumber": 58 }, "deprecated": false }, @@ -8014,7 +8113,7 @@ "description": [], "source": { "path": "src/core/server/csp/csp_config.ts", - "lineNumber": 57 + "lineNumber": 59 }, "deprecated": false }, @@ -8027,7 +8126,7 @@ "description": [], "source": { "path": "src/core/server/csp/csp_config.ts", - "lineNumber": 58 + "lineNumber": 60 }, "deprecated": false }, @@ -8040,7 +8139,7 @@ "description": [], "source": { "path": "src/core/server/csp/csp_config.ts", - "lineNumber": 59 + "lineNumber": 61 }, "deprecated": false } @@ -8527,21 +8626,21 @@ "plugin": "licensing", "link": { "path": "x-pack/plugins/licensing/server/plugin.ts", - "lineNumber": 106 + "lineNumber": 107 } }, { "plugin": "licensing", "link": { "path": "x-pack/plugins/licensing/server/plugin.ts", - "lineNumber": 110 + "lineNumber": 111 } }, { "plugin": "licensing", "link": { "path": "x-pack/plugins/licensing/server/plugin.ts", - "lineNumber": 182 + "lineNumber": 185 } }, { @@ -9236,21 +9335,21 @@ "plugin": "licensing", "link": { "path": "x-pack/plugins/licensing/server/plugin.ts", - "lineNumber": 102 + "lineNumber": 103 } }, { "plugin": "licensing", "link": { "path": "x-pack/plugins/licensing/server/plugin.ts", - "lineNumber": 103 + "lineNumber": 104 } }, { "plugin": "licensing", "link": { "path": "x-pack/plugins/licensing/server/plugin.ts", - "lineNumber": 120 + "lineNumber": 121 } } ], @@ -9355,28 +9454,28 @@ "plugin": "licensing", "link": { "path": "x-pack/plugins/licensing/server/plugin.ts", - "lineNumber": 113 + "lineNumber": 114 } }, { "plugin": "licensing", "link": { "path": "x-pack/plugins/licensing/server/plugin.ts", - "lineNumber": 114 + "lineNumber": 115 } }, { "plugin": "licensing", "link": { "path": "x-pack/plugins/licensing/server/plugin.ts", - "lineNumber": 115 + "lineNumber": 116 } }, { "plugin": "licensing", "link": { "path": "x-pack/plugins/licensing/server/plugin.ts", - "lineNumber": 118 + "lineNumber": 119 } }, { @@ -9386,20 +9485,6 @@ "lineNumber": 65 } }, - { - "plugin": "canvas", - "link": { - "path": "x-pack/plugins/canvas/server/routes/es_fields/es_fields.ts", - "lineNumber": 31 - } - }, - { - "plugin": "canvas", - "link": { - "path": "x-pack/plugins/canvas/server/routes/functions/functions.ts", - "lineNumber": 64 - } - }, { "plugin": "indexManagement", "link": { @@ -9495,7 +9580,7 @@ "plugin": "indexManagement", "link": { "path": "x-pack/plugins/index_management/server/routes/api/templates/register_get_routes.ts", - "lineNumber": 62 + "lineNumber": 74 } }, { @@ -9659,34 +9744,6 @@ "lineNumber": 41 } }, - { - "plugin": "canvas", - "link": { - "path": "x-pack/plugins/canvas/server/routes/es_fields/es_fields.test.ts", - "lineNumber": 70 - } - }, - { - "plugin": "canvas", - "link": { - "path": "x-pack/plugins/canvas/server/routes/es_fields/es_fields.test.ts", - "lineNumber": 98 - } - }, - { - "plugin": "canvas", - "link": { - "path": "x-pack/plugins/canvas/server/routes/es_fields/es_fields.test.ts", - "lineNumber": 126 - } - }, - { - "plugin": "canvas", - "link": { - "path": "x-pack/plugins/canvas/server/routes/es_fields/es_fields.test.ts", - "lineNumber": 146 - } - }, { "plugin": "monitoring", "link": { @@ -10113,7 +10170,7 @@ ], "source": { "path": "src/core/server/plugins/types.ts", - "lineNumber": 301 + "lineNumber": 322 }, "deprecated": true, "references": [ @@ -10167,7 +10224,7 @@ ], "source": { "path": "src/core/server/plugins/types.ts", - "lineNumber": 307 + "lineNumber": 328 }, "deprecated": false, "children": [ @@ -10190,7 +10247,7 @@ ], "source": { "path": "src/core/server/plugins/types.ts", - "lineNumber": 307 + "lineNumber": 328 }, "deprecated": false, "isRequired": true @@ -10207,7 +10264,7 @@ ], "source": { "path": "src/core/server/plugins/types.ts", - "lineNumber": 307 + "lineNumber": 328 }, "deprecated": false, "isRequired": true @@ -10235,7 +10292,7 @@ ], "source": { "path": "src/core/server/plugins/types.ts", - "lineNumber": 309 + "lineNumber": 330 }, "deprecated": false, "children": [ @@ -10257,7 +10314,7 @@ ], "source": { "path": "src/core/server/plugins/types.ts", - "lineNumber": 309 + "lineNumber": 330 }, "deprecated": false, "isRequired": true @@ -10274,7 +10331,7 @@ ], "source": { "path": "src/core/server/plugins/types.ts", - "lineNumber": 309 + "lineNumber": 330 }, "deprecated": false, "isRequired": true @@ -10294,7 +10351,7 @@ ], "source": { "path": "src/core/server/plugins/types.ts", - "lineNumber": 311 + "lineNumber": 332 }, "deprecated": false, "children": [], @@ -10981,7 +11038,7 @@ ], "source": { "path": "src/core/server/index.ts", - "lineNumber": 470 + "lineNumber": 471 }, "deprecated": false, "children": [ @@ -11005,7 +11062,7 @@ ], "source": { "path": "src/core/server/index.ts", - "lineNumber": 472 + "lineNumber": 473 }, "deprecated": false }, @@ -11029,7 +11086,7 @@ ], "source": { "path": "src/core/server/index.ts", - "lineNumber": 474 + "lineNumber": 475 }, "deprecated": false }, @@ -11053,7 +11110,7 @@ ], "source": { "path": "src/core/server/index.ts", - "lineNumber": 476 + "lineNumber": 477 }, "deprecated": false }, @@ -11086,7 +11143,7 @@ ], "source": { "path": "src/core/server/index.ts", - "lineNumber": 478 + "lineNumber": 479 }, "deprecated": false }, @@ -11110,7 +11167,7 @@ ], "source": { "path": "src/core/server/index.ts", - "lineNumber": 483 + "lineNumber": 484 }, "deprecated": false }, @@ -11134,7 +11191,7 @@ ], "source": { "path": "src/core/server/index.ts", - "lineNumber": 485 + "lineNumber": 486 }, "deprecated": false }, @@ -11158,7 +11215,7 @@ ], "source": { "path": "src/core/server/index.ts", - "lineNumber": 487 + "lineNumber": 488 }, "deprecated": false }, @@ -11182,7 +11239,7 @@ ], "source": { "path": "src/core/server/index.ts", - "lineNumber": 489 + "lineNumber": 490 }, "deprecated": false }, @@ -11206,7 +11263,7 @@ ], "source": { "path": "src/core/server/index.ts", - "lineNumber": 491 + "lineNumber": 492 }, "deprecated": false }, @@ -11230,7 +11287,7 @@ ], "source": { "path": "src/core/server/index.ts", - "lineNumber": 493 + "lineNumber": 494 }, "deprecated": false }, @@ -11254,7 +11311,7 @@ ], "source": { "path": "src/core/server/index.ts", - "lineNumber": 495 + "lineNumber": 496 }, "deprecated": false }, @@ -11280,7 +11337,7 @@ ], "source": { "path": "src/core/server/index.ts", - "lineNumber": 497 + "lineNumber": 498 }, "deprecated": false, "returnComment": [], @@ -11300,7 +11357,7 @@ ], "source": { "path": "src/core/server/index.ts", - "lineNumber": 518 + "lineNumber": 519 }, "deprecated": false, "children": [ @@ -11324,7 +11381,7 @@ ], "source": { "path": "src/core/server/index.ts", - "lineNumber": 520 + "lineNumber": 521 }, "deprecated": false }, @@ -11348,7 +11405,7 @@ ], "source": { "path": "src/core/server/index.ts", - "lineNumber": 522 + "lineNumber": 523 }, "deprecated": false }, @@ -11372,7 +11429,7 @@ ], "source": { "path": "src/core/server/index.ts", - "lineNumber": 524 + "lineNumber": 525 }, "deprecated": false }, @@ -11396,7 +11453,7 @@ ], "source": { "path": "src/core/server/index.ts", - "lineNumber": 526 + "lineNumber": 527 }, "deprecated": false }, @@ -11420,7 +11477,7 @@ ], "source": { "path": "src/core/server/index.ts", - "lineNumber": 528 + "lineNumber": 529 }, "deprecated": false }, @@ -11444,7 +11501,7 @@ ], "source": { "path": "src/core/server/index.ts", - "lineNumber": 530 + "lineNumber": 531 }, "deprecated": false } @@ -12175,7 +12232,7 @@ ], "source": { "path": "src/core/server/plugins/types.ts", - "lineNumber": 218 + "lineNumber": 239 }, "deprecated": false, "children": [ @@ -12190,7 +12247,7 @@ ], "source": { "path": "src/core/server/plugins/types.ts", - "lineNumber": 222 + "lineNumber": 243 }, "deprecated": false }, @@ -12208,7 +12265,7 @@ ], "source": { "path": "src/core/server/plugins/types.ts", - "lineNumber": 227 + "lineNumber": 248 }, "deprecated": false }, @@ -12226,7 +12283,7 @@ ], "source": { "path": "src/core/server/plugins/types.ts", - "lineNumber": 233 + "lineNumber": 254 }, "deprecated": false }, @@ -12244,7 +12301,7 @@ ], "source": { "path": "src/core/server/plugins/types.ts", - "lineNumber": 240 + "lineNumber": 261 }, "deprecated": false }, @@ -12262,7 +12319,7 @@ ], "source": { "path": "src/core/server/plugins/types.ts", - "lineNumber": 252 + "lineNumber": 273 }, "deprecated": false } @@ -12334,13 +12391,6 @@ }, "deprecated": true, "references": [ - { - "plugin": "canvas", - "link": { - "path": "x-pack/plugins/canvas/server/routes/functions/functions.ts", - "lineNumber": 64 - } - }, { "plugin": "console", "link": { @@ -12537,14 +12587,14 @@ "plugin": "licensing", "link": { "path": "x-pack/plugins/licensing/server/plugin.ts", - "lineNumber": 105 + "lineNumber": 106 } }, { "plugin": "licensing", "link": { "path": "x-pack/plugins/licensing/server/plugin.ts", - "lineNumber": 117 + "lineNumber": 118 } }, { @@ -15007,7 +15057,7 @@ ], "source": { "path": "src/core/server/csp/csp_config.ts", - "lineNumber": 17 + "lineNumber": 18 }, "deprecated": false, "children": [ @@ -15025,7 +15075,7 @@ ], "source": { "path": "src/core/server/csp/csp_config.ts", - "lineNumber": 21 + "lineNumber": 22 }, "deprecated": false }, @@ -15040,7 +15090,7 @@ ], "source": { "path": "src/core/server/csp/csp_config.ts", - "lineNumber": 27 + "lineNumber": 28 }, "deprecated": false }, @@ -15055,7 +15105,7 @@ ], "source": { "path": "src/core/server/csp/csp_config.ts", - "lineNumber": 33 + "lineNumber": 34 }, "deprecated": false }, @@ -15070,7 +15120,7 @@ ], "source": { "path": "src/core/server/csp/csp_config.ts", - "lineNumber": 39 + "lineNumber": 40 }, "deprecated": false }, @@ -15085,7 +15135,7 @@ ], "source": { "path": "src/core/server/csp/csp_config.ts", - "lineNumber": 45 + "lineNumber": 46 }, "deprecated": false } @@ -15304,7 +15354,7 @@ "description": [], "source": { "path": "src/core/server/rendering/types.ts", - "lineNumber": 68 + "lineNumber": 69 }, "deprecated": false, "children": [ @@ -15322,7 +15372,7 @@ ], "source": { "path": "src/core/server/rendering/types.ts", - "lineNumber": 73 + "lineNumber": 74 }, "deprecated": false } @@ -15761,34 +15811,6 @@ "deprecated": true, "removeBy": "7.16", "references": [ - { - "plugin": "canvas", - "link": { - "path": "x-pack/plugins/canvas/server/lib/query_es_sql.ts", - "lineNumber": 12 - } - }, - { - "plugin": "canvas", - "link": { - "path": "x-pack/plugins/canvas/server/lib/query_es_sql.ts", - "lineNumber": 37 - } - }, - { - "plugin": "canvas", - "link": { - "path": "x-pack/plugins/canvas/server/routes/functions/functions.ts", - "lineNumber": 8 - } - }, - { - "plugin": "canvas", - "link": { - "path": "x-pack/plugins/canvas/server/routes/functions/functions.ts", - "lineNumber": 40 - } - }, { "plugin": "crossClusterReplication", "link": { @@ -16059,14 +16081,14 @@ "plugin": "securitySolution", "link": { "path": "x-pack/plugins/security_solution/server/lib/telemetry/sender.ts", - "lineNumber": 457 + "lineNumber": 462 } }, { "plugin": "securitySolution", "link": { "path": "x-pack/plugins/security_solution/server/lib/telemetry/sender.ts", - "lineNumber": 476 + "lineNumber": 481 } }, { @@ -19790,7 +19812,7 @@ ], "source": { "path": "src/core/server/plugins/types.ts", - "lineNumber": 282 + "lineNumber": 303 }, "deprecated": false, "children": [ @@ -19814,7 +19836,7 @@ ], "source": { "path": "src/core/server/plugins/types.ts", - "lineNumber": 288 + "lineNumber": 309 }, "deprecated": false, "children": [ @@ -19837,7 +19859,7 @@ ], "source": { "path": "src/core/server/plugins/types.ts", - "lineNumber": 288 + "lineNumber": 309 }, "deprecated": false, "isRequired": true @@ -19854,7 +19876,7 @@ ], "source": { "path": "src/core/server/plugins/types.ts", - "lineNumber": 288 + "lineNumber": 309 }, "deprecated": false, "isRequired": true @@ -19882,7 +19904,7 @@ ], "source": { "path": "src/core/server/plugins/types.ts", - "lineNumber": 290 + "lineNumber": 311 }, "deprecated": false, "children": [ @@ -19904,7 +19926,7 @@ ], "source": { "path": "src/core/server/plugins/types.ts", - "lineNumber": 290 + "lineNumber": 311 }, "deprecated": false, "isRequired": true @@ -19921,7 +19943,7 @@ ], "source": { "path": "src/core/server/plugins/types.ts", - "lineNumber": 290 + "lineNumber": 311 }, "deprecated": false, "isRequired": true @@ -19941,7 +19963,7 @@ ], "source": { "path": "src/core/server/plugins/types.ts", - "lineNumber": 292 + "lineNumber": 313 }, "deprecated": false, "children": [], @@ -20080,7 +20102,7 @@ ], "source": { "path": "src/core/server/plugins/types.ts", - "lineNumber": 337 + "lineNumber": 358 }, "deprecated": false, "children": [ @@ -20096,7 +20118,7 @@ ], "source": { "path": "src/core/server/plugins/types.ts", - "lineNumber": 338 + "lineNumber": 359 }, "deprecated": false }, @@ -20116,7 +20138,7 @@ ], "source": { "path": "src/core/server/plugins/types.ts", - "lineNumber": 339 + "lineNumber": 360 }, "deprecated": false }, @@ -20134,7 +20156,7 @@ ], "source": { "path": "src/core/server/plugins/types.ts", - "lineNumber": 362 + "lineNumber": 383 }, "deprecated": false }, @@ -20168,7 +20190,7 @@ ], "source": { "path": "src/core/server/plugins/types.ts", - "lineNumber": 366 + "lineNumber": 387 }, "deprecated": false } @@ -20375,6 +20397,42 @@ "lineNumber": 210 }, "deprecated": false + }, + { + "parentPluginId": "core", + "id": "def-server.PluginManifest.owner", + "type": "Object", + "tags": [], + "label": "owner", + "description": [ + "\nTODO: make required once all internal plugins have this specified." + ], + "signature": [ + "{ readonly name: string; readonly githubTeam?: string | undefined; } | undefined" + ], + "source": { + "path": "src/core/server/plugins/types.ts", + "lineNumber": 215 + }, + "deprecated": false + }, + { + "parentPluginId": "core", + "id": "def-server.PluginManifest.description", + "type": "string", + "tags": [], + "label": "description", + "description": [ + "\nTODO: make required once all plugins specify this.\nA brief description of what this plugin does and any capabilities it provides." + ], + "signature": [ + "string | undefined" + ], + "source": { + "path": "src/core/server/plugins/types.ts", + "lineNumber": 231 + }, + "deprecated": false } ], "initialIsOpen": false @@ -20463,7 +20521,7 @@ ], "source": { "path": "src/core/server/index.ts", - "lineNumber": 437 + "lineNumber": 438 }, "deprecated": false, "children": [ @@ -20567,7 +20625,7 @@ ], "source": { "path": "src/core/server/index.ts", - "lineNumber": 438 + "lineNumber": 439 }, "deprecated": false } @@ -20788,14 +20846,14 @@ "tags": [], "label": "namespaces", "description": [ - "Namespace(s) that this saved object exists in. This attribute is only used for multi-namespace saved object types." + "\nSpace(s) that this saved object exists in. This attribute is not used for \"global\" saved object types which are registered with\n`namespaceType: 'agnostic'`." ], "signature": [ "string[] | undefined" ], "source": { "path": "src/core/types/saved_objects.ts", - "lineNumber": 88 + "lineNumber": 91 }, "deprecated": false }, @@ -20813,7 +20871,7 @@ ], "source": { "path": "src/core/types/saved_objects.ts", - "lineNumber": 95 + "lineNumber": 98 }, "deprecated": false } @@ -21431,7 +21489,7 @@ ], "source": { "path": "src/core/server/status/types.ts", - "lineNumber": 202 + "lineNumber": 205 }, "deprecated": false, "children": [ @@ -21456,7 +21514,7 @@ ], "source": { "path": "src/core/server/status/types.ts", - "lineNumber": 202 + "lineNumber": 205 }, "deprecated": false, "isRequired": true @@ -21487,7 +21545,7 @@ ], "source": { "path": "src/core/server/status/types.ts", - "lineNumber": 208 + "lineNumber": 211 }, "deprecated": false }, @@ -21514,7 +21572,7 @@ ], "source": { "path": "src/core/server/status/types.ts", - "lineNumber": 220 + "lineNumber": 223 }, "deprecated": false }, @@ -21532,7 +21590,7 @@ ], "source": { "path": "src/core/server/status/types.ts", - "lineNumber": 226 + "lineNumber": 229 }, "deprecated": false, "returnComment": [], @@ -21732,7 +21790,7 @@ "defines a type of UI element {@link UiSettingsType}" ], "signature": [ - "\"string\" | \"number\" | \"boolean\" | \"undefined\" | \"color\" | \"json\" | \"image\" | \"select\" | \"array\" | \"markdown\" | undefined" + "\"string\" | \"number\" | \"boolean\" | \"undefined\" | \"color\" | \"json\" | \"image\" | \"markdown\" | \"select\" | \"array\" | undefined" ], "source": { "path": "src/core/types/ui_settings.ts", @@ -22271,7 +22329,7 @@ "label": "EcsEventCategory", "description": [], "signature": [ - "\"host\" | \"database\" | \"package\" | \"session\" | \"registry\" | \"network\" | \"web\" | \"file\" | \"process\" | \"authentication\" | \"configuration\" | \"driver\" | \"iam\" | \"intrusion_detection\" | \"malware\"" + "\"host\" | \"database\" | \"package\" | \"session\" | \"file\" | \"registry\" | \"network\" | \"web\" | \"process\" | \"authentication\" | \"configuration\" | \"driver\" | \"iam\" | \"intrusion_detection\" | \"malware\"" ], "source": { "path": "node_modules/@kbn/logging/target/ecs/event.d.ts", @@ -22288,7 +22346,7 @@ "label": "EcsEventKind", "description": [], "signature": [ - "\"alert\" | \"event\" | \"state\" | \"metric\" | \"signal\" | \"pipeline_error\"" + "\"alert\" | \"metric\" | \"event\" | \"state\" | \"signal\" | \"pipeline_error\"" ], "source": { "path": "node_modules/@kbn/logging/target/ecs/event.d.ts", @@ -22998,21 +23056,21 @@ "plugin": "licensing", "link": { "path": "x-pack/plugins/licensing/server/plugin.ts", - "lineNumber": 109 + "lineNumber": 110 } }, { "plugin": "licensing", "link": { "path": "x-pack/plugins/licensing/server/plugin.ts", - "lineNumber": 151 + "lineNumber": 154 } }, { "plugin": "licensing", "link": { "path": "x-pack/plugins/licensing/server/plugin.ts", - "lineNumber": 180 + "lineNumber": 183 } }, { @@ -23452,35 +23510,35 @@ "plugin": "licensing", "link": { "path": "x-pack/plugins/licensing/server/plugin.ts", - "lineNumber": 102 + "lineNumber": 103 } }, { "plugin": "licensing", "link": { "path": "x-pack/plugins/licensing/server/plugin.ts", - "lineNumber": 103 + "lineNumber": 104 } }, { "plugin": "licensing", "link": { "path": "x-pack/plugins/licensing/server/plugin.ts", - "lineNumber": 111 + "lineNumber": 112 } }, { "plugin": "licensing", "link": { "path": "x-pack/plugins/licensing/server/plugin.ts", - "lineNumber": 114 + "lineNumber": 115 } }, { "plugin": "licensing", "link": { "path": "x-pack/plugins/licensing/server/plugin.ts", - "lineNumber": 115 + "lineNumber": 116 } }, { @@ -23843,7 +23901,7 @@ ], "source": { "path": "src/core/server/plugins/types.ts", - "lineNumber": 444 + "lineNumber": 465 }, "deprecated": false, "initialIsOpen": false @@ -23894,7 +23952,7 @@ "\nA sub-set of {@link UiSettingsParams} exposed to the client-side." ], "signature": [ - "{ type?: \"string\" | \"number\" | \"boolean\" | \"undefined\" | \"color\" | \"json\" | \"image\" | \"select\" | \"array\" | \"markdown\" | undefined; options?: string[] | undefined; description?: string | undefined; name?: string | undefined; order?: number | undefined; value?: unknown; category?: string[] | undefined; metric?: { type: ", + "{ type?: \"string\" | \"number\" | \"boolean\" | \"undefined\" | \"color\" | \"json\" | \"image\" | \"markdown\" | \"select\" | \"array\" | undefined; options?: string[] | undefined; description?: string | undefined; name?: string | undefined; order?: number | undefined; value?: unknown; category?: string[] | undefined; metric?: { type: ", "UiCounterMetricType", "; name: string; } | undefined; optionLabels?: Record | undefined; requiresPageReload?: boolean | undefined; readonly?: boolean | undefined; sensitive?: boolean | undefined; deprecation?: ", "DeprecationSettings", @@ -24029,7 +24087,7 @@ ], "source": { "path": "src/core/server/plugins/types.ts", - "lineNumber": 325 + "lineNumber": 346 }, "deprecated": false, "initialIsOpen": false @@ -24056,7 +24114,7 @@ ], "source": { "path": "src/core/server/index.ts", - "lineNumber": 508 + "lineNumber": 509 }, "deprecated": false, "initialIsOpen": false @@ -24071,7 +24129,7 @@ "\nUI element type to represent the settings." ], "signature": [ - "\"string\" | \"number\" | \"boolean\" | \"undefined\" | \"color\" | \"json\" | \"image\" | \"select\" | \"array\" | \"markdown\"" + "\"string\" | \"number\" | \"boolean\" | \"undefined\" | \"color\" | \"json\" | \"image\" | \"markdown\" | \"select\" | \"array\"" ], "source": { "path": "src/core/types/ui_settings.ts", diff --git a/api_docs/core.mdx b/api_docs/core.mdx index 31889ec1042b8..40cd04f3746d2 100644 --- a/api_docs/core.mdx +++ b/api_docs/core.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'core'] warning: 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. --- - import coreObj from './core.json'; @@ -19,7 +18,7 @@ import coreObj from './core.json'; | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 2273 | 148 | 1052 | 26 | +| 2296 | 148 | 1056 | 30 | ## Client diff --git a/api_docs/core_application.json b/api_docs/core_application.json index ab5fbe560172b..dcae7ae11c3c3 100644 --- a/api_docs/core_application.json +++ b/api_docs/core_application.json @@ -1372,7 +1372,7 @@ "\nReturns the absolute path (or URL) to a given app, including the global base path.\n\nBy default, it returns the absolute path of the application (e.g `/basePath/app/my-app`).\nUse the `absolute` option to generate an absolute url instead (e.g `http://host:port/basePath/app/my-app`)\n\nNote that when generating absolute urls, the origin (protocol, host and port) are determined from the browser's current location.\n" ], "signature": [ - "(appId: string, options?: { path?: string | undefined; absolute?: boolean | undefined; } | undefined) => string" + "(appId: string, options?: { path?: string | undefined; absolute?: boolean | undefined; deepLinkId?: string | undefined; } | undefined) => string" ], "source": { "path": "src/core/public/application/types.ts", @@ -1392,7 +1392,7 @@ ], "source": { "path": "src/core/public/application/types.ts", - "lineNumber": 783 + "lineNumber": 784 }, "deprecated": false, "isRequired": true @@ -1406,7 +1406,7 @@ "description": [], "source": { "path": "src/core/public/application/types.ts", - "lineNumber": 783 + "lineNumber": 785 }, "deprecated": false, "children": [ @@ -1422,7 +1422,7 @@ ], "source": { "path": "src/core/public/application/types.ts", - "lineNumber": 783 + "lineNumber": 785 }, "deprecated": false }, @@ -1438,7 +1438,23 @@ ], "source": { "path": "src/core/public/application/types.ts", - "lineNumber": 783 + "lineNumber": 785 + }, + "deprecated": false + }, + { + "parentPluginId": "core", + "id": "def-public.ApplicationStart.getUrlForApp.$2.options.deepLinkId", + "type": "string", + "tags": [], + "label": "deepLinkId", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "src/core/public/application/types.ts", + "lineNumber": 785 }, "deprecated": false } @@ -1462,7 +1478,7 @@ ], "source": { "path": "src/core/public/application/types.ts", - "lineNumber": 788 + "lineNumber": 791 }, "deprecated": false } @@ -1570,7 +1586,7 @@ "plugin": "fleet", "link": { "path": "x-pack/plugins/fleet/public/applications/fleet/index.tsx", - "lineNumber": 67 + "lineNumber": 69 } }, { @@ -1677,7 +1693,7 @@ "plugin": "dashboard", "link": { "path": "src/plugins/dashboard/public/plugin.tsx", - "lineNumber": 299 + "lineNumber": 315 } }, { @@ -1705,35 +1721,35 @@ "plugin": "lens", "link": { "path": "x-pack/plugins/lens/public/app_plugin/types.ts", - "lineNumber": 44 + "lineNumber": 47 } }, { "plugin": "lens", "link": { "path": "x-pack/plugins/lens/public/app_plugin/types.ts", - "lineNumber": 72 + "lineNumber": 74 } }, { "plugin": "lens", "link": { "path": "x-pack/plugins/lens/public/app_plugin/mounter.tsx", - "lineNumber": 219 + "lineNumber": 209 } }, { "plugin": "ml", "link": { "path": "x-pack/plugins/ml/public/application/app.tsx", - "lineNumber": 131 + "lineNumber": 135 } }, { "plugin": "securitySolution", "link": { "path": "x-pack/plugins/security_solution/public/app/index.tsx", - "lineNumber": 17 + "lineNumber": 20 } }, { @@ -2267,28 +2283,56 @@ "plugin": "securitySolution", "link": { "path": "x-pack/plugins/security_solution/public/timelines/components/flyout/index.tsx", - "lineNumber": 14 + "lineNumber": 13 } }, { "plugin": "securitySolution", "link": { "path": "x-pack/plugins/security_solution/public/timelines/components/flyout/index.tsx", - "lineNumber": 30 + "lineNumber": 23 + } + }, + { + "plugin": "securitySolution", + "link": { + "path": "x-pack/plugins/security_solution/public/app/home/template_wrapper/bottom_bar/index.tsx", + "lineNumber": 13 + } + }, + { + "plugin": "securitySolution", + "link": { + "path": "x-pack/plugins/security_solution/public/app/home/template_wrapper/bottom_bar/index.tsx", + "lineNumber": 25 + } + }, + { + "plugin": "securitySolution", + "link": { + "path": "x-pack/plugins/security_solution/public/app/home/template_wrapper/index.tsx", + "lineNumber": 12 + } + }, + { + "plugin": "securitySolution", + "link": { + "path": "x-pack/plugins/security_solution/public/app/home/template_wrapper/index.tsx", + "lineNumber": 66 } }, { "plugin": "securitySolution", "link": { "path": "x-pack/plugins/security_solution/public/app/home/index.tsx", - "lineNumber": 27 + "lineNumber": 12 } }, { "plugin": "securitySolution", "link": { "path": "x-pack/plugins/security_solution/public/app/home/index.tsx", - "lineNumber": 44 + "lineNumber": 26 } }, { @@ -2316,14 +2360,14 @@ "plugin": "securitySolution", "link": { "path": "x-pack/plugins/security_solution/public/app/app.tsx", - "lineNumber": 33 + "lineNumber": 32 } }, { "plugin": "securitySolution", "link": { "path": "x-pack/plugins/security_solution/public/app/app.tsx", - "lineNumber": 73 + "lineNumber": 81 } } ], diff --git a/api_docs/core_application.mdx b/api_docs/core_application.mdx index ce16534334632..6f6a99ceba26d 100644 --- a/api_docs/core_application.mdx +++ b/api_docs/core_application.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'core.application'] warning: 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. --- - import coreApplicationObj from './core_application.json'; @@ -19,7 +18,7 @@ import coreApplicationObj from './core_application.json'; | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 2273 | 148 | 1052 | 26 | +| 2296 | 148 | 1056 | 30 | ## Client diff --git a/api_docs/core_chrome.mdx b/api_docs/core_chrome.mdx index 3fbc87ad30fff..6edaaa8054250 100644 --- a/api_docs/core_chrome.mdx +++ b/api_docs/core_chrome.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'core.chrome'] warning: 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. --- - import coreChromeObj from './core_chrome.json'; @@ -19,7 +18,7 @@ import coreChromeObj from './core_chrome.json'; | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 2273 | 148 | 1052 | 26 | +| 2296 | 148 | 1056 | 30 | ## Client diff --git a/api_docs/core_http.json b/api_docs/core_http.json index 7bedeac3baf79..9e58ad14528f6 100644 --- a/api_docs/core_http.json +++ b/api_docs/core_http.json @@ -8615,7 +8615,7 @@ "plugin": "security", "link": { "path": "x-pack/plugins/security/server/saved_objects/index.ts", - "lineNumber": 34 + "lineNumber": 47 } } ], @@ -12239,7 +12239,7 @@ "\nThe set of supported parseable Content-Types" ], "signature": [ - "\"application/json\" | \"application/*+json\" | \"application/octet-stream\" | \"application/x-www-form-urlencoded\" | \"multipart/form-data\" | \"text/*\"" + "\"application/json\" | \"multipart/form-data\" | \"application/*+json\" | \"application/octet-stream\" | \"application/x-www-form-urlencoded\" | \"text/*\"" ], "source": { "path": "src/core/server/http/router/route.ts", diff --git a/api_docs/core_http.mdx b/api_docs/core_http.mdx index 4f15e1a1ce90c..448c05a91a292 100644 --- a/api_docs/core_http.mdx +++ b/api_docs/core_http.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'core.http'] warning: 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. --- - import coreHttpObj from './core_http.json'; @@ -19,7 +18,7 @@ import coreHttpObj from './core_http.json'; | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 2273 | 148 | 1052 | 26 | +| 2296 | 148 | 1056 | 30 | ## Client diff --git a/api_docs/core_saved_objects.json b/api_docs/core_saved_objects.json index bd7a9cb1ccb08..81680e54f1148 100644 --- a/api_docs/core_saved_objects.json +++ b/api_docs/core_saved_objects.json @@ -13,7 +13,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 166 + "lineNumber": 170 }, "deprecated": false, "children": [ @@ -47,7 +47,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 221 + "lineNumber": 225 }, "deprecated": false, "children": [ @@ -63,7 +63,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 222 + "lineNumber": 226 }, "deprecated": false, "isRequired": true @@ -80,7 +80,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 223 + "lineNumber": 227 }, "deprecated": false, "isRequired": true @@ -103,7 +103,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 224 + "lineNumber": 228 }, "deprecated": false, "isRequired": true @@ -151,7 +151,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 256 + "lineNumber": 260 }, "deprecated": false, "children": [ @@ -176,7 +176,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 257 + "lineNumber": 261 }, "deprecated": false, "isRequired": true @@ -199,7 +199,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 258 + "lineNumber": 262 }, "deprecated": false, "isRequired": true @@ -225,7 +225,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 284 + "lineNumber": 288 }, "deprecated": false, "children": [ @@ -241,7 +241,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 285 + "lineNumber": 289 }, "deprecated": false, "isRequired": true @@ -258,7 +258,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 286 + "lineNumber": 290 }, "deprecated": false, "isRequired": true @@ -276,7 +276,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 287 + "lineNumber": 291 }, "deprecated": false, "isRequired": false @@ -322,7 +322,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 314 + "lineNumber": 318 }, "deprecated": false, "children": [ @@ -346,7 +346,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 315 + "lineNumber": 319 }, "deprecated": false, "isRequired": true @@ -378,7 +378,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 381 + "lineNumber": 385 }, "deprecated": false, "children": [ @@ -394,7 +394,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 381 + "lineNumber": 385 }, "deprecated": false, "isRequired": true @@ -411,7 +411,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 381 + "lineNumber": 385 }, "deprecated": false, "isRequired": true @@ -443,7 +443,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 404 + "lineNumber": 408 }, "deprecated": false, "children": [ @@ -461,7 +461,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 404 + "lineNumber": 408 }, "deprecated": false, "isRequired": true @@ -471,6 +471,71 @@ "The saved objects with the given type and ids requested" ] }, + { + "parentPluginId": "core", + "id": "def-public.SavedObjectsClient.resolve", + "type": "Function", + "tags": [], + "label": "resolve", + "description": [ + "\nResolves a single object\n" + ], + "signature": [ + "(type: string, id: string) => Promise<", + { + "pluginId": "core", + "scope": "public", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-public.ResolvedSimpleSavedObject", + "text": "ResolvedSimpleSavedObject" + }, + ">" + ], + "source": { + "path": "src/core/public/saved_objects/saved_objects_client.ts", + "lineNumber": 435 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "core", + "id": "def-public.SavedObjectsClient.resolve.$1", + "type": "string", + "tags": [], + "label": "type", + "description": [], + "signature": [ + "string" + ], + "source": { + "path": "src/core/public/saved_objects/saved_objects_client.ts", + "lineNumber": 436 + }, + "deprecated": false, + "isRequired": true + }, + { + "parentPluginId": "core", + "id": "def-public.SavedObjectsClient.resolve.$2", + "type": "string", + "tags": [], + "label": "id", + "description": [], + "signature": [ + "string" + ], + "source": { + "path": "src/core/public/saved_objects/saved_objects_client.ts", + "lineNumber": 437 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [ + "The resolve result for the saved object for the given type and id." + ] + }, { "parentPluginId": "core", "id": "def-public.SavedObjectsClient.update", @@ -504,7 +569,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 435 + "lineNumber": 462 }, "deprecated": false, "children": [ @@ -520,7 +585,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 436 + "lineNumber": 463 }, "deprecated": false, "isRequired": true @@ -537,7 +602,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 437 + "lineNumber": 464 }, "deprecated": false, "isRequired": true @@ -554,7 +619,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 438 + "lineNumber": 465 }, "deprecated": false, "isRequired": true @@ -578,7 +643,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 439 + "lineNumber": 466 }, "deprecated": false, "isRequired": true @@ -616,7 +681,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 467 + "lineNumber": 494 }, "deprecated": false, "children": [ @@ -641,7 +706,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 467 + "lineNumber": 494 }, "deprecated": false, "isRequired": true @@ -804,6 +869,24 @@ }, "deprecated": false }, + { + "parentPluginId": "core", + "id": "def-public.SimpleSavedObject.namespaces", + "type": "Array", + "tags": [], + "label": "namespaces", + "description": [ + "\nSpace(s) that this saved object exists in. This attribute is not used for \"global\" saved object types which are registered with\n`namespaceType: 'agnostic'`." + ], + "signature": [ + "string[] | undefined" + ], + "source": { + "path": "src/core/public/saved_objects/simple_saved_object.ts", + "lineNumber": 37 + }, + "deprecated": false + }, { "parentPluginId": "core", "id": "def-public.SimpleSavedObject.Unnamed", @@ -816,7 +899,7 @@ ], "source": { "path": "src/core/public/saved_objects/simple_saved_object.ts", - "lineNumber": 34 + "lineNumber": 39 }, "deprecated": false, "children": [ @@ -836,11 +919,11 @@ "section": "def-public.SavedObjectsClient", "text": "SavedObjectsClient" }, - ", \"get\" | \"delete\" | \"create\" | \"bulkCreate\" | \"find\" | \"bulkGet\" | \"update\" | \"bulkUpdate\">" + ", \"get\" | \"delete\" | \"create\" | \"bulkCreate\" | \"find\" | \"bulkGet\" | \"resolve\" | \"update\" | \"bulkUpdate\">" ], "source": { "path": "src/core/public/saved_objects/simple_saved_object.ts", - "lineNumber": 35 + "lineNumber": 40 }, "deprecated": false, "isRequired": true @@ -850,7 +933,7 @@ "id": "def-public.SimpleSavedObject.Unnamed.$2", "type": "Object", "tags": [], - "label": "{\n id,\n type,\n version,\n attributes,\n error,\n references,\n migrationVersion,\n coreMigrationVersion,\n }", + "label": "{\n id,\n type,\n version,\n attributes,\n error,\n references,\n migrationVersion,\n coreMigrationVersion,\n namespaces,\n }", "description": [], "signature": [ "SavedObject", @@ -858,7 +941,7 @@ ], "source": { "path": "src/core/public/saved_objects/simple_saved_object.ts", - "lineNumber": 36 + "lineNumber": 41 }, "deprecated": false, "isRequired": true @@ -878,7 +961,7 @@ ], "source": { "path": "src/core/public/saved_objects/simple_saved_object.ts", - "lineNumber": 59 + "lineNumber": 66 }, "deprecated": false, "children": [ @@ -894,7 +977,7 @@ ], "source": { "path": "src/core/public/saved_objects/simple_saved_object.ts", - "lineNumber": 59 + "lineNumber": 66 }, "deprecated": false, "isRequired": true @@ -914,7 +997,7 @@ ], "source": { "path": "src/core/public/saved_objects/simple_saved_object.ts", - "lineNumber": 63 + "lineNumber": 70 }, "deprecated": false, "children": [ @@ -930,7 +1013,7 @@ ], "source": { "path": "src/core/public/saved_objects/simple_saved_object.ts", - "lineNumber": 63 + "lineNumber": 70 }, "deprecated": false, "isRequired": true @@ -947,7 +1030,7 @@ ], "source": { "path": "src/core/public/saved_objects/simple_saved_object.ts", - "lineNumber": 63 + "lineNumber": 70 }, "deprecated": false, "isRequired": true @@ -967,7 +1050,7 @@ ], "source": { "path": "src/core/public/saved_objects/simple_saved_object.ts", - "lineNumber": 67 + "lineNumber": 74 }, "deprecated": false, "children": [ @@ -983,7 +1066,7 @@ ], "source": { "path": "src/core/public/saved_objects/simple_saved_object.ts", - "lineNumber": 67 + "lineNumber": 74 }, "deprecated": false, "isRequired": true @@ -1011,7 +1094,7 @@ ], "source": { "path": "src/core/public/saved_objects/simple_saved_object.ts", - "lineNumber": 71 + "lineNumber": 78 }, "deprecated": false, "children": [], @@ -1029,7 +1112,7 @@ ], "source": { "path": "src/core/public/saved_objects/simple_saved_object.ts", - "lineNumber": 85 + "lineNumber": 92 }, "deprecated": false, "children": [], @@ -1041,6 +1124,95 @@ ], "functions": [], "interfaces": [ + { + "parentPluginId": "core", + "id": "def-public.ResolvedSimpleSavedObject", + "type": "Interface", + "tags": [], + "label": "ResolvedSimpleSavedObject", + "description": [ + "\nThis interface is a very simple wrapper for SavedObjects resolved from the server\nwith the {@link SavedObjectsClient}.\n" + ], + "signature": [ + { + "pluginId": "core", + "scope": "public", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-public.ResolvedSimpleSavedObject", + "text": "ResolvedSimpleSavedObject" + }, + "" + ], + "source": { + "path": "src/core/public/saved_objects/types.ts", + "lineNumber": 18 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "core", + "id": "def-public.ResolvedSimpleSavedObject.savedObject", + "type": "Object", + "tags": [], + "label": "savedObject", + "description": [ + "\nThe saved object that was found." + ], + "signature": [ + { + "pluginId": "core", + "scope": "public", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-public.SimpleSavedObject", + "text": "SimpleSavedObject" + }, + "" + ], + "source": { + "path": "src/core/public/saved_objects/types.ts", + "lineNumber": 22 + }, + "deprecated": false + }, + { + "parentPluginId": "core", + "id": "def-public.ResolvedSimpleSavedObject.outcome", + "type": "CompoundType", + "tags": [], + "label": "outcome", + "description": [ + "\nThe outcome for a successful `resolve` call is one of the following values:\n\n * `'exactMatch'` -- One document exactly matched the given ID.\n * `'aliasMatch'` -- One document with a legacy URL alias matched the given ID; in this case the `saved_object.id` field is different\n than the given ID.\n * `'conflict'` -- Two documents matched the given ID, one was an exact match and another with a legacy URL alias; in this case the\n `saved_object` object is the exact match, and the `saved_object.id` field is the same as the given ID." + ], + "signature": [ + "\"conflict\" | \"exactMatch\" | \"aliasMatch\"" + ], + "source": { + "path": "src/core/public/saved_objects/types.ts", + "lineNumber": 32 + }, + "deprecated": false + }, + { + "parentPluginId": "core", + "id": "def-public.ResolvedSimpleSavedObject.aliasTargetId", + "type": "string", + "tags": [], + "label": "aliasTargetId", + "description": [ + "\nThe ID of the object that the legacy URL alias points to. This is only defined when the outcome is `'aliasMatch'` or `'conflict'`." + ], + "signature": [ + "string | undefined" + ], + "source": { + "path": "src/core/public/saved_objects/types.ts", + "lineNumber": 36 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, { "parentPluginId": "core", "id": "def-public.SavedObjectsBatchResponse", @@ -1060,7 +1232,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 87 + "lineNumber": 91 }, "deprecated": false, "children": [ @@ -1083,7 +1255,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 88 + "lineNumber": 92 }, "deprecated": false } @@ -1116,7 +1288,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 54 + "lineNumber": 58 }, "deprecated": false, "children": [ @@ -1129,7 +1301,7 @@ "description": [], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 55 + "lineNumber": 59 }, "deprecated": false }, @@ -1145,7 +1317,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 56 + "lineNumber": 60 }, "deprecated": false } @@ -1161,7 +1333,7 @@ "description": [], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 60 + "lineNumber": 64 }, "deprecated": false, "children": [ @@ -1179,7 +1351,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 62 + "lineNumber": 66 }, "deprecated": false } @@ -1205,7 +1377,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 66 + "lineNumber": 70 }, "deprecated": false, "children": [ @@ -1218,7 +1390,7 @@ "description": [], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 67 + "lineNumber": 71 }, "deprecated": false }, @@ -1231,7 +1403,7 @@ "description": [], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 68 + "lineNumber": 72 }, "deprecated": false }, @@ -1247,7 +1419,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 69 + "lineNumber": 73 }, "deprecated": false }, @@ -1263,7 +1435,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 70 + "lineNumber": 74 }, "deprecated": false }, @@ -1280,7 +1452,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 71 + "lineNumber": 75 }, "deprecated": false } @@ -1296,7 +1468,7 @@ "description": [], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 75 + "lineNumber": 79 }, "deprecated": false, "children": [ @@ -1312,7 +1484,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 76 + "lineNumber": 80 }, "deprecated": false } @@ -1328,7 +1500,7 @@ "description": [], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 34 + "lineNumber": 38 }, "deprecated": false, "children": [ @@ -1346,7 +1518,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 38 + "lineNumber": 42 }, "deprecated": false }, @@ -1364,7 +1536,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 40 + "lineNumber": 44 }, "deprecated": false }, @@ -1383,7 +1555,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 42 + "lineNumber": 46 }, "deprecated": false }, @@ -1401,7 +1573,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 44 + "lineNumber": 48 }, "deprecated": false }, @@ -1418,7 +1590,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 45 + "lineNumber": 49 }, "deprecated": false } @@ -1454,7 +1626,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 105 + "lineNumber": 109 }, "deprecated": false, "children": [ @@ -1470,7 +1642,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 107 + "lineNumber": 111 }, "deprecated": false }, @@ -1483,7 +1655,7 @@ "description": [], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 108 + "lineNumber": 112 }, "deprecated": false }, @@ -1496,7 +1668,7 @@ "description": [], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 109 + "lineNumber": 113 }, "deprecated": false }, @@ -1509,7 +1681,7 @@ "description": [], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 110 + "lineNumber": 114 }, "deprecated": false } @@ -1613,7 +1785,15 @@ "section": "def-public.SavedObjectsBatchResponse", "text": "SavedObjectsBatchResponse" }, - ">; update: (type: string, id: string, attributes: T, { version, references, upsert }?: ", + ">; resolve: (type: string, id: string) => Promise<", + { + "pluginId": "core", + "scope": "public", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-public.ResolvedSimpleSavedObject", + "text": "ResolvedSimpleSavedObject" + }, + ">; update: (type: string, id: string, attributes: T, { version, references, upsert }?: ", { "pluginId": "core", "scope": "public", @@ -1675,7 +1855,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 80 + "lineNumber": 84 }, "deprecated": false, "children": [ @@ -1691,7 +1871,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 81 + "lineNumber": 85 }, "deprecated": false }, @@ -1707,7 +1887,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 82 + "lineNumber": 86 }, "deprecated": false }, @@ -1724,7 +1904,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 83 + "lineNumber": 87 }, "deprecated": false } @@ -1818,7 +1998,15 @@ "section": "def-public.SavedObjectsBatchResponse", "text": "SavedObjectsBatchResponse" }, - ">; update: (type: string, id: string, attributes: T, { version, references, upsert }?: ", + ">; resolve: (type: string, id: string) => Promise<", + { + "pluginId": "core", + "scope": "public", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-public.ResolvedSimpleSavedObject", + "text": "ResolvedSimpleSavedObject" + }, + ">; update: (type: string, id: string, attributes: T, { version, references, upsert }?: ", { "pluginId": "core", "scope": "public", @@ -1854,7 +2042,7 @@ ], "source": { "path": "src/core/public/saved_objects/saved_objects_client.ts", - "lineNumber": 139 + "lineNumber": 143 }, "deprecated": false, "initialIsOpen": false @@ -1875,7 +2063,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 371 + "lineNumber": 382 }, "deprecated": false, "children": [ @@ -1898,7 +2086,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 372 + "lineNumber": 383 }, "deprecated": false }, @@ -1921,7 +2109,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 373 + "lineNumber": 384 }, "deprecated": false }, @@ -1949,7 +2137,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 389 + "lineNumber": 400 }, "deprecated": false, "children": [ @@ -1965,7 +2153,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 389 + "lineNumber": 400 }, "deprecated": false, "isRequired": true @@ -1982,7 +2170,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 389 + "lineNumber": 400 }, "deprecated": false, "isRequired": true @@ -2006,7 +2194,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 389 + "lineNumber": 400 }, "deprecated": false, "isRequired": false @@ -2052,7 +2240,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 399 + "lineNumber": 410 }, "deprecated": false, "children": [ @@ -2075,7 +2263,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 400 + "lineNumber": 411 }, "deprecated": false, "isRequired": true @@ -2099,7 +2287,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 401 + "lineNumber": 412 }, "deprecated": false, "isRequired": false @@ -2145,7 +2333,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 413 + "lineNumber": 424 }, "deprecated": false, "children": [ @@ -2168,7 +2356,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 414 + "lineNumber": 425 }, "deprecated": false, "isRequired": true @@ -2191,7 +2379,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 415 + "lineNumber": 426 }, "deprecated": false, "isRequired": true @@ -2221,7 +2409,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 427 + "lineNumber": 438 }, "deprecated": false, "children": [ @@ -2237,7 +2425,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 427 + "lineNumber": 438 }, "deprecated": false, "isRequired": true @@ -2254,7 +2442,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 427 + "lineNumber": 438 }, "deprecated": false, "isRequired": true @@ -2277,7 +2465,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 427 + "lineNumber": 438 }, "deprecated": false, "isRequired": true @@ -2315,7 +2503,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 436 + "lineNumber": 447 }, "deprecated": false, "children": [ @@ -2337,7 +2525,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 437 + "lineNumber": 448 }, "deprecated": false, "isRequired": true @@ -2383,7 +2571,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 453 + "lineNumber": 464 }, "deprecated": false, "children": [ @@ -2408,7 +2596,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 454 + "lineNumber": 465 }, "deprecated": false, "isRequired": true @@ -2431,7 +2619,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 455 + "lineNumber": 466 }, "deprecated": false, "isRequired": true @@ -2463,7 +2651,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 467 + "lineNumber": 478 }, "deprecated": false, "children": [ @@ -2481,7 +2669,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 468 + "lineNumber": 479 }, "deprecated": false, "isRequired": true @@ -2500,7 +2688,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 469 + "lineNumber": 480 }, "deprecated": false, "isRequired": true @@ -2523,7 +2711,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 470 + "lineNumber": 481 }, "deprecated": false, "isRequired": true @@ -2561,7 +2749,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 482 + "lineNumber": 493 }, "deprecated": false, "children": [ @@ -2579,7 +2767,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 483 + "lineNumber": 494 }, "deprecated": false, "isRequired": true @@ -2598,7 +2786,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 484 + "lineNumber": 495 }, "deprecated": false, "isRequired": true @@ -2621,7 +2809,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 485 + "lineNumber": 496 }, "deprecated": false, "isRequired": true @@ -2659,7 +2847,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 497 + "lineNumber": 508 }, "deprecated": false, "children": [ @@ -2675,7 +2863,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 498 + "lineNumber": 509 }, "deprecated": false, "isRequired": true @@ -2692,7 +2880,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 499 + "lineNumber": 510 }, "deprecated": false, "isRequired": true @@ -2709,7 +2897,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 500 + "lineNumber": 511 }, "deprecated": false, "isRequired": true @@ -2733,7 +2921,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 501 + "lineNumber": 512 }, "deprecated": false, "isRequired": true @@ -2779,7 +2967,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 511 + "lineNumber": 522 }, "deprecated": false, "children": [ @@ -2802,7 +2990,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 512 + "lineNumber": 523 }, "deprecated": false, "isRequired": true @@ -2826,7 +3014,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 513 + "lineNumber": 524 }, "deprecated": false, "isRequired": false @@ -2864,7 +3052,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 521 + "lineNumber": 532 }, "deprecated": false, "children": [ @@ -2880,7 +3068,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 522 + "lineNumber": 533 }, "deprecated": false, "isRequired": true @@ -2897,7 +3085,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 523 + "lineNumber": 534 }, "deprecated": false, "isRequired": true @@ -2921,7 +3109,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 524 + "lineNumber": 535 }, "deprecated": false, "isRequired": false @@ -2959,7 +3147,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 537 + "lineNumber": 548 }, "deprecated": false, "children": [ @@ -2975,7 +3163,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 538 + "lineNumber": 549 }, "deprecated": false, "isRequired": true @@ -2998,7 +3186,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 539 + "lineNumber": 550 }, "deprecated": false, "isRequired": true @@ -3036,7 +3224,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 552 + "lineNumber": 563 }, "deprecated": false, "children": [ @@ -3052,7 +3240,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 552 + "lineNumber": 563 }, "deprecated": false, "isRequired": true @@ -3076,7 +3264,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 552 + "lineNumber": 563 }, "deprecated": false, "isRequired": false @@ -3122,7 +3310,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 601 + "lineNumber": 612 }, "deprecated": false, "children": [ @@ -3146,7 +3334,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 602 + "lineNumber": 613 }, "deprecated": false, "isRequired": true @@ -3170,7 +3358,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 603 + "lineNumber": 614 }, "deprecated": false, "isRequired": false @@ -3216,7 +3404,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 618 + "lineNumber": 629 }, "deprecated": false, "children": [ @@ -3239,7 +3427,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 619 + "lineNumber": 630 }, "deprecated": false, "isRequired": true @@ -3263,7 +3451,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 620 + "lineNumber": 631 }, "deprecated": false, "isRequired": false @@ -3309,7 +3497,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 633 + "lineNumber": 644 }, "deprecated": false, "children": [ @@ -3332,7 +3520,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 634 + "lineNumber": 645 }, "deprecated": false, "isRequired": true @@ -3349,7 +3537,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 635 + "lineNumber": 646 }, "deprecated": false, "isRequired": true @@ -3366,7 +3554,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 636 + "lineNumber": 647 }, "deprecated": false, "isRequired": true @@ -3390,7 +3578,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 637 + "lineNumber": 648 }, "deprecated": false, "isRequired": false @@ -4759,7 +4947,7 @@ "description": [], "source": { "path": "src/core/server/saved_objects/export/saved_objects_exporter.ts", - "lineNumber": 35 + "lineNumber": 34 }, "deprecated": false, "children": [ @@ -5073,6 +5261,19 @@ }, "; }" ], + "source": { + "path": "src/core/server/saved_objects/export/saved_objects_exporter.ts", + "lineNumber": 35 + }, + "deprecated": false + }, + { + "parentPluginId": "core", + "id": "def-server.SavedObjectsExporter.exportSizeLimit", + "type": "number", + "tags": [], + "label": "#exportSizeLimit", + "description": [], "source": { "path": "src/core/server/saved_objects/export/saved_objects_exporter.ts", "lineNumber": 36 @@ -5081,21 +5282,45 @@ }, { "parentPluginId": "core", - "id": "def-server.SavedObjectsExporter.exportTransforms", + "id": "def-server.SavedObjectsExporter.typeRegistry", "type": "Object", "tags": [], - "label": "#exportTransforms", + "label": "#typeRegistry", "description": [], "signature": [ - "{ [x: string]: ", + "{ getType: (type: string) => ", { "pluginId": "core", "scope": "server", "docId": "kibCoreSavedObjectsPluginApi", - "section": "def-server.SavedObjectsExportTransform", - "text": "SavedObjectsExportTransform" + "section": "def-server.SavedObjectsType", + "text": "SavedObjectsType" }, - "; }" + " | undefined; getVisibleTypes: () => ", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsType", + "text": "SavedObjectsType" + }, + "[]; getAllTypes: () => ", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsType", + "text": "SavedObjectsType" + }, + "[]; getImportableAndExportableTypes: () => ", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsType", + "text": "SavedObjectsType" + }, + "[]; isNamespaceAgnostic: (type: string) => boolean; isSingleNamespace: (type: string) => boolean; isMultiNamespace: (type: string) => boolean; isShareable: (type: string) => boolean; isHidden: (type: string) => boolean; getIndex: (type: string) => string | undefined; isImportableAndExportable: (type: string) => boolean; }" ], "source": { "path": "src/core/server/saved_objects/export/saved_objects_exporter.ts", @@ -5103,19 +5328,6 @@ }, "deprecated": false }, - { - "parentPluginId": "core", - "id": "def-server.SavedObjectsExporter.exportSizeLimit", - "type": "number", - "tags": [], - "label": "#exportSizeLimit", - "description": [], - "source": { - "path": "src/core/server/saved_objects/export/saved_objects_exporter.ts", - "lineNumber": 38 - }, - "deprecated": false - }, { "parentPluginId": "core", "id": "def-server.SavedObjectsExporter.log", @@ -5128,7 +5340,7 @@ ], "source": { "path": "src/core/server/saved_objects/export/saved_objects_exporter.ts", - "lineNumber": 39 + "lineNumber": 38 }, "deprecated": false }, @@ -5144,7 +5356,7 @@ ], "source": { "path": "src/core/server/saved_objects/export/saved_objects_exporter.ts", - "lineNumber": 41 + "lineNumber": 40 }, "deprecated": false, "children": [ @@ -5157,7 +5369,7 @@ "description": [], "source": { "path": "src/core/server/saved_objects/export/saved_objects_exporter.ts", - "lineNumber": 46 + "lineNumber": 45 }, "deprecated": false, "children": [ @@ -5473,7 +5685,7 @@ ], "source": { "path": "src/core/server/saved_objects/export/saved_objects_exporter.ts", - "lineNumber": 47 + "lineNumber": 46 }, "deprecated": false }, @@ -5493,7 +5705,7 @@ "section": "def-server.SavedObjectsType", "text": "SavedObjectsType" }, - " | undefined; getVisibleTypes: () => ", + " | undefined; getVisibleTypes: () => ", { "pluginId": "core", "scope": "server", @@ -5501,7 +5713,7 @@ "section": "def-server.SavedObjectsType", "text": "SavedObjectsType" }, - "[]; getAllTypes: () => ", + "[]; getAllTypes: () => ", { "pluginId": "core", "scope": "server", @@ -5509,7 +5721,7 @@ "section": "def-server.SavedObjectsType", "text": "SavedObjectsType" }, - "[]; getImportableAndExportableTypes: () => ", + "[]; getImportableAndExportableTypes: () => ", { "pluginId": "core", "scope": "server", @@ -5517,11 +5729,11 @@ "section": "def-server.SavedObjectsType", "text": "SavedObjectsType" }, - "[]; isNamespaceAgnostic: (type: string) => boolean; isSingleNamespace: (type: string) => boolean; isMultiNamespace: (type: string) => boolean; isShareable: (type: string) => boolean; isHidden: (type: string) => boolean; getIndex: (type: string) => string | undefined; isImportableAndExportable: (type: string) => boolean; }" + "[]; isNamespaceAgnostic: (type: string) => boolean; isSingleNamespace: (type: string) => boolean; isMultiNamespace: (type: string) => boolean; isShareable: (type: string) => boolean; isHidden: (type: string) => boolean; getIndex: (type: string) => string | undefined; isImportableAndExportable: (type: string) => boolean; }" ], "source": { "path": "src/core/server/saved_objects/export/saved_objects_exporter.ts", - "lineNumber": 48 + "lineNumber": 47 }, "deprecated": false }, @@ -5534,7 +5746,7 @@ "description": [], "source": { "path": "src/core/server/saved_objects/export/saved_objects_exporter.ts", - "lineNumber": 49 + "lineNumber": 48 }, "deprecated": false }, @@ -5550,7 +5762,7 @@ ], "source": { "path": "src/core/server/saved_objects/export/saved_objects_exporter.ts", - "lineNumber": 50 + "lineNumber": 49 }, "deprecated": false } @@ -5585,7 +5797,7 @@ ], "source": { "path": "src/core/server/saved_objects/export/saved_objects_exporter.ts", - "lineNumber": 73 + "lineNumber": 64 }, "deprecated": false, "children": [ @@ -5607,7 +5819,7 @@ ], "source": { "path": "src/core/server/saved_objects/export/saved_objects_exporter.ts", - "lineNumber": 73 + "lineNumber": 64 }, "deprecated": false, "isRequired": true @@ -5641,7 +5853,7 @@ ], "source": { "path": "src/core/server/saved_objects/export/saved_objects_exporter.ts", - "lineNumber": 92 + "lineNumber": 83 }, "deprecated": false, "children": [ @@ -5663,7 +5875,7 @@ ], "source": { "path": "src/core/server/saved_objects/export/saved_objects_exporter.ts", - "lineNumber": 92 + "lineNumber": 83 }, "deprecated": false, "isRequired": true @@ -6314,7 +6526,7 @@ "section": "def-server.SavedObjectsType", "text": "SavedObjectsType" }, - " | undefined; getVisibleTypes: () => ", + " | undefined; getVisibleTypes: () => ", { "pluginId": "core", "scope": "server", @@ -6322,7 +6534,7 @@ "section": "def-server.SavedObjectsType", "text": "SavedObjectsType" }, - "[]; getAllTypes: () => ", + "[]; getAllTypes: () => ", { "pluginId": "core", "scope": "server", @@ -6330,7 +6542,7 @@ "section": "def-server.SavedObjectsType", "text": "SavedObjectsType" }, - "[]; getImportableAndExportableTypes: () => ", + "[]; getImportableAndExportableTypes: () => ", { "pluginId": "core", "scope": "server", @@ -6338,7 +6550,7 @@ "section": "def-server.SavedObjectsType", "text": "SavedObjectsType" }, - "[]; isNamespaceAgnostic: (type: string) => boolean; isSingleNamespace: (type: string) => boolean; isMultiNamespace: (type: string) => boolean; isShareable: (type: string) => boolean; isHidden: (type: string) => boolean; getIndex: (type: string) => string | undefined; isImportableAndExportable: (type: string) => boolean; }" + "[]; isNamespaceAgnostic: (type: string) => boolean; isSingleNamespace: (type: string) => boolean; isMultiNamespace: (type: string) => boolean; isShareable: (type: string) => boolean; isHidden: (type: string) => boolean; getIndex: (type: string) => string | undefined; isImportableAndExportable: (type: string) => boolean; }" ], "source": { "path": "src/core/server/saved_objects/import/saved_objects_importer.ts", @@ -6744,7 +6956,7 @@ "section": "def-server.SavedObjectsType", "text": "SavedObjectsType" }, - " | undefined; getVisibleTypes: () => ", + " | undefined; getVisibleTypes: () => ", { "pluginId": "core", "scope": "server", @@ -6752,7 +6964,7 @@ "section": "def-server.SavedObjectsType", "text": "SavedObjectsType" }, - "[]; getAllTypes: () => ", + "[]; getAllTypes: () => ", { "pluginId": "core", "scope": "server", @@ -6760,7 +6972,7 @@ "section": "def-server.SavedObjectsType", "text": "SavedObjectsType" }, - "[]; getImportableAndExportableTypes: () => ", + "[]; getImportableAndExportableTypes: () => ", { "pluginId": "core", "scope": "server", @@ -6768,7 +6980,7 @@ "section": "def-server.SavedObjectsType", "text": "SavedObjectsType" }, - "[]; isNamespaceAgnostic: (type: string) => boolean; isSingleNamespace: (type: string) => boolean; isMultiNamespace: (type: string) => boolean; isShareable: (type: string) => boolean; isHidden: (type: string) => boolean; getIndex: (type: string) => string | undefined; isImportableAndExportable: (type: string) => boolean; }" + "[]; isNamespaceAgnostic: (type: string) => boolean; isSingleNamespace: (type: string) => boolean; isMultiNamespace: (type: string) => boolean; isShareable: (type: string) => boolean; isHidden: (type: string) => boolean; getIndex: (type: string) => string | undefined; isImportableAndExportable: (type: string) => boolean; }" ], "source": { "path": "src/core/server/saved_objects/import/saved_objects_importer.ts", @@ -7174,7 +7386,7 @@ "description": [], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 171 + "lineNumber": 176 }, "deprecated": false, "children": [ @@ -7208,7 +7420,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 269 + "lineNumber": 274 }, "deprecated": false, "children": [ @@ -7224,7 +7436,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 270 + "lineNumber": 275 }, "deprecated": false, "isRequired": true @@ -7241,7 +7453,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 271 + "lineNumber": 276 }, "deprecated": false, "isRequired": true @@ -7264,7 +7476,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 272 + "lineNumber": 277 }, "deprecated": false, "isRequired": true @@ -7315,7 +7527,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 362 + "lineNumber": 357 }, "deprecated": false, "children": [ @@ -7340,7 +7552,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 363 + "lineNumber": 358 }, "deprecated": false, "isRequired": true @@ -7363,7 +7575,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 364 + "lineNumber": 359 }, "deprecated": false, "isRequired": true @@ -7411,7 +7623,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 548 + "lineNumber": 540 }, "deprecated": false, "children": [ @@ -7434,7 +7646,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 549 + "lineNumber": 541 }, "deprecated": false, "isRequired": true @@ -7457,7 +7669,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 550 + "lineNumber": 542 }, "deprecated": false, "isRequired": true @@ -7489,7 +7701,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 635 + "lineNumber": 627 }, "deprecated": false, "children": [ @@ -7505,7 +7717,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 635 + "lineNumber": 627 }, "deprecated": false, "isRequired": true @@ -7522,7 +7734,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 635 + "lineNumber": 627 }, "deprecated": false, "isRequired": true @@ -7545,7 +7757,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 635 + "lineNumber": 627 }, "deprecated": false, "isRequired": true @@ -7575,7 +7787,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 696 + "lineNumber": 688 }, "deprecated": false, "children": [ @@ -7591,7 +7803,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 697 + "lineNumber": 689 }, "deprecated": false, "isRequired": true @@ -7614,7 +7826,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 698 + "lineNumber": 690 }, "deprecated": false, "isRequired": true @@ -7667,7 +7879,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 758 + "lineNumber": 750 }, "deprecated": false, "children": [ @@ -7689,7 +7901,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 759 + "lineNumber": 751 }, "deprecated": false, "isRequired": true @@ -7739,7 +7951,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 925 + "lineNumber": 917 }, "deprecated": false, "children": [ @@ -7764,7 +7976,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 926 + "lineNumber": 918 }, "deprecated": false, "isRequired": true @@ -7787,7 +7999,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 927 + "lineNumber": 919 }, "deprecated": false, "isRequired": true @@ -7823,7 +8035,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1012 + "lineNumber": 1004 }, "deprecated": false, "children": [ @@ -7839,7 +8051,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1013 + "lineNumber": 1005 }, "deprecated": false, "isRequired": true @@ -7856,7 +8068,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1014 + "lineNumber": 1006 }, "deprecated": false, "isRequired": true @@ -7879,7 +8091,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1015 + "lineNumber": 1007 }, "deprecated": false, "isRequired": true @@ -7921,7 +8133,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1054 + "lineNumber": 1046 }, "deprecated": false, "children": [ @@ -7937,7 +8149,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1055 + "lineNumber": 1047 }, "deprecated": false, "isRequired": true @@ -7954,7 +8166,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1056 + "lineNumber": 1048 }, "deprecated": false, "isRequired": true @@ -7977,7 +8189,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1057 + "lineNumber": 1049 }, "deprecated": false, "isRequired": true @@ -8021,7 +8233,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1184 + "lineNumber": 1187 }, "deprecated": false, "children": [ @@ -8037,7 +8249,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1185 + "lineNumber": 1188 }, "deprecated": false, "isRequired": true @@ -8054,7 +8266,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1186 + "lineNumber": 1189 }, "deprecated": false, "isRequired": true @@ -8071,7 +8283,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1187 + "lineNumber": 1190 }, "deprecated": false, "isRequired": true @@ -8095,7 +8307,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1188 + "lineNumber": 1191 }, "deprecated": false, "isRequired": true @@ -8141,7 +8353,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1282 + "lineNumber": 1285 }, "deprecated": false, "children": [ @@ -8166,7 +8378,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1283 + "lineNumber": 1286 }, "deprecated": false, "isRequired": true @@ -8190,7 +8402,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1284 + "lineNumber": 1287 }, "deprecated": false, "isRequired": false @@ -8236,7 +8448,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1306 + "lineNumber": 1309 }, "deprecated": false, "children": [ @@ -8259,7 +8471,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1307 + "lineNumber": 1310 }, "deprecated": false, "isRequired": true @@ -8276,7 +8488,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1308 + "lineNumber": 1311 }, "deprecated": false, "isRequired": true @@ -8293,7 +8505,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1309 + "lineNumber": 1312 }, "deprecated": false, "isRequired": true @@ -8317,7 +8529,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1310 + "lineNumber": 1313 }, "deprecated": false, "isRequired": false @@ -8366,7 +8578,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1333 + "lineNumber": 1336 }, "deprecated": false, "children": [ @@ -8391,7 +8603,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1334 + "lineNumber": 1337 }, "deprecated": false, "isRequired": true @@ -8414,7 +8626,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1335 + "lineNumber": 1338 }, "deprecated": false, "isRequired": true @@ -8454,7 +8666,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1550 + "lineNumber": 1553 }, "deprecated": false, "children": [ @@ -8470,7 +8682,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1551 + "lineNumber": 1554 }, "deprecated": false, "isRequired": true @@ -8487,7 +8699,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1552 + "lineNumber": 1555 }, "deprecated": false, "isRequired": true @@ -8510,7 +8722,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1553 + "lineNumber": 1556 }, "deprecated": false, "isRequired": true @@ -8544,13 +8756,13 @@ "section": "def-server.SavedObjectsIncrementCounterOptions", "text": "SavedObjectsIncrementCounterOptions" }, - ") => Promise<", + " | undefined) => Promise<", "SavedObject", ">" ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1661 + "lineNumber": 1664 }, "deprecated": false, "children": [ @@ -8568,7 +8780,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1662 + "lineNumber": 1665 }, "deprecated": false, "isRequired": true @@ -8587,7 +8799,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1663 + "lineNumber": 1666 }, "deprecated": false, "isRequired": true @@ -8614,7 +8826,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1664 + "lineNumber": 1667 }, "deprecated": false, "isRequired": true @@ -8636,14 +8848,14 @@ "section": "def-server.SavedObjectsIncrementCounterOptions", "text": "SavedObjectsIncrementCounterOptions" }, - "" + " | undefined" ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1665 + "lineNumber": 1668 }, "deprecated": false, - "isRequired": true + "isRequired": false } ], "returnComment": [ @@ -8683,7 +8895,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1821 + "lineNumber": 1834 }, "deprecated": false, "children": [ @@ -8699,7 +8911,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1822 + "lineNumber": 1835 }, "deprecated": false, "isRequired": true @@ -8722,7 +8934,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1823 + "lineNumber": 1836 }, "deprecated": false, "isRequired": true @@ -8762,7 +8974,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1890 + "lineNumber": 1903 }, "deprecated": false, "children": [ @@ -8778,7 +8990,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1891 + "lineNumber": 1904 }, "deprecated": false, "isRequired": true @@ -8804,7 +9016,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1892 + "lineNumber": 1905 }, "deprecated": false, "isRequired": false @@ -8852,7 +9064,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1946 + "lineNumber": 1959 }, "deprecated": false, "children": [ @@ -8876,7 +9088,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1947 + "lineNumber": 1960 }, "deprecated": false, "isRequired": true @@ -8900,7 +9112,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 1948 + "lineNumber": 1961 }, "deprecated": false, "isRequired": false @@ -9580,7 +9792,7 @@ "section": "def-server.SavedObjectsType", "text": "SavedObjectsType" }, - ") => void" + ") => void" ], "source": { "path": "src/core/server/saved_objects/saved_objects_type_registry.ts", @@ -9602,7 +9814,8 @@ "docId": "kibCoreSavedObjectsPluginApi", "section": "def-server.SavedObjectsType", "text": "SavedObjectsType" - } + }, + "" ], "source": { "path": "src/core/server/saved_objects/saved_objects_type_registry.ts", @@ -9632,7 +9845,7 @@ "section": "def-server.SavedObjectsType", "text": "SavedObjectsType" }, - " | undefined" + " | undefined" ], "source": { "path": "src/core/server/saved_objects/saved_objects_type_registry.ts", @@ -9678,7 +9891,7 @@ "section": "def-server.SavedObjectsType", "text": "SavedObjectsType" }, - "[]" + "[]" ], "source": { "path": "src/core/server/saved_objects/saved_objects_type_registry.ts", @@ -9706,7 +9919,7 @@ "section": "def-server.SavedObjectsType", "text": "SavedObjectsType" }, - "[]" + "[]" ], "source": { "path": "src/core/server/saved_objects/saved_objects_type_registry.ts", @@ -9734,7 +9947,7 @@ "section": "def-server.SavedObjectsType", "text": "SavedObjectsType" }, - "[]" + "[]" ], "source": { "path": "src/core/server/saved_objects/saved_objects_type_registry.ts", @@ -10489,7 +10702,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 75 + "lineNumber": 79 }, "deprecated": false, "children": [ @@ -10505,7 +10718,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 76 + "lineNumber": 80 }, "deprecated": false }, @@ -10518,7 +10731,7 @@ "description": [], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 77 + "lineNumber": 81 }, "deprecated": false }, @@ -10534,7 +10747,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 78 + "lineNumber": 82 }, "deprecated": false }, @@ -10550,7 +10763,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 79 + "lineNumber": 83 }, "deprecated": false }, @@ -10567,7 +10780,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 80 + "lineNumber": 84 }, "deprecated": false }, @@ -10586,7 +10799,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 82 + "lineNumber": 86 }, "deprecated": false }, @@ -10604,7 +10817,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 92 + "lineNumber": 96 }, "deprecated": false }, @@ -10622,7 +10835,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 94 + "lineNumber": 98 }, "deprecated": false }, @@ -10633,14 +10846,14 @@ "tags": [], "label": "initialNamespaces", "description": [ - "\nOptional initial namespaces for the object to be created in. If this is defined, it will supersede the namespace ID that is in\n{@link SavedObjectsCreateOptions}.\n\nNote: this can only be used for multi-namespace object types." + "\nOptional initial namespaces for the object to be created in. If this is defined, it will supersede the namespace ID that is in\n{@link SavedObjectsCreateOptions}.\n\n* For shareable object types (registered with `namespaceType: 'multiple'`): this option can be used to specify one or more spaces,\n including the \"All spaces\" identifier (`'*'`).\n* For isolated object types (registered with `namespaceType: 'single'` or `namespaceType: 'multiple-isolated'`): this option can only\n be used to specify a single space, and the \"All spaces\" identifier (`'*'`) is not allowed.\n* For global object types (registered with `namespaceType: 'agnostic'`): this option cannot be used." ], "signature": [ "string[] | undefined" ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 101 + "lineNumber": 109 }, "deprecated": false } @@ -10658,7 +10871,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 268 + "lineNumber": 276 }, "deprecated": false, "children": [ @@ -10671,7 +10884,7 @@ "description": [], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 269 + "lineNumber": 277 }, "deprecated": false }, @@ -10684,7 +10897,7 @@ "description": [], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 270 + "lineNumber": 278 }, "deprecated": false }, @@ -10702,7 +10915,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 272 + "lineNumber": 280 }, "deprecated": false } @@ -10730,7 +10943,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 129 + "lineNumber": 137 }, "deprecated": false, "children": [ @@ -10747,7 +10960,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 130 + "lineNumber": 138 }, "deprecated": false } @@ -10775,7 +10988,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 279 + "lineNumber": 287 }, "deprecated": false, "children": [ @@ -10792,7 +11005,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 280 + "lineNumber": 288 }, "deprecated": false } @@ -10828,7 +11041,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 108 + "lineNumber": 116 }, "deprecated": false, "children": [ @@ -10843,7 +11056,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 111 + "lineNumber": 119 }, "deprecated": false }, @@ -10858,7 +11071,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 113 + "lineNumber": 121 }, "deprecated": false }, @@ -10876,7 +11089,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 115 + "lineNumber": 123 }, "deprecated": false }, @@ -10894,7 +11107,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 122 + "lineNumber": 130 }, "deprecated": false } @@ -10929,7 +11142,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 248 + "lineNumber": 256 }, "deprecated": false, "children": [ @@ -10947,7 +11160,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 250 + "lineNumber": 258 }, "deprecated": false } @@ -10975,7 +11188,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 287 + "lineNumber": 295 }, "deprecated": false, "children": [ @@ -10998,7 +11211,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 288 + "lineNumber": 296 }, "deprecated": false } @@ -11016,7 +11229,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 194 + "lineNumber": 202 }, "deprecated": false, "children": [ @@ -11029,7 +11242,7 @@ "description": [], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 195 + "lineNumber": 203 }, "deprecated": false }, @@ -11042,7 +11255,7 @@ "description": [], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 196 + "lineNumber": 204 }, "deprecated": false } @@ -11060,7 +11273,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 203 + "lineNumber": 211 }, "deprecated": false, "children": [ @@ -11078,7 +11291,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 204 + "lineNumber": 212 }, "deprecated": false } @@ -11482,7 +11695,7 @@ "section": "def-server.SavedObjectsType", "text": "SavedObjectsType" }, - " | undefined; getVisibleTypes: () => ", + " | undefined; getVisibleTypes: () => ", { "pluginId": "core", "scope": "server", @@ -11490,7 +11703,7 @@ "section": "def-server.SavedObjectsType", "text": "SavedObjectsType" }, - "[]; getAllTypes: () => ", + "[]; getAllTypes: () => ", { "pluginId": "core", "scope": "server", @@ -11498,7 +11711,7 @@ "section": "def-server.SavedObjectsType", "text": "SavedObjectsType" }, - "[]; getImportableAndExportableTypes: () => ", + "[]; getImportableAndExportableTypes: () => ", { "pluginId": "core", "scope": "server", @@ -11506,7 +11719,7 @@ "section": "def-server.SavedObjectsType", "text": "SavedObjectsType" }, - "[]; isNamespaceAgnostic: (type: string) => boolean; isSingleNamespace: (type: string) => boolean; isMultiNamespace: (type: string) => boolean; isShareable: (type: string) => boolean; isHidden: (type: string) => boolean; getIndex: (type: string) => string | undefined; isImportableAndExportable: (type: string) => boolean; }" + "[]; isNamespaceAgnostic: (type: string) => boolean; isSingleNamespace: (type: string) => boolean; isMultiNamespace: (type: string) => boolean; isShareable: (type: string) => boolean; isHidden: (type: string) => boolean; getIndex: (type: string) => string | undefined; isImportableAndExportable: (type: string) => boolean; }" ], "source": { "path": "src/core/server/saved_objects/service/lib/scoped_client_provider.ts", @@ -11549,7 +11762,7 @@ "description": [], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 355 + "lineNumber": 366 }, "deprecated": false, "children": [ @@ -11564,7 +11777,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 360 + "lineNumber": 371 }, "deprecated": false }, @@ -11579,7 +11792,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 364 + "lineNumber": 375 }, "deprecated": false } @@ -11907,14 +12120,14 @@ "tags": [], "label": "initialNamespaces", "description": [ - "\nOptional initial namespaces for the object to be created in. If this is defined, it will supersede the namespace ID that is in\n{@link SavedObjectsCreateOptions}.\n\nNote: this can only be used for multi-namespace object types." + "\nOptional initial namespaces for the object to be created in. If this is defined, it will supersede the namespace ID that is in\n{@link SavedObjectsCreateOptions}.\n\n* For shareable object types (registered with `namespaceType: 'multiple'`): this option can be used to specify one or more spaces,\n including the \"All spaces\" identifier (`'*'`).\n* For isolated object types (registered with `namespaceType: 'single'` or `namespaceType: 'multiple-isolated'`): this option can only\n be used to specify a single space, and the \"All spaces\" identifier (`'*'`) is not allowed.\n* For global object types (registered with `namespaceType: 'agnostic'`): this option cannot be used." ], "signature": [ "string[] | undefined" ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 68 + "lineNumber": 72 }, "deprecated": false } @@ -12029,7 +12242,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 144 + "lineNumber": 149 }, "deprecated": false, "children": [ @@ -12047,7 +12260,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 146 + "lineNumber": 151 }, "deprecated": false } @@ -12082,7 +12295,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 257 + "lineNumber": 265 }, "deprecated": false, "children": [ @@ -12100,7 +12313,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 259 + "lineNumber": 267 }, "deprecated": false }, @@ -12118,7 +12331,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 261 + "lineNumber": 269 }, "deprecated": false } @@ -12274,6 +12487,70 @@ ], "initialIsOpen": false }, + { + "parentPluginId": "core", + "id": "def-server.SavedObjectsExportExcludedObject", + "type": "Interface", + "tags": [], + "label": "SavedObjectsExportExcludedObject", + "description": [], + "source": { + "path": "src/core/server/saved_objects/export/types.ts", + "lineNumber": 82 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "core", + "id": "def-server.SavedObjectsExportExcludedObject.id", + "type": "string", + "tags": [], + "label": "id", + "description": [ + "id of the excluded object" + ], + "source": { + "path": "src/core/server/saved_objects/export/types.ts", + "lineNumber": 84 + }, + "deprecated": false + }, + { + "parentPluginId": "core", + "id": "def-server.SavedObjectsExportExcludedObject.type", + "type": "string", + "tags": [], + "label": "type", + "description": [ + "type of the excluded object" + ], + "source": { + "path": "src/core/server/saved_objects/export/types.ts", + "lineNumber": 86 + }, + "deprecated": false + }, + { + "parentPluginId": "core", + "id": "def-server.SavedObjectsExportExcludedObject.reason", + "type": "string", + "tags": [], + "label": "reason", + "description": [ + "optional cause of the exclusion" + ], + "signature": [ + "string | undefined" + ], + "source": { + "path": "src/core/server/saved_objects/export/types.ts", + "lineNumber": 88 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, { "parentPluginId": "core", "id": "def-server.SavedObjectsExportResultDetails", @@ -12336,6 +12613,46 @@ "lineNumber": 69 }, "deprecated": false + }, + { + "parentPluginId": "core", + "id": "def-server.SavedObjectsExportResultDetails.excludedObjectsCount", + "type": "number", + "tags": [], + "label": "excludedObjectsCount", + "description": [ + "number of objects that were excluded from the export" + ], + "source": { + "path": "src/core/server/saved_objects/export/types.ts", + "lineNumber": 76 + }, + "deprecated": false + }, + { + "parentPluginId": "core", + "id": "def-server.SavedObjectsExportResultDetails.excludedObjects", + "type": "Array", + "tags": [], + "label": "excludedObjects", + "description": [ + "excluded objects details" + ], + "signature": [ + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsExportExcludedObject", + "text": "SavedObjectsExportExcludedObject" + }, + "[]" + ], + "source": { + "path": "src/core/server/saved_objects/export/types.ts", + "lineNumber": 78 + }, + "deprecated": false } ], "initialIsOpen": false @@ -12351,7 +12668,7 @@ ], "source": { "path": "src/core/server/saved_objects/export/types.ts", - "lineNumber": 82 + "lineNumber": 96 }, "deprecated": false, "children": [ @@ -12376,7 +12693,7 @@ ], "source": { "path": "src/core/server/saved_objects/export/types.ts", - "lineNumber": 87 + "lineNumber": 101 }, "deprecated": false } @@ -12818,7 +13135,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 181 + "lineNumber": 189 }, "deprecated": false, "children": [ @@ -12834,7 +13151,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 182 + "lineNumber": 190 }, "deprecated": false }, @@ -12857,7 +13174,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 183 + "lineNumber": 191 }, "deprecated": false }, @@ -12870,7 +13187,7 @@ "description": [], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 184 + "lineNumber": 192 }, "deprecated": false }, @@ -12883,7 +13200,7 @@ "description": [], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 185 + "lineNumber": 193 }, "deprecated": false }, @@ -12896,7 +13213,7 @@ "description": [], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 186 + "lineNumber": 194 }, "deprecated": false }, @@ -12912,7 +13229,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 187 + "lineNumber": 195 }, "deprecated": false } @@ -12942,7 +13259,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 137 + "lineNumber": 145 }, "deprecated": false, "children": [ @@ -12957,7 +13274,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 141 + "lineNumber": 149 }, "deprecated": false }, @@ -12975,7 +13292,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 170 + "lineNumber": 178 }, "deprecated": false } @@ -14014,7 +14331,7 @@ "description": [], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 161 + "lineNumber": 166 }, "deprecated": false, "children": [ @@ -14029,7 +14346,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 163 + "lineNumber": 168 }, "deprecated": false }, @@ -14047,7 +14364,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 165 + "lineNumber": 170 }, "deprecated": false } @@ -14080,7 +14397,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 120 + "lineNumber": 125 }, "deprecated": false, "children": [ @@ -14098,7 +14415,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 126 + "lineNumber": 131 }, "deprecated": false }, @@ -14117,7 +14434,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 128 + "lineNumber": 133 }, "deprecated": false }, @@ -14135,7 +14452,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 133 + "lineNumber": 138 }, "deprecated": false }, @@ -14153,7 +14470,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 137 + "lineNumber": 142 }, "deprecated": false } @@ -14307,14 +14624,14 @@ "plugin": "lens", "link": { "path": "x-pack/plugins/lens/server/migrations/saved_object_migrations.ts", - "lineNumber": 167 + "lineNumber": 170 } }, { "plugin": "lens", "link": { "path": "x-pack/plugins/lens/server/migrations/saved_object_migrations.ts", - "lineNumber": 234 + "lineNumber": 237 } } ], @@ -14448,7 +14765,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 326 + "lineNumber": 337 }, "deprecated": false, "children": [ @@ -14466,7 +14783,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 330 + "lineNumber": 341 }, "deprecated": false }, @@ -14484,7 +14801,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 334 + "lineNumber": 345 }, "deprecated": false } @@ -14500,7 +14817,7 @@ "description": [], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 340 + "lineNumber": 351 }, "deprecated": false, "children": [ @@ -14515,7 +14832,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 344 + "lineNumber": 355 }, "deprecated": false } @@ -14710,7 +15027,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 230 + "lineNumber": 238 }, "deprecated": false, "children": [ @@ -14728,7 +15045,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 232 + "lineNumber": 240 }, "deprecated": false } @@ -14763,7 +15080,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 239 + "lineNumber": 247 }, "deprecated": false, "children": [ @@ -14778,7 +15095,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 241 + "lineNumber": 249 }, "deprecated": false } @@ -15043,7 +15360,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 305 + "lineNumber": 313 }, "deprecated": false, "children": [ @@ -15053,14 +15370,16 @@ "type": "Object", "tags": [], "label": "saved_object", - "description": [], + "description": [ + "\nThe saved object that was found." + ], "signature": [ "SavedObject", "" ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 306 + "lineNumber": 317 }, "deprecated": false }, @@ -15078,7 +15397,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 316 + "lineNumber": 327 }, "deprecated": false }, @@ -15096,7 +15415,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 320 + "lineNumber": 331 }, "deprecated": false } @@ -15275,7 +15594,7 @@ "\nRegister a {@link SavedObjectsType | savedObjects type} definition.\n\nSee the {@link SavedObjectsTypeMappingDefinition | mappings format} and\n{@link SavedObjectMigrationMap | migration format} for more details about these.\n" ], "signature": [ - "(type: ", + "(type: ", { "pluginId": "core", "scope": "server", @@ -15283,7 +15602,7 @@ "section": "def-server.SavedObjectsType", "text": "SavedObjectsType" }, - ") => void" + ") => void" ], "source": { "path": "src/core/server/saved_objects/saved_objects_service.ts", @@ -15306,7 +15625,8 @@ "docId": "kibCoreSavedObjectsPluginApi", "section": "def-server.SavedObjectsType", "text": "SavedObjectsType" - } + }, + "" ], "source": { "path": "src/core/server/saved_objects/saved_objects_service.ts", @@ -16357,6 +16677,16 @@ "tags": [], "label": "SavedObjectsType", "description": [], + "signature": [ + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsType", + "text": "SavedObjectsType" + }, + "" + ], "source": { "path": "src/core/server/saved_objects/types.ts", "lineNumber": 256 @@ -16539,7 +16869,7 @@ "section": "def-server.SavedObjectsTypeManagementDefinition", "text": "SavedObjectsTypeManagementDefinition" }, - " | undefined" + " | undefined" ], "source": { "path": "src/core/server/saved_objects/types.ts", @@ -16559,6 +16889,16 @@ "description": [ "\nConfiguration options for the {@link SavedObjectsType | type}'s management section.\n" ], + "signature": [ + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsTypeManagementDefinition", + "text": "SavedObjectsTypeManagementDefinition" + }, + "" + ], "source": { "path": "src/core/server/saved_objects/types.ts", "lineNumber": 348 @@ -16631,7 +16971,7 @@ "signature": [ "((savedObject: ", "SavedObject", - ") => string) | undefined" + ") => string) | undefined" ], "source": { "path": "src/core/server/saved_objects/types.ts", @@ -16651,7 +16991,7 @@ "signature": [ "((savedObject: ", "SavedObject", - ") => string) | undefined" + ") => string) | undefined" ], "source": { "path": "src/core/server/saved_objects/types.ts", @@ -16671,7 +17011,7 @@ "signature": [ "((savedObject: ", "SavedObject", - ") => { path: string; uiCapabilitiesPath: string; }) | undefined" + ") => { path: string; uiCapabilitiesPath: string; }) | undefined" ], "source": { "path": "src/core/server/saved_objects/types.ts", @@ -16686,7 +17026,7 @@ "tags": [], "label": "onExport", "description": [ - "\nAn optional export transform function that can be used transform the objects of the registered type during\nthe export process.\n\nIt can be used to either mutate the exported objects, or add additional objects (of any type) to the export list.\n\nSee {@link SavedObjectsExportTransform | the transform type documentation} for more info and examples.\n" + "\nAn optional export transform function that can be used transform the objects of the registered type during\nthe export process.\n\nIt can be used to either mutate the exported objects, or add additional objects (of any type) to the export list.\n\nSee {@link SavedObjectsExportTransform | the transform type documentation} for more info and examples.\n\nWhen implementing both `isExportable` and `onExport`, it is mandatory that\n`isExportable` returns the same value for an object before and after going\nthough the export transform.\nE.g `isExportable(objectBeforeTransform) === isExportable(objectAfterTransform)`\n" ], "signature": [ { @@ -16696,11 +17036,11 @@ "section": "def-server.SavedObjectsExportTransform", "text": "SavedObjectsExportTransform" }, - " | undefined" + " | undefined" ], "source": { "path": "src/core/server/saved_objects/types.ts", - "lineNumber": 391 + "lineNumber": 398 }, "deprecated": false }, @@ -16721,11 +17061,30 @@ "section": "def-server.SavedObjectsImportHook", "text": "SavedObjectsImportHook" }, - " | undefined" + " | undefined" + ], + "source": { + "path": "src/core/server/saved_objects/types.ts", + "lineNumber": 441 + }, + "deprecated": false + }, + { + "parentPluginId": "core", + "id": "def-server.SavedObjectsTypeManagementDefinition.isExportable", + "type": "Function", + "tags": [], + "label": "isExportable", + "description": [ + "\nOptional hook to specify whether an object should be exportable.\n\nIf specified, `isExportable` will be called during export for each\nof this type's objects in the export, and the ones not matching the\npredicate will be excluded from the export.\n\nWhen implementing both `isExportable` and `onExport`, it is mandatory that\n`isExportable` returns the same value for an object before and after going\nthough the export transform.\nE.g `isExportable(objectBeforeTransform) === isExportable(objectAfterTransform)`\n" + ], + "signature": [ + "SavedObjectsExportablePredicate", + " | undefined" ], "source": { "path": "src/core/server/saved_objects/types.ts", - "lineNumber": 434 + "lineNumber": 481 }, "deprecated": false } @@ -17047,7 +17406,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 215 + "lineNumber": 223 }, "deprecated": false, "children": [ @@ -17065,7 +17424,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 217 + "lineNumber": 225 }, "deprecated": false }, @@ -17084,7 +17443,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 219 + "lineNumber": 227 }, "deprecated": false }, @@ -17102,7 +17461,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 221 + "lineNumber": 229 }, "deprecated": false }, @@ -17120,7 +17479,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 223 + "lineNumber": 231 }, "deprecated": false } @@ -17150,7 +17509,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 295 + "lineNumber": 303 }, "deprecated": false, "children": [ @@ -17166,7 +17525,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 297 + "lineNumber": 305 }, "deprecated": false }, @@ -17183,7 +17542,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 298 + "lineNumber": 306 }, "deprecated": false } @@ -17225,7 +17584,7 @@ ], "source": { "path": "src/core/server/saved_objects/export/saved_objects_exporter.ts", - "lineNumber": 30 + "lineNumber": 29 }, "deprecated": false, "initialIsOpen": false @@ -17549,7 +17908,7 @@ "section": "def-server.SavedObjectsIncrementCounterOptions", "text": "SavedObjectsIncrementCounterOptions" }, - ") => Promise<", + " | undefined) => Promise<", "SavedObject", ">; openPointInTimeForType: (type: string | string[], { keepAlive, preference }?: ", { @@ -17611,7 +17970,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/lib/repository.ts", - "lineNumber": 156 + "lineNumber": 161 }, "deprecated": false, "initialIsOpen": false @@ -17634,7 +17993,7 @@ "section": "def-server.SavedObjectsType", "text": "SavedObjectsType" }, - " | undefined; getVisibleTypes: () => ", + " | undefined; getVisibleTypes: () => ", { "pluginId": "core", "scope": "server", @@ -17642,7 +18001,7 @@ "section": "def-server.SavedObjectsType", "text": "SavedObjectsType" }, - "[]; getAllTypes: () => ", + "[]; getAllTypes: () => ", { "pluginId": "core", "scope": "server", @@ -17650,7 +18009,7 @@ "section": "def-server.SavedObjectsType", "text": "SavedObjectsType" }, - "[]; getImportableAndExportableTypes: () => ", + "[]; getImportableAndExportableTypes: () => ", { "pluginId": "core", "scope": "server", @@ -17658,7 +18017,7 @@ "section": "def-server.SavedObjectsType", "text": "SavedObjectsType" }, - "[]; isNamespaceAgnostic: (type: string) => boolean; isSingleNamespace: (type: string) => boolean; isMultiNamespace: (type: string) => boolean; isShareable: (type: string) => boolean; isHidden: (type: string) => boolean; getIndex: (type: string) => string | undefined; isImportableAndExportable: (type: string) => boolean; }" + "[]; isNamespaceAgnostic: (type: string) => boolean; isSingleNamespace: (type: string) => boolean; isMultiNamespace: (type: string) => boolean; isShareable: (type: string) => boolean; isHidden: (type: string) => boolean; getIndex: (type: string) => string | undefined; isImportableAndExportable: (type: string) => boolean; }" ], "source": { "path": "src/core/server/saved_objects/saved_objects_type_registry.ts", @@ -18189,7 +18548,7 @@ ], "source": { "path": "src/core/server/saved_objects/service/saved_objects_client.ts", - "lineNumber": 350 + "lineNumber": 361 }, "deprecated": false, "initialIsOpen": false @@ -18239,7 +18598,7 @@ "\nTransformation function used to mutate the exported objects of the associated type.\n\nA type's export transform function will be executed once per user-initiated export,\nfor all objects of that type.\n" ], "signature": [ - "(context: ", + "(context: ", { "pluginId": "core", "scope": "server", @@ -18257,7 +18616,7 @@ ], "source": { "path": "src/core/server/saved_objects/export/types.ts", - "lineNumber": 161 + "lineNumber": 175 }, "deprecated": false, "initialIsOpen": false diff --git a/api_docs/core_saved_objects.mdx b/api_docs/core_saved_objects.mdx index fd3f96e081c9e..55da0eea81ac2 100644 --- a/api_docs/core_saved_objects.mdx +++ b/api_docs/core_saved_objects.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'core.savedObjects'] warning: 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. --- - import coreSavedObjectsObj from './core_saved_objects.json'; @@ -19,7 +18,7 @@ import coreSavedObjectsObj from './core_saved_objects.json'; | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 2273 | 148 | 1052 | 26 | +| 2296 | 148 | 1056 | 30 | ## Client diff --git a/api_docs/dashboard.json b/api_docs/dashboard.json index 821d298ea1309..793acb446174f 100644 --- a/api_docs/dashboard.json +++ b/api_docs/dashboard.json @@ -1199,7 +1199,9 @@ "parentPluginId": "dashboard", "id": "def-public.createDashboardUrlGenerator", "type": "Function", - "tags": [], + "tags": [ + "deprecated" + ], "label": "createDashboardUrlGenerator", "description": [], "signature": [ @@ -1223,9 +1225,10 @@ ], "source": { "path": "src/plugins/dashboard/public/url_generator.ts", - "lineNumber": 91 + "lineNumber": 97 }, - "deprecated": false, + "deprecated": true, + "references": [], "children": [ { "parentPluginId": "dashboard", @@ -1247,7 +1250,7 @@ ], "source": { "path": "src/plugins/dashboard/public/url_generator.ts", - "lineNumber": 92 + "lineNumber": 98 }, "deprecated": false, "isRequired": true @@ -1258,6 +1261,297 @@ } ], "interfaces": [ + { + "parentPluginId": "dashboard", + "id": "def-public.DashboardAppLocatorParams", + "type": "Interface", + "tags": [], + "label": "DashboardAppLocatorParams", + "description": [], + "signature": [ + { + "pluginId": "dashboard", + "scope": "public", + "docId": "kibDashboardPluginApi", + "section": "def-public.DashboardAppLocatorParams", + "text": "DashboardAppLocatorParams" + }, + " extends ", + { + "pluginId": "kibanaUtils", + "scope": "common", + "docId": "kibKibanaUtilsPluginApi", + "section": "def-common.SerializableState", + "text": "SerializableState" + } + ], + "source": { + "path": "src/plugins/dashboard/public/locator.ts", + "lineNumber": 29 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "dashboard", + "id": "def-public.DashboardAppLocatorParams.dashboardId", + "type": "string", + "tags": [], + "label": "dashboardId", + "description": [ + "\nIf given, the dashboard saved object with this id will be loaded. If not given,\na new, unsaved dashboard will be loaded up." + ], + "signature": [ + "string | undefined" + ], + "source": { + "path": "src/plugins/dashboard/public/locator.ts", + "lineNumber": 34 + }, + "deprecated": false + }, + { + "parentPluginId": "dashboard", + "id": "def-public.DashboardAppLocatorParams.timeRange", + "type": "Object", + "tags": [], + "label": "timeRange", + "description": [ + "\nOptionally set the time range in the time picker." + ], + "signature": [ + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataQueryPluginApi", + "section": "def-common.TimeRange", + "text": "TimeRange" + }, + " | undefined" + ], + "source": { + "path": "src/plugins/dashboard/public/locator.ts", + "lineNumber": 38 + }, + "deprecated": false + }, + { + "parentPluginId": "dashboard", + "id": "def-public.DashboardAppLocatorParams.refreshInterval", + "type": "CompoundType", + "tags": [], + "label": "refreshInterval", + "description": [ + "\nOptionally set the refresh interval." + ], + "signature": [ + "(", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataQueryPluginApi", + "section": "def-common.RefreshInterval", + "text": "RefreshInterval" + }, + " & ", + { + "pluginId": "kibanaUtils", + "scope": "common", + "docId": "kibKibanaUtilsPluginApi", + "section": "def-common.SerializableState", + "text": "SerializableState" + }, + ") | undefined" + ], + "source": { + "path": "src/plugins/dashboard/public/locator.ts", + "lineNumber": 43 + }, + "deprecated": false + }, + { + "parentPluginId": "dashboard", + "id": "def-public.DashboardAppLocatorParams.filters", + "type": "Array", + "tags": [], + "label": "filters", + "description": [ + "\nOptionally apply filers. NOTE: if given and used in conjunction with `dashboardId`, and the\nsaved dashboard has filters saved with it, this will _replace_ those filters." + ], + "signature": [ + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataPluginApi", + "section": "def-common.Filter", + "text": "Filter" + }, + "[] | undefined" + ], + "source": { + "path": "src/plugins/dashboard/public/locator.ts", + "lineNumber": 49 + }, + "deprecated": false + }, + { + "parentPluginId": "dashboard", + "id": "def-public.DashboardAppLocatorParams.query", + "type": "Object", + "tags": [], + "label": "query", + "description": [ + "\nOptionally set a query. NOTE: if given and used in conjunction with `dashboardId`, and the\nsaved dashboard has a query saved with it, this will _replace_ that query." + ], + "signature": [ + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataQueryPluginApi", + "section": "def-common.Query", + "text": "Query" + }, + " | undefined" + ], + "source": { + "path": "src/plugins/dashboard/public/locator.ts", + "lineNumber": 54 + }, + "deprecated": false + }, + { + "parentPluginId": "dashboard", + "id": "def-public.DashboardAppLocatorParams.useHash", + "type": "CompoundType", + "tags": [], + "label": "useHash", + "description": [ + "\nIf not given, will use the uiSettings configuration for `storeInSessionStorage`. useHash determines\nwhether to hash the data in the url to avoid url length issues." + ], + "signature": [ + "boolean | undefined" + ], + "source": { + "path": "src/plugins/dashboard/public/locator.ts", + "lineNumber": 59 + }, + "deprecated": false + }, + { + "parentPluginId": "dashboard", + "id": "def-public.DashboardAppLocatorParams.preserveSavedFilters", + "type": "CompoundType", + "tags": [], + "label": "preserveSavedFilters", + "description": [ + "\nWhen `true` filters from saved filters from destination dashboard as merged with applied filters\nWhen `false` applied filters take precedence and override saved filters\n\ntrue is default" + ], + "signature": [ + "boolean | undefined" + ], + "source": { + "path": "src/plugins/dashboard/public/locator.ts", + "lineNumber": 67 + }, + "deprecated": false + }, + { + "parentPluginId": "dashboard", + "id": "def-public.DashboardAppLocatorParams.viewMode", + "type": "CompoundType", + "tags": [], + "label": "viewMode", + "description": [ + "\nView mode of the dashboard." + ], + "signature": [ + { + "pluginId": "embeddable", + "scope": "common", + "docId": "kibEmbeddablePluginApi", + "section": "def-common.ViewMode", + "text": "ViewMode" + }, + " | undefined" + ], + "source": { + "path": "src/plugins/dashboard/public/locator.ts", + "lineNumber": 72 + }, + "deprecated": false + }, + { + "parentPluginId": "dashboard", + "id": "def-public.DashboardAppLocatorParams.searchSessionId", + "type": "string", + "tags": [], + "label": "searchSessionId", + "description": [ + "\nSearch search session ID to restore.\n(Background search)" + ], + "signature": [ + "string | undefined" + ], + "source": { + "path": "src/plugins/dashboard/public/locator.ts", + "lineNumber": 78 + }, + "deprecated": false + }, + { + "parentPluginId": "dashboard", + "id": "def-public.DashboardAppLocatorParams.panels", + "type": "CompoundType", + "tags": [], + "label": "panels", + "description": [ + "\nList of dashboard panels" + ], + "signature": [ + "(", + { + "pluginId": "dashboard", + "scope": "common", + "docId": "kibDashboardPluginApi", + "section": "def-common.SavedDashboardPanel730ToLatest", + "text": "SavedDashboardPanel730ToLatest" + }, + "[] & ", + { + "pluginId": "kibanaUtils", + "scope": "common", + "docId": "kibKibanaUtilsPluginApi", + "section": "def-common.SerializableState", + "text": "SerializableState" + }, + ") | undefined" + ], + "source": { + "path": "src/plugins/dashboard/public/locator.ts", + "lineNumber": 83 + }, + "deprecated": false + }, + { + "parentPluginId": "dashboard", + "id": "def-public.DashboardAppLocatorParams.savedQuery", + "type": "string", + "tags": [], + "label": "savedQuery", + "description": [ + "\nSaved query ID" + ], + "signature": [ + "string | undefined" + ], + "source": { + "path": "src/plugins/dashboard/public/locator.ts", + "lineNumber": 88 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, { "parentPluginId": "dashboard", "id": "def-public.DashboardContainerInput", @@ -1547,7 +1841,7 @@ "description": [], "source": { "path": "src/plugins/dashboard/public/plugin.tsx", - "lineNumber": 92 + "lineNumber": 93 }, "deprecated": false, "children": [ @@ -1560,7 +1854,7 @@ "description": [], "source": { "path": "src/plugins/dashboard/public/plugin.tsx", - "lineNumber": 93 + "lineNumber": 94 }, "deprecated": false } @@ -2040,14 +2334,17 @@ "parentPluginId": "dashboard", "id": "def-public.DashboardUrlGeneratorState", "type": "Interface", - "tags": [], + "tags": [ + "deprecated" + ], "label": "DashboardUrlGeneratorState", "description": [], "source": { "path": "src/plugins/dashboard/public/url_generator.ts", - "lineNumber": 29 + "lineNumber": 32 }, - "deprecated": false, + "deprecated": true, + "references": [], "children": [ { "parentPluginId": "dashboard", @@ -2063,7 +2360,7 @@ ], "source": { "path": "src/plugins/dashboard/public/url_generator.ts", - "lineNumber": 34 + "lineNumber": 37 }, "deprecated": false }, @@ -2088,7 +2385,7 @@ ], "source": { "path": "src/plugins/dashboard/public/url_generator.ts", - "lineNumber": 38 + "lineNumber": 41 }, "deprecated": false }, @@ -2113,7 +2410,7 @@ ], "source": { "path": "src/plugins/dashboard/public/url_generator.ts", - "lineNumber": 43 + "lineNumber": 46 }, "deprecated": false }, @@ -2138,7 +2435,7 @@ ], "source": { "path": "src/plugins/dashboard/public/url_generator.ts", - "lineNumber": 49 + "lineNumber": 52 }, "deprecated": false }, @@ -2163,7 +2460,7 @@ ], "source": { "path": "src/plugins/dashboard/public/url_generator.ts", - "lineNumber": 54 + "lineNumber": 57 }, "deprecated": false }, @@ -2181,7 +2478,7 @@ ], "source": { "path": "src/plugins/dashboard/public/url_generator.ts", - "lineNumber": 59 + "lineNumber": 62 }, "deprecated": false }, @@ -2199,7 +2496,7 @@ ], "source": { "path": "src/plugins/dashboard/public/url_generator.ts", - "lineNumber": 67 + "lineNumber": 70 }, "deprecated": false }, @@ -2224,7 +2521,7 @@ ], "source": { "path": "src/plugins/dashboard/public/url_generator.ts", - "lineNumber": 72 + "lineNumber": 75 }, "deprecated": false }, @@ -2242,7 +2539,7 @@ ], "source": { "path": "src/plugins/dashboard/public/url_generator.ts", - "lineNumber": 78 + "lineNumber": 81 }, "deprecated": false }, @@ -2267,7 +2564,7 @@ ], "source": { "path": "src/plugins/dashboard/public/url_generator.ts", - "lineNumber": 83 + "lineNumber": 86 }, "deprecated": false }, @@ -2285,7 +2582,7 @@ ], "source": { "path": "src/plugins/dashboard/public/url_generator.ts", - "lineNumber": 88 + "lineNumber": 91 }, "deprecated": false } @@ -2329,6 +2626,38 @@ "deprecated": false, "initialIsOpen": false }, + { + "parentPluginId": "dashboard", + "id": "def-public.DashboardAppLocator", + "type": "Type", + "tags": [], + "label": "DashboardAppLocator", + "description": [], + "signature": [ + { + "pluginId": "share", + "scope": "common", + "docId": "kibSharePluginApi", + "section": "def-common.LocatorPublic", + "text": "LocatorPublic" + }, + "<", + { + "pluginId": "dashboard", + "scope": "public", + "docId": "kibDashboardPluginApi", + "section": "def-public.DashboardAppLocatorParams", + "text": "DashboardAppLocatorParams" + }, + ">" + ], + "source": { + "path": "src/plugins/dashboard/public/locator.ts", + "lineNumber": 91 + }, + "deprecated": false, + "initialIsOpen": false + }, { "parentPluginId": "dashboard", "id": "def-public.DashboardUrlGenerator", @@ -2348,7 +2677,7 @@ ], "source": { "path": "src/plugins/dashboard/public/plugin.tsx", - "lineNumber": 90 + "lineNumber": 91 }, "deprecated": false, "initialIsOpen": false @@ -2532,18 +2861,40 @@ "setup": { "parentPluginId": "dashboard", "id": "def-public.DashboardSetup", - "type": "Type", + "type": "Interface", "tags": [], "label": "DashboardSetup", "description": [], - "signature": [ - "void" - ], "source": { "path": "src/plugins/dashboard/public/plugin.tsx", - "lineNumber": 124 + "lineNumber": 125 }, "deprecated": false, + "children": [ + { + "parentPluginId": "dashboard", + "id": "def-public.DashboardSetup.locator", + "type": "Object", + "tags": [], + "label": "locator", + "description": [], + "signature": [ + { + "pluginId": "dashboard", + "scope": "public", + "docId": "kibDashboardPluginApi", + "section": "def-public.DashboardAppLocator", + "text": "DashboardAppLocator" + }, + " | undefined" + ], + "source": { + "path": "src/plugins/dashboard/public/plugin.tsx", + "lineNumber": 126 + }, + "deprecated": false + } + ], "lifecycle": "setup", "initialIsOpen": true }, @@ -2556,7 +2907,7 @@ "description": [], "source": { "path": "src/plugins/dashboard/public/plugin.tsx", - "lineNumber": 126 + "lineNumber": 129 }, "deprecated": false, "children": [ @@ -2579,7 +2930,7 @@ ], "source": { "path": "src/plugins/dashboard/public/plugin.tsx", - "lineNumber": 127 + "lineNumber": 130 }, "deprecated": false, "returnComment": [], @@ -2597,7 +2948,7 @@ ], "source": { "path": "src/plugins/dashboard/public/plugin.tsx", - "lineNumber": 128 + "lineNumber": 131 }, "deprecated": false, "returnComment": [], @@ -2607,7 +2958,9 @@ "parentPluginId": "dashboard", "id": "def-public.DashboardStart.dashboardUrlGenerator", "type": "Object", - "tags": [], + "tags": [ + "deprecated" + ], "label": "dashboardUrlGenerator", "description": [], "signature": [ @@ -2622,7 +2975,39 @@ ], "source": { "path": "src/plugins/dashboard/public/plugin.tsx", - "lineNumber": 131 + "lineNumber": 142 + }, + "deprecated": true, + "references": [ + { + "plugin": "securitySolution", + "link": { + "path": "x-pack/plugins/security_solution/public/overview/containers/overview_cti_links/index.tsx", + "lineNumber": 24 + } + } + ] + }, + { + "parentPluginId": "dashboard", + "id": "def-public.DashboardStart.locator", + "type": "Object", + "tags": [], + "label": "locator", + "description": [], + "signature": [ + { + "pluginId": "dashboard", + "scope": "public", + "docId": "kibDashboardPluginApi", + "section": "def-public.DashboardAppLocator", + "text": "DashboardAppLocator" + }, + " | undefined" + ], + "source": { + "path": "src/plugins/dashboard/public/plugin.tsx", + "lineNumber": 143 }, "deprecated": false }, @@ -2644,7 +3029,7 @@ ], "source": { "path": "src/plugins/dashboard/public/plugin.tsx", - "lineNumber": 132 + "lineNumber": 144 }, "deprecated": false } diff --git a/api_docs/dashboard.mdx b/api_docs/dashboard.mdx index de34ce88a77be..2adae80a02061 100644 --- a/api_docs/dashboard.mdx +++ b/api_docs/dashboard.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dashboard'] warning: 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. --- - import dashboardObj from './dashboard.json'; @@ -19,7 +18,7 @@ import dashboardObj from './dashboard.json'; | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 145 | 1 | 133 | 9 | +| 160 | 1 | 137 | 9 | ## Client diff --git a/api_docs/dashboard_enhanced.json b/api_docs/dashboard_enhanced.json index b1ce19250a597..09eda93ed0144 100644 --- a/api_docs/dashboard_enhanced.json +++ b/api_docs/dashboard_enhanced.json @@ -124,10 +124,10 @@ }, { "parentPluginId": "dashboardEnhanced", - "id": "def-public.AbstractDashboardDrilldown.getURL", + "id": "def-public.AbstractDashboardDrilldown.getLocation", "type": "Function", "tags": [], - "label": "getURL", + "label": "getLocation", "description": [], "signature": [ "(config: ", @@ -139,14 +139,8 @@ "text": "DrilldownConfig" }, ", context: Context) => Promise<", - { - "pluginId": "share", - "scope": "public", - "docId": "kibSharePluginApi", - "section": "def-public.KibanaURL", - "text": "KibanaURL" - }, - ">" + "KibanaLocation", + ">" ], "source": { "path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/abstract_dashboard_drilldown.tsx", @@ -156,7 +150,7 @@ "children": [ { "parentPluginId": "dashboardEnhanced", - "id": "def-public.AbstractDashboardDrilldown.getURL.$1", + "id": "def-public.AbstractDashboardDrilldown.getLocation.$1", "type": "Object", "tags": [], "label": "config", @@ -179,7 +173,7 @@ }, { "parentPluginId": "dashboardEnhanced", - "id": "def-public.AbstractDashboardDrilldown.getURL.$2", + "id": "def-public.AbstractDashboardDrilldown.getLocation.$2", "type": "Uncategorized", "tags": [], "label": "context", @@ -459,7 +453,7 @@ ], "source": { "path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/abstract_dashboard_drilldown.tsx", - "lineNumber": 72 + "lineNumber": 76 }, "deprecated": false, "children": [ @@ -481,7 +475,7 @@ ], "source": { "path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/abstract_dashboard_drilldown.tsx", - "lineNumber": 72 + "lineNumber": 76 }, "deprecated": false, "isRequired": true @@ -498,7 +492,7 @@ ], "source": { "path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/abstract_dashboard_drilldown.tsx", - "lineNumber": 72 + "lineNumber": 76 }, "deprecated": false, "isRequired": true @@ -508,24 +502,32 @@ }, { "parentPluginId": "dashboardEnhanced", - "id": "def-public.AbstractDashboardDrilldown.urlGenerator", + "id": "def-public.AbstractDashboardDrilldown.locator", "type": "Object", "tags": [], - "label": "urlGenerator", + "label": "locator", "description": [], "signature": [ { "pluginId": "share", - "scope": "public", + "scope": "common", "docId": "kibSharePluginApi", - "section": "def-public.UrlGeneratorContract", - "text": "UrlGeneratorContract" + "section": "def-common.LocatorPublic", + "text": "LocatorPublic" }, - "<\"DASHBOARD_APP_URL_GENERATOR\">" + "<", + { + "pluginId": "dashboard", + "scope": "public", + "docId": "kibDashboardPluginApi", + "section": "def-public.DashboardAppLocatorParams", + "text": "DashboardAppLocatorParams" + }, + ">" ], "source": { "path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/abstract_dashboard_drilldown.tsx", - "lineNumber": 77 + "lineNumber": 84 }, "deprecated": false } diff --git a/api_docs/dashboard_enhanced.mdx b/api_docs/dashboard_enhanced.mdx index 4af7f6f96cf23..41c3513a12a4e 100644 --- a/api_docs/dashboard_enhanced.mdx +++ b/api_docs/dashboard_enhanced.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dashboardEnhanced'] warning: 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. --- - import dashboardEnhancedObj from './dashboard_enhanced.json'; diff --git a/api_docs/dashboard_mode.mdx b/api_docs/dashboard_mode.mdx index 28b68e29bd5f2..606532e85fe78 100644 --- a/api_docs/dashboard_mode.mdx +++ b/api_docs/dashboard_mode.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dashboardMode'] warning: 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. --- - import dashboardModeObj from './dashboard_mode.json'; diff --git a/api_docs/data.json b/api_docs/data.json index 993dcec522d5e..d1d776b5aea84 100644 --- a/api_docs/data.json +++ b/api_docs/data.json @@ -446,7 +446,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 202 + "lineNumber": 201 }, "deprecated": false, "children": [ @@ -469,7 +469,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 202 + "lineNumber": 201 }, "deprecated": false, "isRequired": false @@ -489,7 +489,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 206 + "lineNumber": 205 }, "deprecated": false, "children": [], @@ -507,7 +507,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 210 + "lineNumber": 209 }, "deprecated": false, "children": [ @@ -523,7 +523,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 210 + "lineNumber": 209 }, "deprecated": false, "isRequired": true @@ -540,7 +540,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 210 + "lineNumber": 209 }, "deprecated": false, "isRequired": true @@ -580,7 +580,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 236 + "lineNumber": 235 }, "deprecated": false, "children": [ @@ -604,7 +604,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 236 + "lineNumber": 235 }, "deprecated": false, "isRequired": true @@ -628,7 +628,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 236 + "lineNumber": 235 }, "deprecated": false, "isRequired": false @@ -660,7 +660,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 257 + "lineNumber": 256 }, "deprecated": false, "children": [ @@ -685,7 +685,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 257 + "lineNumber": 256 }, "deprecated": false, "isRequired": false @@ -709,7 +709,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 292 + "lineNumber": 291 }, "deprecated": false, "children": [], @@ -733,7 +733,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 323 + "lineNumber": 322 }, "deprecated": true, "references": [ @@ -762,7 +762,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 334 + "lineNumber": 333 }, "deprecated": false, "children": [], @@ -788,7 +788,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 343 + "lineNumber": 342 }, "deprecated": false, "children": [], @@ -824,7 +824,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 398 + "lineNumber": 397 }, "deprecated": false, "children": [], @@ -850,7 +850,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 402 + "lineNumber": 401 }, "deprecated": false, "children": [], @@ -876,7 +876,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 406 + "lineNumber": 405 }, "deprecated": false, "children": [], @@ -894,7 +894,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 410 + "lineNumber": 409 }, "deprecated": false, "children": [ @@ -910,7 +910,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 410 + "lineNumber": 409 }, "deprecated": false, "isRequired": true @@ -930,7 +930,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 414 + "lineNumber": 413 }, "deprecated": false, "children": [ @@ -946,7 +946,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 414 + "lineNumber": 413 }, "deprecated": false, "isRequired": true @@ -963,7 +963,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 414 + "lineNumber": 413 }, "deprecated": false, "isRequired": false @@ -983,7 +983,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 422 + "lineNumber": 421 }, "deprecated": false, "children": [], @@ -1001,7 +1001,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 428 + "lineNumber": 427 }, "deprecated": false, "children": [], @@ -1021,7 +1021,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 437 + "lineNumber": 436 }, "deprecated": false, "children": [], @@ -1039,7 +1039,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 441 + "lineNumber": 440 }, "deprecated": false, "children": [ @@ -1055,7 +1055,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 441 + "lineNumber": 440 }, "deprecated": false, "isRequired": true @@ -1082,7 +1082,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 455 + "lineNumber": 454 }, "deprecated": false, "children": [], @@ -1108,7 +1108,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 459 + "lineNumber": 458 }, "deprecated": false, "children": [], @@ -1126,7 +1126,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 463 + "lineNumber": 462 }, "deprecated": false, "children": [], @@ -1144,7 +1144,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 468 + "lineNumber": 467 }, "deprecated": false, "children": [], @@ -1193,7 +1193,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 479 + "lineNumber": 478 }, "deprecated": false }, @@ -1240,7 +1240,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 483 + "lineNumber": 482 }, "deprecated": false }, @@ -1264,7 +1264,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 513 + "lineNumber": 512 }, "deprecated": false, "children": [ @@ -1286,7 +1286,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 513 + "lineNumber": 512 }, "deprecated": false, "isRequired": true @@ -1648,6 +1648,36 @@ ], "returnComment": [] }, + { + "parentPluginId": "data", + "id": "def-public.AggConfigs.getResolvedTimeRange", + "type": "Function", + "tags": [], + "label": "getResolvedTimeRange", + "description": [ + "\nReturns the current time range as moment instance (date math will get resolved using the current \"now\" value or system time if not set)" + ], + "signature": [ + "() => ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataQueryPluginApi", + "section": "def-common.TimeRangeBounds", + "text": "TimeRangeBounds" + }, + " | undefined" + ], + "source": { + "path": "src/plugins/data/common/search/aggs/agg_configs.ts", + "lineNumber": 134 + }, + "deprecated": false, + "children": [], + "returnComment": [ + "Current time range as resolved date." + ] + }, { "parentPluginId": "data", "id": "def-public.AggConfigs.clone", @@ -1667,7 +1697,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 131 + "lineNumber": 144 }, "deprecated": false, "children": [ @@ -1683,7 +1713,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 131 + "lineNumber": 144 }, "deprecated": false, "isRequired": true @@ -1737,7 +1767,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 144 + "lineNumber": 157 }, "deprecated": false, "children": [ @@ -1771,7 +1801,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 145 + "lineNumber": 158 }, "deprecated": false, "isRequired": true @@ -1788,7 +1818,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 146 + "lineNumber": 159 }, "deprecated": false, "isRequired": true @@ -1818,7 +1848,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 187 + "lineNumber": 200 }, "deprecated": false, "children": [ @@ -1843,7 +1873,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 187 + "lineNumber": 200 }, "deprecated": false, "isRequired": true @@ -1863,7 +1893,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 199 + "lineNumber": 212 }, "deprecated": false, "children": [], @@ -1889,7 +1919,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 289 + "lineNumber": 302 }, "deprecated": false, "children": [], @@ -1914,7 +1944,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 293 + "lineNumber": 306 }, "deprecated": false, "children": [ @@ -1930,7 +1960,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 293 + "lineNumber": 306 }, "deprecated": false, "isRequired": true @@ -1958,7 +1988,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 297 + "lineNumber": 310 }, "deprecated": false, "children": [ @@ -1974,7 +2004,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 297 + "lineNumber": 310 }, "deprecated": false, "isRequired": true @@ -2002,7 +2032,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 301 + "lineNumber": 314 }, "deprecated": false, "children": [ @@ -2018,7 +2048,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 301 + "lineNumber": 314 }, "deprecated": false, "isRequired": true @@ -2046,7 +2076,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 305 + "lineNumber": 318 }, "deprecated": false, "children": [ @@ -2062,7 +2092,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 305 + "lineNumber": 318 }, "deprecated": false, "isRequired": true @@ -2090,7 +2120,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 309 + "lineNumber": 322 }, "deprecated": false, "children": [ @@ -2106,7 +2136,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 309 + "lineNumber": 322 }, "deprecated": false, "isRequired": true @@ -2134,7 +2164,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 313 + "lineNumber": 326 }, "deprecated": false, "children": [ @@ -2150,7 +2180,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 313 + "lineNumber": 326 }, "deprecated": false, "isRequired": true @@ -2178,7 +2208,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 317 + "lineNumber": 330 }, "deprecated": false, "children": [], @@ -2196,7 +2226,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 331 + "lineNumber": 344 }, "deprecated": false, "children": [], @@ -2214,7 +2244,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 346 + "lineNumber": 359 }, "deprecated": false, "children": [], @@ -2232,7 +2262,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 353 + "lineNumber": 366 }, "deprecated": false, "children": [], @@ -2258,7 +2288,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 357 + "lineNumber": 370 }, "deprecated": false, "children": [ @@ -2274,7 +2304,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 357 + "lineNumber": 370 }, "deprecated": false, "isRequired": false @@ -2310,7 +2340,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 410 + "lineNumber": 423 }, "deprecated": false, "children": [ @@ -2333,7 +2363,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 410 + "lineNumber": 423 }, "deprecated": false, "isRequired": true @@ -2361,7 +2391,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 429 + "lineNumber": 442 }, "deprecated": false, "children": [ @@ -2377,7 +2407,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 429 + "lineNumber": 442 }, "deprecated": false, "isRequired": true @@ -2409,7 +2439,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 444 + "lineNumber": 457 }, "deprecated": false, "children": [], @@ -2439,7 +2469,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 458 + "lineNumber": 471 }, "deprecated": false, "children": [ @@ -2457,7 +2487,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 458 + "lineNumber": 471 }, "deprecated": false, "isRequired": true @@ -2493,7 +2523,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 467 + "lineNumber": 480 }, "deprecated": false, "children": [ @@ -2517,7 +2547,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 467 + "lineNumber": 480 }, "deprecated": false, "isRequired": true @@ -2541,7 +2571,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 467 + "lineNumber": 480 }, "deprecated": false, "isRequired": false @@ -4347,22 +4377,7 @@ "lineNumber": 272 }, "deprecated": true, - "references": [ - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/scripted_fields_table/scripted_fields_table.tsx", - "lineNumber": 117 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/field_editor/field_editor.tsx", - "lineNumber": 778 - } - } - ], + "references": [], "children": [ { "parentPluginId": "data", @@ -4412,34 +4427,6 @@ }, "deprecated": true, "references": [ - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/source_filters_table/components/table/table.tsx", - "lineNumber": 152 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/edit_index_pattern.tsx", - "lineNumber": 66 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/edit_index_pattern.tsx", - "lineNumber": 74 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/edit_index_pattern.tsx", - "lineNumber": 204 - } - }, { "plugin": "visTypeTimeseries", "link": { @@ -4506,15 +4493,7 @@ "lineNumber": 291 }, "deprecated": true, - "references": [ - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/scripted_fields_table/scripted_fields_table.tsx", - "lineNumber": 61 - } - } - ], + "references": [], "children": [], "returnComment": [] }, @@ -4782,7 +4761,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 368 + "lineNumber": 367 }, "deprecated": false, "children": [ @@ -4800,7 +4779,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 368 + "lineNumber": 367 }, "deprecated": false, "isRequired": true @@ -4825,7 +4804,145 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 368 + "lineNumber": 367 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [] + }, + { + "parentPluginId": "data", + "id": "def-public.IndexPattern.hasRuntimeField", + "type": "Function", + "tags": [], + "label": "hasRuntimeField", + "description": [ + "\nChecks if runtime field exists" + ], + "signature": [ + "(name: string) => boolean" + ], + "source": { + "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", + "lineNumber": 389 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "data", + "id": "def-public.IndexPattern.hasRuntimeField.$1", + "type": "string", + "tags": [], + "label": "name", + "description": [], + "signature": [ + "string" + ], + "source": { + "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", + "lineNumber": 389 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [] + }, + { + "parentPluginId": "data", + "id": "def-public.IndexPattern.getRuntimeField", + "type": "Function", + "tags": [], + "label": "getRuntimeField", + "description": [ + "\nReturns runtime field if exists" + ], + "signature": [ + "(name: string) => ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataIndexPatternsPluginApi", + "section": "def-common.RuntimeField", + "text": "RuntimeField" + }, + " | null" + ], + "source": { + "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", + "lineNumber": 397 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "data", + "id": "def-public.IndexPattern.getRuntimeField.$1", + "type": "string", + "tags": [], + "label": "name", + "description": [], + "signature": [ + "string" + ], + "source": { + "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", + "lineNumber": 397 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [] + }, + { + "parentPluginId": "data", + "id": "def-public.IndexPattern.replaceAllRuntimeFields", + "type": "Function", + "tags": [], + "label": "replaceAllRuntimeFields", + "description": [ + "\nReplaces all existing runtime fields with new fields" + ], + "signature": [ + "(newFields: Record) => void" + ], + "source": { + "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", + "lineNumber": 405 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "data", + "id": "def-public.IndexPattern.replaceAllRuntimeFields.$1", + "type": "Object", + "tags": [], + "label": "newFields", + "description": [], + "signature": [ + "Record" + ], + "source": { + "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", + "lineNumber": 405 }, "deprecated": false, "isRequired": true @@ -4840,14 +4957,14 @@ "tags": [], "label": "removeRuntimeField", "description": [ - "\nRemove a runtime field - removed from mapped field or removed unmapped\nfield as appropriate" + "\nRemove a runtime field - removed from mapped field or removed unmapped\nfield as appropriate. Doesn't clear associated field attributes." ], "signature": [ "(name: string) => void" ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 392 + "lineNumber": 421 }, "deprecated": false, "children": [ @@ -4858,14 +4975,14 @@ "tags": [], "label": "name", "description": [ - "Field name" + "- Field name to remove" ], "signature": [ "string" ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 392 + "lineNumber": 421 }, "deprecated": false, "isRequired": true @@ -4895,7 +5012,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 412 + "lineNumber": 438 }, "deprecated": false, "children": [ @@ -4911,7 +5028,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 412 + "lineNumber": 438 }, "deprecated": false, "isRequired": true @@ -4939,7 +5056,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 419 + "lineNumber": 445 }, "deprecated": false, "children": [ @@ -4955,7 +5072,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 420 + "lineNumber": 446 }, "deprecated": false, "isRequired": true @@ -4972,7 +5089,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 421 + "lineNumber": 447 }, "deprecated": false, "isRequired": true @@ -4996,7 +5113,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 422 + "lineNumber": 448 }, "deprecated": false, "isRequired": true @@ -5016,7 +5133,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 430 + "lineNumber": 456 }, "deprecated": false, "children": [ @@ -5032,7 +5149,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 430 + "lineNumber": 456 }, "deprecated": false, "isRequired": true @@ -5049,7 +5166,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 430 + "lineNumber": 456 }, "deprecated": false, "isRequired": false @@ -5069,7 +5186,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 441 + "lineNumber": 467 }, "deprecated": false, "children": [ @@ -5085,7 +5202,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 441 + "lineNumber": 467 }, "deprecated": false, "isRequired": true @@ -5102,7 +5219,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 441 + "lineNumber": 467 }, "deprecated": false, "isRequired": false @@ -5130,7 +5247,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 454 + "lineNumber": 480 }, "deprecated": false, "children": [ @@ -5146,7 +5263,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 454 + "lineNumber": 480 }, "deprecated": false, "isRequired": true @@ -5170,7 +5287,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 454 + "lineNumber": 480 }, "deprecated": false, "isRequired": true @@ -5190,7 +5307,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 458 + "lineNumber": 484 }, "deprecated": false, "children": [ @@ -5206,7 +5323,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 458 + "lineNumber": 484 }, "deprecated": false, "isRequired": true @@ -5883,7 +6000,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 57 + "lineNumber": 56 }, "deprecated": false, "children": [ @@ -5899,7 +6016,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 67 + "lineNumber": 66 }, "deprecated": false, "returnComment": [], @@ -5917,7 +6034,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 69 + "lineNumber": 68 }, "deprecated": false, "children": [ @@ -5933,7 +6050,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 69 + "lineNumber": 68 }, "deprecated": false, "isRequired": true @@ -5955,7 +6072,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 108 + "lineNumber": 107 }, "deprecated": false, "children": [ @@ -5973,7 +6090,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 108 + "lineNumber": 107 }, "deprecated": false, "isRequired": true @@ -5995,7 +6112,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 122 + "lineNumber": 121 }, "deprecated": false, "children": [ @@ -6013,7 +6130,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 122 + "lineNumber": 121 }, "deprecated": false, "isRequired": true @@ -6043,7 +6160,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 138 + "lineNumber": 137 }, "deprecated": false, "children": [ @@ -6059,7 +6176,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 138 + "lineNumber": 137 }, "deprecated": false, "isRequired": true @@ -6076,7 +6193,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 138 + "lineNumber": 137 }, "deprecated": false, "isRequired": true @@ -6100,7 +6217,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 156 + "lineNumber": 155 }, "deprecated": false, "children": [ @@ -6118,7 +6235,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 157 + "lineNumber": 156 }, "deprecated": false, "isRequired": true @@ -6140,7 +6257,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 175 + "lineNumber": 174 }, "deprecated": false, "children": [ @@ -6158,7 +6275,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 175 + "lineNumber": 174 }, "deprecated": false, "isRequired": false @@ -6182,7 +6299,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 184 + "lineNumber": 183 }, "deprecated": false, "children": [], @@ -6210,7 +6327,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 194 + "lineNumber": 193 }, "deprecated": false, "children": [], @@ -6230,7 +6347,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 206 + "lineNumber": 205 }, "deprecated": false, "children": [], @@ -6250,7 +6367,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 216 + "lineNumber": 215 }, "deprecated": false, "children": [ @@ -6266,7 +6383,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 216 + "lineNumber": 215 }, "deprecated": false, "isRequired": false @@ -6283,7 +6400,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 216 + "lineNumber": 215 }, "deprecated": false, "isRequired": true @@ -6313,7 +6430,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 227 + "lineNumber": 226 }, "deprecated": false, "children": [ @@ -6335,7 +6452,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 227 + "lineNumber": 226 }, "deprecated": false, "isRequired": true @@ -6383,7 +6500,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 243 + "lineNumber": 242 }, "deprecated": false, "children": [ @@ -6413,7 +6530,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 244 + "lineNumber": 243 }, "deprecated": false, "isRequired": true @@ -6437,7 +6554,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 245 + "lineNumber": 244 }, "deprecated": false, "isRequired": false @@ -6469,7 +6586,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 258 + "lineNumber": 257 }, "deprecated": false, "children": [ @@ -6491,7 +6608,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 258 + "lineNumber": 257 }, "deprecated": false, "isRequired": true @@ -6537,7 +6654,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 335 + "lineNumber": 334 }, "deprecated": false, "children": [ @@ -6562,7 +6679,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 335 + "lineNumber": 334 }, "deprecated": false, "isRequired": true @@ -6588,7 +6705,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 335 + "lineNumber": 334 }, "deprecated": false, "isRequired": false @@ -6629,7 +6746,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 351 + "lineNumber": 350 }, "deprecated": false, "children": [ @@ -6654,7 +6771,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 351 + "lineNumber": 350 }, "deprecated": false, "isRequired": true @@ -6686,7 +6803,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 480 + "lineNumber": 483 }, "deprecated": false, "children": [ @@ -6702,7 +6819,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 480 + "lineNumber": 483 }, "deprecated": false, "isRequired": true @@ -6740,7 +6857,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 499 + "lineNumber": 502 }, "deprecated": false, "children": [ @@ -6762,7 +6879,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 499 + "lineNumber": 502 }, "deprecated": false, "isRequired": true @@ -6779,7 +6896,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 499 + "lineNumber": 502 }, "deprecated": false, "isRequired": true @@ -6819,7 +6936,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 524 + "lineNumber": 527 }, "deprecated": false, "children": [ @@ -6841,7 +6958,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 524 + "lineNumber": 527 }, "deprecated": false, "isRequired": true @@ -6860,7 +6977,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 524 + "lineNumber": 527 }, "deprecated": false, "isRequired": true @@ -6879,7 +6996,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 524 + "lineNumber": 527 }, "deprecated": false, "isRequired": true @@ -6917,7 +7034,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 537 + "lineNumber": 540 }, "deprecated": false, "children": [ @@ -6939,7 +7056,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 537 + "lineNumber": 540 }, "deprecated": false, "isRequired": true @@ -6958,7 +7075,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 537 + "lineNumber": 540 }, "deprecated": false, "isRequired": true @@ -6988,7 +7105,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 570 + "lineNumber": 573 }, "deprecated": false, "children": [ @@ -7010,7 +7127,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 571 + "lineNumber": 574 }, "deprecated": false, "isRequired": true @@ -7027,7 +7144,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 572 + "lineNumber": 575 }, "deprecated": false, "isRequired": true @@ -7044,7 +7161,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 573 + "lineNumber": 576 }, "deprecated": false, "isRequired": true @@ -7066,7 +7183,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 656 + "lineNumber": 661 }, "deprecated": false, "children": [ @@ -7084,7 +7201,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 656 + "lineNumber": 661 }, "deprecated": false, "isRequired": true @@ -7682,15 +7799,15 @@ { "plugin": "discover", "link": { - "path": "src/plugins/discover/public/application/embeddable/search_embeddable.ts", - "lineNumber": 207 + "path": "src/plugins/discover/public/application/embeddable/saved_search_embeddable.tsx", + "lineNumber": 288 } }, { "plugin": "discover", "link": { - "path": "src/plugins/discover/public/application/embeddable/search_embeddable.ts", - "lineNumber": 213 + "path": "src/plugins/discover/public/application/embeddable/saved_search_embeddable.tsx", + "lineNumber": 294 } } ], @@ -7993,6 +8110,13 @@ "lineNumber": 77 } }, + { + "plugin": "discover", + "link": { + "path": "src/plugins/discover/public/application/angular/context/api/anchor.ts", + "lineNumber": 52 + } + }, { "plugin": "maps", "link": { @@ -8004,14 +8128,14 @@ "plugin": "maps", "link": { "path": "x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx", - "lineNumber": 498 + "lineNumber": 530 } }, { "plugin": "maps", "link": { - "path": "x-pack/plugins/maps/public/classes/layers/blended_vector_layer/blended_vector_layer.ts", - "lineNumber": 330 + "path": "x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx", + "lineNumber": 819 } } ], @@ -8306,7 +8430,7 @@ ], "source": { "path": "src/plugins/data/common/search/search_source/extract_references.ts", - "lineNumber": 13 + "lineNumber": 15 }, "deprecated": false, "children": [ @@ -8328,7 +8452,7 @@ ], "source": { "path": "src/plugins/data/common/search/search_source/extract_references.ts", - "lineNumber": 14 + "lineNumber": 16 }, "deprecated": false, "isRequired": true @@ -11807,7 +11931,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 154 + "lineNumber": 153 }, "deprecated": false, "children": [ @@ -11823,7 +11947,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 155 + "lineNumber": 154 }, "deprecated": false }, @@ -11839,7 +11963,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 156 + "lineNumber": 155 }, "deprecated": false } @@ -11868,20 +11992,6 @@ "lineNumber": 104 } }, - { - "plugin": "discover", - "link": { - "path": "src/plugins/discover/public/application/embeddable/search_embeddable.ts", - "lineNumber": 23 - } - }, - { - "plugin": "discover", - "link": { - "path": "src/plugins/discover/public/application/embeddable/search_embeddable.ts", - "lineNumber": 59 - } - }, { "plugin": "maps", "link": { @@ -12152,21 +12262,21 @@ "plugin": "maps", "link": { "path": "x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx", - "lineNumber": 13 + "lineNumber": 12 } }, { "plugin": "maps", "link": { "path": "x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx", - "lineNumber": 164 + "lineNumber": 175 } }, { "plugin": "maps", "link": { "path": "x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx", - "lineNumber": 281 + "lineNumber": 292 } }, { @@ -12246,90 +12356,6 @@ "lineNumber": 66 } }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/service/list/config.ts", - "lineNumber": 10 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/service/list/config.ts", - "lineNumber": 42 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/service/list/manager.ts", - "lineNumber": 9 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/service/list/manager.ts", - "lineNumber": 43 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/create_index_pattern_wizard/lib/extract_time_fields.ts", - "lineNumber": 10 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/create_index_pattern_wizard/lib/extract_time_fields.ts", - "lineNumber": 12 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/indexed_fields_table/types.ts", - "lineNumber": 9 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/indexed_fields_table/types.ts", - "lineNumber": 11 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/indexed_fields_table/indexed_fields_table.tsx", - "lineNumber": 11 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/indexed_fields_table/indexed_fields_table.tsx", - "lineNumber": 23 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/field_editor/field_editor.tsx", - "lineNumber": 45 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/field_editor/field_editor.tsx", - "lineNumber": 148 - } - }, { "plugin": "ml", "link": { @@ -13128,6 +13154,20 @@ "lineNumber": 9 } }, + { + "plugin": "discover", + "link": { + "path": "src/plugins/discover/public/application/embeddable/saved_search_embeddable.tsx", + "lineNumber": 25 + } + }, + { + "plugin": "discover", + "link": { + "path": "src/plugins/discover/public/application/embeddable/saved_search_embeddable.tsx", + "lineNumber": 53 + } + }, { "plugin": "maps", "link": { @@ -13202,7 +13242,7 @@ "plugin": "lens", "link": { "path": "x-pack/plugins/lens/public/indexpattern_datasource/types.ts", - "lineNumber": 57 + "lineNumber": 60 } }, { @@ -14028,7 +14068,14 @@ "plugin": "stackAlerts", "link": { "path": "x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/entity_by_expression.tsx", - "lineNumber": 45 + "lineNumber": 26 + } + }, + { + "plugin": "stackAlerts", + "link": { + "path": "x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/entity_by_expression.tsx", + "lineNumber": 26 } }, { @@ -14083,14 +14130,14 @@ { "plugin": "maps", "link": { - "path": "x-pack/plugins/maps/public/classes/sources/es_search_source/get_docvalue_source_fields.test.ts", + "path": "x-pack/plugins/maps/public/classes/sources/es_search_source/util/get_docvalue_source_fields.test.ts", "lineNumber": 10 } }, { "plugin": "maps", "link": { - "path": "x-pack/plugins/maps/public/classes/sources/es_search_source/get_docvalue_source_fields.test.ts", + "path": "x-pack/plugins/maps/public/classes/sources/es_search_source/util/get_docvalue_source_fields.test.ts", "lineNumber": 12 } } @@ -14437,9 +14484,26 @@ ], "label": "IIndexPattern", "description": [], + "signature": [ + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataIndexPatternsPluginApi", + "section": "def-common.IIndexPattern", + "text": "IIndexPattern" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" + } + ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 32 + "lineNumber": 33 }, "deprecated": true, "references": [ @@ -14534,118 +14598,6 @@ "lineNumber": 72 } }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/service/list/config.ts", - "lineNumber": 10 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/service/list/config.ts", - "lineNumber": 29 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/service/list/config.ts", - "lineNumber": 29 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/service/list/config.ts", - "lineNumber": 42 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/service/list/config.ts", - "lineNumber": 46 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/service/list/manager.ts", - "lineNumber": 9 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/service/list/manager.ts", - "lineNumber": 32 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/service/list/manager.ts", - "lineNumber": 32 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/service/list/manager.ts", - "lineNumber": 43 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/service/list/manager.ts", - "lineNumber": 50 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/indexed_fields_table/components/table/table.tsx", - "lineNumber": 22 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/indexed_fields_table/components/table/table.tsx", - "lineNumber": 171 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/scripted_fields_table/components/table/table.tsx", - "lineNumber": 15 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/scripted_fields_table/components/table/table.tsx", - "lineNumber": 18 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/index_header/index_header.tsx", - "lineNumber": 12 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/index_header/index_header.tsx", - "lineNumber": 15 - } - }, { "plugin": "savedObjectsManagement", "link": { @@ -14930,7 +14882,7 @@ "plugin": "infra", "link": { "path": "x-pack/plugins/infra/public/pages/metrics/metrics_explorer/components/toolbar.tsx", - "lineNumber": 32 + "lineNumber": 31 } }, { @@ -14958,7 +14910,7 @@ "plugin": "infra", "link": { "path": "x-pack/plugins/infra/public/pages/metrics/metrics_explorer/index.tsx", - "lineNumber": 23 + "lineNumber": 24 } }, { @@ -15004,94 +14956,143 @@ } }, { - "plugin": "securitySolution", + "plugin": "timelines", "link": { - "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/types.ts", - "lineNumber": 22 + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 8 + } + }, + { + "plugin": "timelines", + "link": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 86 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/types.ts", - "lineNumber": 72 + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 8 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/action.ts", + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 86 + } + }, + { + "plugin": "timelines", + "link": { + "path": "x-pack/plugins/timelines/public/components/utils/keury/index.ts", + "lineNumber": 17 + } + }, + { + "plugin": "timelines", + "link": { + "path": "x-pack/plugins/timelines/public/components/utils/keury/index.ts", + "lineNumber": 22 + } + }, + { + "plugin": "timelines", + "link": { + "path": "x-pack/plugins/timelines/public/components/utils/keury/index.ts", + "lineNumber": 37 + } + }, + { + "plugin": "timelines", + "link": { + "path": "x-pack/plugins/timelines/public/components/utils/keury/index.ts", + "lineNumber": 80 + } + }, + { + "plugin": "timelines", + "link": { + "path": "x-pack/plugins/timelines/public/components/t_grid/helpers.tsx", "lineNumber": 20 } }, { - "plugin": "securitySolution", + "plugin": "timelines", "link": { - "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/action.ts", - "lineNumber": 100 + "path": "x-pack/plugins/timelines/public/components/t_grid/helpers.tsx", + "lineNumber": 153 } }, { - "plugin": "securitySolution", + "plugin": "timelines", "link": { - "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", - "lineNumber": 8 + "path": "x-pack/plugins/timelines/public/components/t_grid/integrated/index.tsx", + "lineNumber": 31 + } + }, + { + "plugin": "timelines", + "link": { + "path": "x-pack/plugins/timelines/public/components/t_grid/integrated/index.tsx", + "lineNumber": 121 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", - "lineNumber": 86 + "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/types.ts", + "lineNumber": 23 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/common/containers/source/index.tsx", - "lineNumber": 12 + "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/types.ts", + "lineNumber": 81 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/common/containers/source/index.tsx", - "lineNumber": 48 + "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/action.ts", + "lineNumber": 20 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/common/containers/source/index.tsx", - "lineNumber": 122 + "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/action.ts", + "lineNumber": 100 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/common/components/url_state/types.ts", - "lineNumber": 13 + "path": "x-pack/plugins/security_solution/public/common/containers/source/index.tsx", + "lineNumber": 12 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/common/components/url_state/types.ts", - "lineNumber": 112 + "path": "x-pack/plugins/security_solution/public/common/containers/source/index.tsx", + "lineNumber": 48 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/common/components/url_state/types.ts", - "lineNumber": 152 + "path": "x-pack/plugins/security_solution/public/common/containers/source/index.tsx", + "lineNumber": 122 } }, { "plugin": "securitySolution", "link": { "path": "x-pack/plugins/security_solution/public/common/lib/keury/index.ts", - "lineNumber": 16 + "lineNumber": 17 } }, { @@ -15182,14 +15183,14 @@ "plugin": "securitySolution", "link": { "path": "x-pack/plugins/security_solution/public/common/components/events_viewer/events_viewer.tsx", - "lineNumber": 35 + "lineNumber": 36 } }, { "plugin": "securitySolution", "link": { "path": "x-pack/plugins/security_solution/public/common/components/events_viewer/events_viewer.tsx", - "lineNumber": 122 + "lineNumber": 126 } }, { @@ -15237,148 +15238,169 @@ { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/common/components/search_bar/index.tsx", - "lineNumber": 18 + "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts", + "lineNumber": 55 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/common/components/search_bar/index.tsx", - "lineNumber": 51 + "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts", + "lineNumber": 77 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/network/pages/details/types.ts", - "lineNumber": 8 + "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts", + "lineNumber": 82 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/network/pages/details/types.ts", - "lineNumber": 41 + "path": "x-pack/plugins/security_solution/public/common/components/url_state/types.ts", + "lineNumber": 13 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/network/components/network_top_countries_table/index.tsx", - "lineNumber": 12 + "path": "x-pack/plugins/security_solution/public/common/components/url_state/types.ts", + "lineNumber": 128 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/network/components/network_top_countries_table/index.tsx", - "lineNumber": 34 + "path": "x-pack/plugins/security_solution/public/common/components/url_state/types.ts", + "lineNumber": 168 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts", - "lineNumber": 48 + "path": "x-pack/plugins/security_solution/public/common/components/search_bar/index.tsx", + "lineNumber": 18 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts", - "lineNumber": 64 + "path": "x-pack/plugins/security_solution/public/common/components/search_bar/index.tsx", + "lineNumber": 51 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts", - "lineNumber": 69 + "path": "x-pack/plugins/security_solution/public/network/pages/details/types.ts", + "lineNumber": 8 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/detections/components/rules/description_step/types.ts", + "path": "x-pack/plugins/security_solution/public/network/pages/details/types.ts", + "lineNumber": 41 + } + }, + { + "plugin": "securitySolution", + "link": { + "path": "x-pack/plugins/security_solution/public/network/components/network_top_countries_table/index.tsx", "lineNumber": 12 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/detections/components/rules/description_step/types.ts", - "lineNumber": 28 + "path": "x-pack/plugins/security_solution/public/network/components/network_top_countries_table/index.tsx", + "lineNumber": 34 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/detections/components/rules/description_step/index.tsx", - "lineNumber": 15 + "path": "x-pack/plugins/security_solution/public/hosts/pages/details/types.ts", + "lineNumber": 9 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/detections/components/rules/description_step/index.tsx", - "lineNumber": 58 + "path": "x-pack/plugins/security_solution/public/hosts/pages/details/types.ts", + "lineNumber": 65 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/detections/components/rules/description_step/index.tsx", - "lineNumber": 132 + "path": "x-pack/plugins/security_solution/public/overview/components/alerts_by_category/index.tsx", + "lineNumber": 20 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/detections/components/rules/description_step/index.tsx", - "lineNumber": 164 + "path": "x-pack/plugins/security_solution/public/overview/components/alerts_by_category/index.tsx", + "lineNumber": 44 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/hosts/pages/details/types.ts", - "lineNumber": 9 + "path": "x-pack/plugins/security_solution/public/overview/components/event_counts/index.tsx", + "lineNumber": 21 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/hosts/pages/details/types.ts", - "lineNumber": 65 + "path": "x-pack/plugins/security_solution/public/overview/components/event_counts/index.tsx", + "lineNumber": 33 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/overview/components/alerts_by_category/index.tsx", - "lineNumber": 20 + "path": "x-pack/plugins/security_solution/public/detections/components/rules/description_step/types.ts", + "lineNumber": 12 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/overview/components/alerts_by_category/index.tsx", - "lineNumber": 44 + "path": "x-pack/plugins/security_solution/public/detections/components/rules/description_step/types.ts", + "lineNumber": 28 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/overview/components/event_counts/index.tsx", - "lineNumber": 21 + "path": "x-pack/plugins/security_solution/public/detections/components/rules/description_step/index.tsx", + "lineNumber": 15 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/overview/components/event_counts/index.tsx", - "lineNumber": 33 + "path": "x-pack/plugins/security_solution/public/detections/components/rules/description_step/index.tsx", + "lineNumber": 58 + } + }, + { + "plugin": "securitySolution", + "link": { + "path": "x-pack/plugins/security_solution/public/detections/components/rules/description_step/index.tsx", + "lineNumber": 132 + } + }, + { + "plugin": "securitySolution", + "link": { + "path": "x-pack/plugins/security_solution/public/detections/components/rules/description_step/index.tsx", + "lineNumber": 164 } }, { @@ -15395,6 +15417,20 @@ "lineNumber": 28 } }, + { + "plugin": "timelines", + "link": { + "path": "x-pack/plugins/timelines/public/mock/index_pattern.ts", + "lineNumber": 8 + } + }, + { + "plugin": "timelines", + "link": { + "path": "x-pack/plugins/timelines/public/mock/index_pattern.ts", + "lineNumber": 10 + } + }, { "plugin": "lens", "link": { @@ -15437,6 +15473,20 @@ "lineNumber": 66 } }, + { + "plugin": "timelines", + "link": { + "path": "x-pack/plugins/timelines/target/types/common/search_strategy/index_fields/index.d.ts", + "lineNumber": 1 + } + }, + { + "plugin": "timelines", + "link": { + "path": "x-pack/plugins/timelines/target/types/common/search_strategy/index_fields/index.d.ts", + "lineNumber": 66 + } + }, { "plugin": "infra", "link": { @@ -15500,6 +15550,27 @@ "lineNumber": 23 } }, + { + "plugin": "securitySolution", + "link": { + "path": "x-pack/plugins/security_solution/target/types/public/common/components/url_state/types.d.ts", + "lineNumber": 3 + } + }, + { + "plugin": "securitySolution", + "link": { + "path": "x-pack/plugins/security_solution/target/types/public/common/components/url_state/types.d.ts", + "lineNumber": 25 + } + }, + { + "plugin": "securitySolution", + "link": { + "path": "x-pack/plugins/security_solution/target/types/public/common/components/url_state/types.d.ts", + "lineNumber": 55 + } + }, { "plugin": "infra", "link": { @@ -15542,27 +15613,6 @@ "lineNumber": 5 } }, - { - "plugin": "securitySolution", - "link": { - "path": "x-pack/plugins/security_solution/target/types/public/common/components/url_state/types.d.ts", - "lineNumber": 3 - } - }, - { - "plugin": "securitySolution", - "link": { - "path": "x-pack/plugins/security_solution/target/types/public/common/components/url_state/types.d.ts", - "lineNumber": 25 - } - }, - { - "plugin": "securitySolution", - "link": { - "path": "x-pack/plugins/security_solution/target/types/public/common/components/url_state/types.d.ts", - "lineNumber": 55 - } - }, { "plugin": "securitySolution", "link": { @@ -15756,7 +15806,7 @@ "plugin": "infra", "link": { "path": "x-pack/plugins/infra/public/pages/metrics/index.tsx", - "lineNumber": 193 + "lineNumber": 162 } }, { @@ -15909,22 +15959,36 @@ { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/network/pages/navigation/types.ts", + "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/models/index_pattern.ts", "lineNumber": 9 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/network/pages/navigation/types.ts", - "lineNumber": 35 + "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/models/index_pattern.ts", + "lineNumber": 12 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/network/pages/navigation/types.ts", - "lineNumber": 53 + "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/models/index_pattern.ts", + "lineNumber": 12 + } + }, + { + "plugin": "securitySolution", + "link": { + "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/models/index_pattern.ts", + "lineNumber": 12 + } + }, + { + "plugin": "securitySolution", + "link": { + "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/models/index_pattern.ts", + "lineNumber": 13 } }, { @@ -15966,42 +16030,28 @@ "plugin": "securitySolution", "link": { "path": "x-pack/plugins/security_solution/public/common/components/exceptions/helpers.tsx", - "lineNumber": 485 + "lineNumber": 504 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/models/index_pattern.ts", + "path": "x-pack/plugins/security_solution/public/network/pages/navigation/types.ts", "lineNumber": 9 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/models/index_pattern.ts", - "lineNumber": 12 - } - }, - { - "plugin": "securitySolution", - "link": { - "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/models/index_pattern.ts", - "lineNumber": 12 - } - }, - { - "plugin": "securitySolution", - "link": { - "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/models/index_pattern.ts", - "lineNumber": 12 + "path": "x-pack/plugins/security_solution/public/network/pages/navigation/types.ts", + "lineNumber": 35 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/models/index_pattern.ts", - "lineNumber": 13 + "path": "x-pack/plugins/security_solution/public/network/pages/navigation/types.ts", + "lineNumber": 52 } }, { @@ -16078,7 +16128,7 @@ "plugin": "securitySolution", "link": { "path": "x-pack/plugins/security_solution/server/lib/detection_engine/reference_rules/query.ts", - "lineNumber": 52 + "lineNumber": 53 } }, { @@ -16365,7 +16415,7 @@ "plugin": "observability", "link": { "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "lineNumber": 104 + "lineNumber": 94 } }, { @@ -16379,35 +16429,28 @@ "plugin": "observability", "link": { "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/utils.ts", - "lineNumber": 53 + "lineNumber": 56 } }, { "plugin": "observability", "link": { "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/utils.ts", - "lineNumber": 61 + "lineNumber": 64 } }, { "plugin": "observability", "link": { "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/utils.ts", - "lineNumber": 69 - } - }, - { - "plugin": "observability", - "link": { - "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/default_configs.ts", - "lineNumber": 19 + "lineNumber": 72 } }, { "plugin": "observability", "link": { - "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/default_configs.ts", - "lineNumber": 25 + "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/utils.ts", + "lineNumber": 89 } }, { @@ -16650,29 +16693,6 @@ } ], "children": [ - { - "parentPluginId": "data", - "id": "def-public.IIndexPattern.fields", - "type": "Array", - "tags": [], - "label": "fields", - "description": [], - "signature": [ - { - "pluginId": "data", - "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IFieldType", - "text": "IFieldType" - }, - "[]" - ], - "source": { - "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 33 - }, - "deprecated": false - }, { "parentPluginId": "data", "id": "def-public.IIndexPattern.title", @@ -16686,22 +16706,6 @@ }, "deprecated": false }, - { - "parentPluginId": "data", - "id": "def-public.IIndexPattern.id", - "type": "string", - "tags": [], - "label": "id", - "description": [], - "signature": [ - "string | undefined" - ], - "source": { - "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 35 - }, - "deprecated": false - }, { "parentPluginId": "data", "id": "def-public.IIndexPattern.type", @@ -16716,7 +16720,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 39 + "lineNumber": 38 }, "deprecated": false }, @@ -16732,7 +16736,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 40 + "lineNumber": 39 }, "deprecated": false }, @@ -16756,7 +16760,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 41 + "lineNumber": 40 }, "deprecated": false, "children": [], @@ -16782,7 +16786,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 42 + "lineNumber": 41 }, "deprecated": false }, @@ -16832,7 +16836,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 46 + "lineNumber": 45 }, "deprecated": false } @@ -17347,7 +17351,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 74 + "lineNumber": 79 }, "deprecated": false, "children": [ @@ -17365,7 +17369,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 78 + "lineNumber": 83 }, "deprecated": false }, @@ -17381,7 +17385,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 80 + "lineNumber": 85 }, "deprecated": false } @@ -17501,6 +17505,24 @@ }, "deprecated": false }, + { + "parentPluginId": "data", + "id": "def-public.IKibanaSearchResponse.isRestored", + "type": "CompoundType", + "tags": [], + "label": "isRestored", + "description": [ + "\nIndicates whether the results returned are from the async-search index" + ], + "signature": [ + "boolean | undefined" + ], + "source": { + "path": "src/plugins/data/common/search/types.ts", + "lineNumber": 71 + }, + "deprecated": false + }, { "parentPluginId": "data", "id": "def-public.IKibanaSearchResponse.rawResponse", @@ -17515,7 +17537,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 71 + "lineNumber": 76 }, "deprecated": false } @@ -17533,7 +17555,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 54 + "lineNumber": 53 }, "deprecated": false, "children": [ @@ -17546,7 +17568,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 55 + "lineNumber": 54 }, "deprecated": false }, @@ -17559,7 +17581,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 56 + "lineNumber": 55 }, "deprecated": false }, @@ -17572,7 +17594,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 57 + "lineNumber": 56 }, "deprecated": false }, @@ -17585,7 +17607,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 58 + "lineNumber": 57 }, "deprecated": false }, @@ -17601,7 +17623,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 59 + "lineNumber": 58 }, "deprecated": false }, @@ -17617,7 +17639,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 60 + "lineNumber": 59 }, "deprecated": false }, @@ -17633,7 +17655,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 61 + "lineNumber": 60 }, "deprecated": false }, @@ -17649,7 +17671,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 62 + "lineNumber": 61 }, "deprecated": false }, @@ -17665,7 +17687,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 63 + "lineNumber": 62 }, "deprecated": false }, @@ -17681,7 +17703,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 64 + "lineNumber": 63 }, "deprecated": false }, @@ -17699,7 +17721,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 68 + "lineNumber": 67 }, "deprecated": false } @@ -17717,7 +17739,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 225 + "lineNumber": 224 }, "deprecated": false, "children": [ @@ -17735,7 +17757,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 229 + "lineNumber": 228 }, "deprecated": false }, @@ -17753,7 +17775,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 233 + "lineNumber": 232 }, "deprecated": false }, @@ -17769,7 +17791,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 234 + "lineNumber": 233 }, "deprecated": false }, @@ -17787,7 +17809,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 239 + "lineNumber": 238 }, "deprecated": true, "references": [] @@ -17804,7 +17826,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 240 + "lineNumber": 239 }, "deprecated": false }, @@ -17827,7 +17849,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 241 + "lineNumber": 240 }, "deprecated": false }, @@ -17851,7 +17873,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 242 + "lineNumber": 241 }, "deprecated": false }, @@ -17874,7 +17896,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 243 + "lineNumber": 242 }, "deprecated": false }, @@ -17890,7 +17912,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 244 + "lineNumber": 243 }, "deprecated": false }, @@ -17914,7 +17936,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 245 + "lineNumber": 244 }, "deprecated": false }, @@ -17938,7 +17960,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 246 + "lineNumber": 245 }, "deprecated": false }, @@ -17961,7 +17983,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 247 + "lineNumber": 246 }, "deprecated": false }, @@ -17977,7 +17999,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 248 + "lineNumber": 247 }, "deprecated": false } @@ -17993,7 +18015,7 @@ "description": [], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 90 + "lineNumber": 95 }, "deprecated": false, "children": [ @@ -18011,7 +18033,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 94 + "lineNumber": 99 }, "deprecated": false }, @@ -18029,7 +18051,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 99 + "lineNumber": 104 }, "deprecated": false }, @@ -18047,7 +18069,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 105 + "lineNumber": 110 }, "deprecated": false }, @@ -18065,7 +18087,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 110 + "lineNumber": 115 }, "deprecated": false }, @@ -18083,7 +18105,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 115 + "lineNumber": 120 }, "deprecated": false }, @@ -18101,7 +18123,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 121 + "lineNumber": 126 }, "deprecated": false }, @@ -18126,7 +18148,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 126 + "lineNumber": 131 }, "deprecated": false }, @@ -18151,7 +18173,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 131 + "lineNumber": 136 }, "deprecated": false } @@ -18428,7 +18450,7 @@ "description": [], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 35 + "lineNumber": 36 }, "deprecated": false, "children": [ @@ -18444,7 +18466,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 36 + "lineNumber": 37 }, "deprecated": false }, @@ -18460,7 +18482,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 37 + "lineNumber": 38 }, "deprecated": false }, @@ -18476,7 +18498,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 38 + "lineNumber": 39 }, "deprecated": false }, @@ -18492,7 +18514,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 39 + "lineNumber": 40 }, "deprecated": false }, @@ -18508,7 +18530,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 40 + "lineNumber": 41 }, "deprecated": false }, @@ -18524,7 +18546,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 41 + "lineNumber": 42 }, "deprecated": false }, @@ -18540,7 +18562,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 42 + "lineNumber": 43 }, "deprecated": false } @@ -19168,7 +19190,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 159 + "lineNumber": 158 }, "deprecated": false, "children": [ @@ -19184,7 +19206,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 160 + "lineNumber": 159 }, "deprecated": false }, @@ -19200,7 +19222,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 161 + "lineNumber": 160 }, "deprecated": false } @@ -19386,7 +19408,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 142 + "lineNumber": 141 }, "deprecated": false, "initialIsOpen": false @@ -19801,7 +19823,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/exists_filter.ts", - "lineNumber": 18 + "lineNumber": 19 }, "deprecated": false, "initialIsOpen": false @@ -20429,6 +20451,23 @@ "deprecated": false, "initialIsOpen": false }, + { + "parentPluginId": "data", + "id": "def-public.INDEX_PATTERN_SAVED_OBJECT_TYPE", + "type": "string", + "tags": [], + "label": "INDEX_PATTERN_SAVED_OBJECT_TYPE", + "description": [], + "signature": [ + "\"index-pattern\"" + ], + "source": { + "path": "src/plugins/data/common/constants.ts", + "lineNumber": 13 + }, + "deprecated": false, + "initialIsOpen": false + }, { "parentPluginId": "data", "id": "def-public.IndexPatternLoadExpressionFunctionDefinition", @@ -20651,7 +20690,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 662 + "lineNumber": 667 }, "deprecated": false, "initialIsOpen": false @@ -21012,7 +21051,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrase_filter.ts", - "lineNumber": 21 + "lineNumber": 22 }, "deprecated": false, "initialIsOpen": false @@ -21044,7 +21083,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrases_filter.ts", - "lineNumber": 19 + "lineNumber": 20 }, "deprecated": false, "initialIsOpen": false @@ -21103,7 +21142,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 60 + "lineNumber": 61 }, "deprecated": false, "initialIsOpen": false @@ -21135,7 +21174,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 50 + "lineNumber": 51 }, "deprecated": false, "initialIsOpen": false @@ -21439,9 +21478,9 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" }, ") => ", { @@ -21477,7 +21516,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrases_filter.ts", - "lineNumber": 35 + "lineNumber": 36 }, "deprecated": false }, @@ -21493,7 +21532,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrases_filter.ts", - "lineNumber": 36 + "lineNumber": 37 }, "deprecated": false }, @@ -21508,14 +21547,14 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" } ], "source": { "path": "src/plugins/data/common/es_query/filters/phrases_filter.ts", - "lineNumber": 37 + "lineNumber": 38 }, "deprecated": false } @@ -21541,9 +21580,9 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" }, ") => ", { @@ -21579,7 +21618,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/exists_filter.ts", - "lineNumber": 29 + "lineNumber": 30 }, "deprecated": false }, @@ -21594,14 +21633,14 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" } ], "source": { "path": "src/plugins/data/common/es_query/filters/exists_filter.ts", - "lineNumber": 29 + "lineNumber": 30 }, "deprecated": false } @@ -21627,9 +21666,9 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" }, ") => ", { @@ -21665,7 +21704,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrase_filter.ts", - "lineNumber": 61 + "lineNumber": 62 }, "deprecated": false }, @@ -21681,7 +21720,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrase_filter.ts", - "lineNumber": 62 + "lineNumber": 63 }, "deprecated": false }, @@ -21696,14 +21735,14 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" } ], "source": { "path": "src/plugins/data/common/es_query/filters/phrase_filter.ts", - "lineNumber": 63 + "lineNumber": 64 }, "deprecated": false } @@ -21805,9 +21844,9 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" }, ", formattedValue?: string | undefined) => ", { @@ -21843,7 +21882,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 94 + "lineNumber": 92 }, "deprecated": false }, @@ -21865,7 +21904,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 95 + "lineNumber": 93 }, "deprecated": false }, @@ -21880,14 +21919,14 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" } ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 96 + "lineNumber": 94 }, "deprecated": false }, @@ -21903,7 +21942,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 97 + "lineNumber": 95 }, "deprecated": false } @@ -21945,7 +21984,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrase_filter.ts", - "lineNumber": 34 + "lineNumber": 35 }, "deprecated": false } @@ -21987,7 +22026,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/exists_filter.ts", - "lineNumber": 23 + "lineNumber": 24 }, "deprecated": false } @@ -22029,7 +22068,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrases_filter.ts", - "lineNumber": 23 + "lineNumber": 24 }, "deprecated": false } @@ -22071,7 +22110,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 73 + "lineNumber": 74 }, "deprecated": false } @@ -22447,7 +22486,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrase_filter.ts", - "lineNumber": 49 + "lineNumber": 50 }, "deprecated": false } @@ -22505,7 +22544,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrase_filter.ts", - "lineNumber": 54 + "lineNumber": 55 }, "deprecated": false } @@ -22571,8 +22610,8 @@ "; query?: any; }" ], "source": { - "path": "src/plugins/data/common/es_query/filters/get_display_value.ts", - "lineNumber": 31 + "path": "src/plugins/data/public/query/filter_manager/lib/get_display_value.ts", + "lineNumber": 30 }, "deprecated": false }, @@ -22594,8 +22633,8 @@ "[]" ], "source": { - "path": "src/plugins/data/common/es_query/filters/get_display_value.ts", - "lineNumber": 31 + "path": "src/plugins/data/public/query/filter_manager/lib/get_display_value.ts", + "lineNumber": 30 }, "deprecated": false } @@ -23605,18 +23644,12 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" }, " | undefined, config?: Record | undefined, context?: Record | undefined) => ", - { - "pluginId": "kibanaUtils", - "scope": "common", - "docId": "kibKibanaUtilsPluginApi", - "section": "def-common.JsonObject", - "text": "JsonObject" - } + "JsonObject" ], "source": { "path": "src/plugins/data/public/index.ts", @@ -23658,9 +23691,9 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" }, " | undefined" ], @@ -23732,9 +23765,9 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" }, " | undefined, queries: ", { @@ -23820,9 +23853,9 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" }, " | undefined" ], @@ -23980,9 +24013,9 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" }, " | undefined, ignoreFilterIfFieldNotInIndex?: boolean) => { must: never[]; filter: ", { @@ -24043,9 +24076,9 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" }, " | undefined" ], @@ -25196,7 +25229,7 @@ "description": [], "source": { "path": "src/plugins/data/public/index.ts", - "lineNumber": 407 + "lineNumber": 409 }, "deprecated": false, "children": [ @@ -25209,7 +25242,7 @@ "description": [], "source": { "path": "src/plugins/data/public/index.ts", - "lineNumber": 408 + "lineNumber": 410 }, "deprecated": false, "children": [ @@ -25232,7 +25265,7 @@ ], "source": { "path": "src/plugins/data/public/index.ts", - "lineNumber": 409 + "lineNumber": 411 }, "deprecated": false }, @@ -25248,7 +25281,7 @@ ], "source": { "path": "src/plugins/data/public/index.ts", - "lineNumber": 410 + "lineNumber": 412 }, "deprecated": false, "returnComment": [], @@ -25288,7 +25321,7 @@ ], "source": { "path": "src/plugins/data/public/index.ts", - "lineNumber": 411 + "lineNumber": 413 }, "deprecated": false }, @@ -25311,7 +25344,7 @@ ], "source": { "path": "src/plugins/data/public/index.ts", - "lineNumber": 412 + "lineNumber": 414 }, "deprecated": false }, @@ -25334,7 +25367,7 @@ ], "source": { "path": "src/plugins/data/public/index.ts", - "lineNumber": 413 + "lineNumber": 415 }, "deprecated": false }, @@ -25357,7 +25390,7 @@ ], "source": { "path": "src/plugins/data/public/index.ts", - "lineNumber": 414 + "lineNumber": 416 }, "deprecated": false }, @@ -25380,7 +25413,7 @@ ], "source": { "path": "src/plugins/data/public/index.ts", - "lineNumber": 415 + "lineNumber": 417 }, "deprecated": false, "returnComment": [], @@ -25423,7 +25456,7 @@ ], "source": { "path": "src/plugins/data/public/index.ts", - "lineNumber": 416 + "lineNumber": 418 }, "deprecated": false, "returnComment": [], @@ -25472,7 +25505,7 @@ ], "source": { "path": "src/plugins/data/public/index.ts", - "lineNumber": 417 + "lineNumber": 419 }, "deprecated": false, "returnComment": [], @@ -25521,7 +25554,7 @@ ], "source": { "path": "src/plugins/data/public/index.ts", - "lineNumber": 418 + "lineNumber": 420 }, "deprecated": false, "returnComment": [], @@ -25556,7 +25589,7 @@ ], "source": { "path": "src/plugins/data/public/index.ts", - "lineNumber": 419 + "lineNumber": 421 }, "deprecated": false, "returnComment": [], @@ -25588,7 +25621,7 @@ ], "source": { "path": "src/plugins/data/public/index.ts", - "lineNumber": 420 + "lineNumber": 422 }, "deprecated": false, "returnComment": [], @@ -25633,7 +25666,7 @@ "description": [], "source": { "path": "src/plugins/data/public/index.ts", - "lineNumber": 421 + "lineNumber": 423 }, "deprecated": false }, @@ -25651,7 +25684,7 @@ ], "source": { "path": "src/plugins/data/public/index.ts", - "lineNumber": 422 + "lineNumber": 424 }, "deprecated": false, "returnComment": [], @@ -25683,7 +25716,7 @@ ], "source": { "path": "src/plugins/data/public/index.ts", - "lineNumber": 423 + "lineNumber": 425 }, "deprecated": false, "returnComment": [], @@ -25715,7 +25748,7 @@ ], "source": { "path": "src/plugins/data/public/index.ts", - "lineNumber": 424 + "lineNumber": 426 }, "deprecated": false, "returnComment": [], @@ -25747,7 +25780,7 @@ "description": [], "source": { "path": "src/plugins/data/public/index.ts", - "lineNumber": 425 + "lineNumber": 427 }, "deprecated": false }, @@ -25763,7 +25796,7 @@ ], "source": { "path": "src/plugins/data/public/index.ts", - "lineNumber": 426 + "lineNumber": 428 }, "deprecated": false }, @@ -25787,7 +25820,7 @@ ], "source": { "path": "src/plugins/data/public/index.ts", - "lineNumber": 427 + "lineNumber": 429 }, "deprecated": false, "returnComment": [], @@ -25822,7 +25855,7 @@ ], "source": { "path": "src/plugins/data/public/index.ts", - "lineNumber": 428 + "lineNumber": 430 }, "deprecated": false }, @@ -25846,7 +25879,7 @@ ], "source": { "path": "src/plugins/data/public/index.ts", - "lineNumber": 429 + "lineNumber": 431 }, "deprecated": false, "returnComment": [], @@ -25903,7 +25936,7 @@ ], "source": { "path": "src/plugins/data/public/index.ts", - "lineNumber": 430 + "lineNumber": 432 }, "deprecated": false, "returnComment": [], @@ -25963,7 +25996,7 @@ ], "source": { "path": "src/plugins/data/public/index.ts", - "lineNumber": 432 + "lineNumber": 434 }, "deprecated": false, "returnComment": [], @@ -26040,7 +26073,7 @@ ], "source": { "path": "src/plugins/data/public/index.ts", - "lineNumber": 433 + "lineNumber": 435 }, "deprecated": false, "returnComment": [], @@ -26125,7 +26158,7 @@ ], "source": { "path": "src/plugins/data/public/index.ts", - "lineNumber": 434 + "lineNumber": 436 }, "deprecated": false, "returnComment": [], @@ -26183,7 +26216,7 @@ ], "source": { "path": "src/plugins/data/common/constants.ts", - "lineNumber": 12 + "lineNumber": 15 }, "deprecated": false, "initialIsOpen": false @@ -27925,22 +27958,7 @@ "lineNumber": 272 }, "deprecated": true, - "references": [ - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/scripted_fields_table/scripted_fields_table.tsx", - "lineNumber": 117 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/field_editor/field_editor.tsx", - "lineNumber": 778 - } - } - ], + "references": [], "children": [ { "parentPluginId": "data", @@ -27990,34 +28008,6 @@ }, "deprecated": true, "references": [ - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/source_filters_table/components/table/table.tsx", - "lineNumber": 152 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/edit_index_pattern.tsx", - "lineNumber": 66 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/edit_index_pattern.tsx", - "lineNumber": 74 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/edit_index_pattern.tsx", - "lineNumber": 204 - } - }, { "plugin": "visTypeTimeseries", "link": { @@ -28084,15 +28074,7 @@ "lineNumber": 291 }, "deprecated": true, - "references": [ - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/scripted_fields_table/scripted_fields_table.tsx", - "lineNumber": 61 - } - } - ], + "references": [], "children": [], "returnComment": [] }, @@ -28360,7 +28342,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 368 + "lineNumber": 367 }, "deprecated": false, "children": [ @@ -28378,7 +28360,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 368 + "lineNumber": 367 }, "deprecated": false, "isRequired": true @@ -28403,7 +28385,145 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 368 + "lineNumber": 367 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [] + }, + { + "parentPluginId": "data", + "id": "def-server.IndexPattern.hasRuntimeField", + "type": "Function", + "tags": [], + "label": "hasRuntimeField", + "description": [ + "\nChecks if runtime field exists" + ], + "signature": [ + "(name: string) => boolean" + ], + "source": { + "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", + "lineNumber": 389 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "data", + "id": "def-server.IndexPattern.hasRuntimeField.$1", + "type": "string", + "tags": [], + "label": "name", + "description": [], + "signature": [ + "string" + ], + "source": { + "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", + "lineNumber": 389 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [] + }, + { + "parentPluginId": "data", + "id": "def-server.IndexPattern.getRuntimeField", + "type": "Function", + "tags": [], + "label": "getRuntimeField", + "description": [ + "\nReturns runtime field if exists" + ], + "signature": [ + "(name: string) => ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataIndexPatternsPluginApi", + "section": "def-common.RuntimeField", + "text": "RuntimeField" + }, + " | null" + ], + "source": { + "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", + "lineNumber": 397 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "data", + "id": "def-server.IndexPattern.getRuntimeField.$1", + "type": "string", + "tags": [], + "label": "name", + "description": [], + "signature": [ + "string" + ], + "source": { + "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", + "lineNumber": 397 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [] + }, + { + "parentPluginId": "data", + "id": "def-server.IndexPattern.replaceAllRuntimeFields", + "type": "Function", + "tags": [], + "label": "replaceAllRuntimeFields", + "description": [ + "\nReplaces all existing runtime fields with new fields" + ], + "signature": [ + "(newFields: Record) => void" + ], + "source": { + "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", + "lineNumber": 405 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "data", + "id": "def-server.IndexPattern.replaceAllRuntimeFields.$1", + "type": "Object", + "tags": [], + "label": "newFields", + "description": [], + "signature": [ + "Record" + ], + "source": { + "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", + "lineNumber": 405 }, "deprecated": false, "isRequired": true @@ -28418,14 +28538,14 @@ "tags": [], "label": "removeRuntimeField", "description": [ - "\nRemove a runtime field - removed from mapped field or removed unmapped\nfield as appropriate" + "\nRemove a runtime field - removed from mapped field or removed unmapped\nfield as appropriate. Doesn't clear associated field attributes." ], "signature": [ "(name: string) => void" ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 392 + "lineNumber": 421 }, "deprecated": false, "children": [ @@ -28436,14 +28556,14 @@ "tags": [], "label": "name", "description": [ - "Field name" + "- Field name to remove" ], "signature": [ "string" ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 392 + "lineNumber": 421 }, "deprecated": false, "isRequired": true @@ -28473,7 +28593,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 412 + "lineNumber": 438 }, "deprecated": false, "children": [ @@ -28489,7 +28609,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 412 + "lineNumber": 438 }, "deprecated": false, "isRequired": true @@ -28517,7 +28637,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 419 + "lineNumber": 445 }, "deprecated": false, "children": [ @@ -28533,7 +28653,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 420 + "lineNumber": 446 }, "deprecated": false, "isRequired": true @@ -28550,7 +28670,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 421 + "lineNumber": 447 }, "deprecated": false, "isRequired": true @@ -28574,7 +28694,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 422 + "lineNumber": 448 }, "deprecated": false, "isRequired": true @@ -28594,7 +28714,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 430 + "lineNumber": 456 }, "deprecated": false, "children": [ @@ -28610,7 +28730,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 430 + "lineNumber": 456 }, "deprecated": false, "isRequired": true @@ -28627,7 +28747,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 430 + "lineNumber": 456 }, "deprecated": false, "isRequired": false @@ -28647,7 +28767,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 441 + "lineNumber": 467 }, "deprecated": false, "children": [ @@ -28663,7 +28783,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 441 + "lineNumber": 467 }, "deprecated": false, "isRequired": true @@ -28680,7 +28800,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 441 + "lineNumber": 467 }, "deprecated": false, "isRequired": false @@ -28708,7 +28828,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 454 + "lineNumber": 480 }, "deprecated": false, "children": [ @@ -28724,7 +28844,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 454 + "lineNumber": 480 }, "deprecated": false, "isRequired": true @@ -28748,7 +28868,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 454 + "lineNumber": 480 }, "deprecated": false, "isRequired": true @@ -28768,7 +28888,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 458 + "lineNumber": 484 }, "deprecated": false, "children": [ @@ -28784,7 +28904,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 458 + "lineNumber": 484 }, "deprecated": false, "isRequired": true @@ -28804,7 +28924,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 57 + "lineNumber": 56 }, "deprecated": false, "children": [ @@ -28820,7 +28940,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 67 + "lineNumber": 66 }, "deprecated": false, "returnComment": [], @@ -28838,7 +28958,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 69 + "lineNumber": 68 }, "deprecated": false, "children": [ @@ -28854,7 +28974,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 69 + "lineNumber": 68 }, "deprecated": false, "isRequired": true @@ -28876,7 +28996,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 108 + "lineNumber": 107 }, "deprecated": false, "children": [ @@ -28894,7 +29014,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 108 + "lineNumber": 107 }, "deprecated": false, "isRequired": true @@ -28916,7 +29036,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 122 + "lineNumber": 121 }, "deprecated": false, "children": [ @@ -28934,7 +29054,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 122 + "lineNumber": 121 }, "deprecated": false, "isRequired": true @@ -28964,7 +29084,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 138 + "lineNumber": 137 }, "deprecated": false, "children": [ @@ -28980,7 +29100,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 138 + "lineNumber": 137 }, "deprecated": false, "isRequired": true @@ -28997,7 +29117,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 138 + "lineNumber": 137 }, "deprecated": false, "isRequired": true @@ -29021,7 +29141,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 156 + "lineNumber": 155 }, "deprecated": false, "children": [ @@ -29039,7 +29159,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 157 + "lineNumber": 156 }, "deprecated": false, "isRequired": true @@ -29061,7 +29181,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 175 + "lineNumber": 174 }, "deprecated": false, "children": [ @@ -29079,7 +29199,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 175 + "lineNumber": 174 }, "deprecated": false, "isRequired": false @@ -29103,7 +29223,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 184 + "lineNumber": 183 }, "deprecated": false, "children": [], @@ -29131,7 +29251,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 194 + "lineNumber": 193 }, "deprecated": false, "children": [], @@ -29151,7 +29271,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 206 + "lineNumber": 205 }, "deprecated": false, "children": [], @@ -29171,7 +29291,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 216 + "lineNumber": 215 }, "deprecated": false, "children": [ @@ -29187,7 +29307,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 216 + "lineNumber": 215 }, "deprecated": false, "isRequired": false @@ -29204,7 +29324,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 216 + "lineNumber": 215 }, "deprecated": false, "isRequired": true @@ -29234,7 +29354,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 227 + "lineNumber": 226 }, "deprecated": false, "children": [ @@ -29256,7 +29376,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 227 + "lineNumber": 226 }, "deprecated": false, "isRequired": true @@ -29304,7 +29424,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 243 + "lineNumber": 242 }, "deprecated": false, "children": [ @@ -29334,7 +29454,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 244 + "lineNumber": 243 }, "deprecated": false, "isRequired": true @@ -29358,7 +29478,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 245 + "lineNumber": 244 }, "deprecated": false, "isRequired": false @@ -29390,7 +29510,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 258 + "lineNumber": 257 }, "deprecated": false, "children": [ @@ -29412,7 +29532,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 258 + "lineNumber": 257 }, "deprecated": false, "isRequired": true @@ -29458,7 +29578,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 335 + "lineNumber": 334 }, "deprecated": false, "children": [ @@ -29483,7 +29603,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 335 + "lineNumber": 334 }, "deprecated": false, "isRequired": true @@ -29509,7 +29629,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 335 + "lineNumber": 334 }, "deprecated": false, "isRequired": false @@ -29550,7 +29670,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 351 + "lineNumber": 350 }, "deprecated": false, "children": [ @@ -29575,7 +29695,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 351 + "lineNumber": 350 }, "deprecated": false, "isRequired": true @@ -29607,7 +29727,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 480 + "lineNumber": 483 }, "deprecated": false, "children": [ @@ -29623,7 +29743,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 480 + "lineNumber": 483 }, "deprecated": false, "isRequired": true @@ -29661,7 +29781,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 499 + "lineNumber": 502 }, "deprecated": false, "children": [ @@ -29683,7 +29803,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 499 + "lineNumber": 502 }, "deprecated": false, "isRequired": true @@ -29700,7 +29820,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 499 + "lineNumber": 502 }, "deprecated": false, "isRequired": true @@ -29740,7 +29860,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 524 + "lineNumber": 527 }, "deprecated": false, "children": [ @@ -29762,7 +29882,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 524 + "lineNumber": 527 }, "deprecated": false, "isRequired": true @@ -29781,7 +29901,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 524 + "lineNumber": 527 }, "deprecated": false, "isRequired": true @@ -29800,7 +29920,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 524 + "lineNumber": 527 }, "deprecated": false, "isRequired": true @@ -29838,7 +29958,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 537 + "lineNumber": 540 }, "deprecated": false, "children": [ @@ -29860,7 +29980,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 537 + "lineNumber": 540 }, "deprecated": false, "isRequired": true @@ -29879,7 +29999,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 537 + "lineNumber": 540 }, "deprecated": false, "isRequired": true @@ -29909,7 +30029,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 570 + "lineNumber": 573 }, "deprecated": false, "children": [ @@ -29931,7 +30051,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 571 + "lineNumber": 574 }, "deprecated": false, "isRequired": true @@ -29948,7 +30068,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 572 + "lineNumber": 575 }, "deprecated": false, "isRequired": true @@ -29965,7 +30085,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 573 + "lineNumber": 576 }, "deprecated": false, "isRequired": true @@ -29987,7 +30107,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 656 + "lineNumber": 661 }, "deprecated": false, "children": [ @@ -30005,7 +30125,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 656 + "lineNumber": 661 }, "deprecated": false, "isRequired": true @@ -30025,7 +30145,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 57 + "lineNumber": 56 }, "deprecated": false, "children": [ @@ -30041,7 +30161,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 67 + "lineNumber": 66 }, "deprecated": false, "returnComment": [], @@ -30059,7 +30179,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 69 + "lineNumber": 68 }, "deprecated": false, "children": [ @@ -30075,7 +30195,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 69 + "lineNumber": 68 }, "deprecated": false, "isRequired": true @@ -30097,7 +30217,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 108 + "lineNumber": 107 }, "deprecated": false, "children": [ @@ -30115,7 +30235,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 108 + "lineNumber": 107 }, "deprecated": false, "isRequired": true @@ -30137,7 +30257,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 122 + "lineNumber": 121 }, "deprecated": false, "children": [ @@ -30155,7 +30275,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 122 + "lineNumber": 121 }, "deprecated": false, "isRequired": true @@ -30185,7 +30305,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 138 + "lineNumber": 137 }, "deprecated": false, "children": [ @@ -30201,7 +30321,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 138 + "lineNumber": 137 }, "deprecated": false, "isRequired": true @@ -30218,7 +30338,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 138 + "lineNumber": 137 }, "deprecated": false, "isRequired": true @@ -30242,7 +30362,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 156 + "lineNumber": 155 }, "deprecated": false, "children": [ @@ -30260,7 +30380,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 157 + "lineNumber": 156 }, "deprecated": false, "isRequired": true @@ -30282,7 +30402,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 175 + "lineNumber": 174 }, "deprecated": false, "children": [ @@ -30300,7 +30420,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 175 + "lineNumber": 174 }, "deprecated": false, "isRequired": false @@ -30324,7 +30444,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 184 + "lineNumber": 183 }, "deprecated": false, "children": [], @@ -30352,7 +30472,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 194 + "lineNumber": 193 }, "deprecated": false, "children": [], @@ -30372,7 +30492,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 206 + "lineNumber": 205 }, "deprecated": false, "children": [], @@ -30392,7 +30512,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 216 + "lineNumber": 215 }, "deprecated": false, "children": [ @@ -30408,7 +30528,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 216 + "lineNumber": 215 }, "deprecated": false, "isRequired": false @@ -30425,7 +30545,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 216 + "lineNumber": 215 }, "deprecated": false, "isRequired": true @@ -30455,7 +30575,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 227 + "lineNumber": 226 }, "deprecated": false, "children": [ @@ -30477,7 +30597,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 227 + "lineNumber": 226 }, "deprecated": false, "isRequired": true @@ -30525,7 +30645,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 243 + "lineNumber": 242 }, "deprecated": false, "children": [ @@ -30555,7 +30675,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 244 + "lineNumber": 243 }, "deprecated": false, "isRequired": true @@ -30579,7 +30699,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 245 + "lineNumber": 244 }, "deprecated": false, "isRequired": false @@ -30611,7 +30731,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 258 + "lineNumber": 257 }, "deprecated": false, "children": [ @@ -30633,7 +30753,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 258 + "lineNumber": 257 }, "deprecated": false, "isRequired": true @@ -30679,7 +30799,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 335 + "lineNumber": 334 }, "deprecated": false, "children": [ @@ -30704,7 +30824,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 335 + "lineNumber": 334 }, "deprecated": false, "isRequired": true @@ -30730,7 +30850,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 335 + "lineNumber": 334 }, "deprecated": false, "isRequired": false @@ -30771,7 +30891,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 351 + "lineNumber": 350 }, "deprecated": false, "children": [ @@ -30796,7 +30916,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 351 + "lineNumber": 350 }, "deprecated": false, "isRequired": true @@ -30828,7 +30948,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 480 + "lineNumber": 483 }, "deprecated": false, "children": [ @@ -30844,7 +30964,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 480 + "lineNumber": 483 }, "deprecated": false, "isRequired": true @@ -30882,7 +31002,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 499 + "lineNumber": 502 }, "deprecated": false, "children": [ @@ -30904,7 +31024,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 499 + "lineNumber": 502 }, "deprecated": false, "isRequired": true @@ -30921,7 +31041,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 499 + "lineNumber": 502 }, "deprecated": false, "isRequired": true @@ -30961,7 +31081,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 524 + "lineNumber": 527 }, "deprecated": false, "children": [ @@ -30983,7 +31103,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 524 + "lineNumber": 527 }, "deprecated": false, "isRequired": true @@ -31002,7 +31122,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 524 + "lineNumber": 527 }, "deprecated": false, "isRequired": true @@ -31021,7 +31141,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 524 + "lineNumber": 527 }, "deprecated": false, "isRequired": true @@ -31059,7 +31179,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 537 + "lineNumber": 540 }, "deprecated": false, "children": [ @@ -31081,7 +31201,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 537 + "lineNumber": 540 }, "deprecated": false, "isRequired": true @@ -31100,7 +31220,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 537 + "lineNumber": 540 }, "deprecated": false, "isRequired": true @@ -31130,7 +31250,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 570 + "lineNumber": 573 }, "deprecated": false, "children": [ @@ -31152,7 +31272,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 571 + "lineNumber": 574 }, "deprecated": false, "isRequired": true @@ -31169,7 +31289,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 572 + "lineNumber": 575 }, "deprecated": false, "isRequired": true @@ -31186,7 +31306,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 573 + "lineNumber": 576 }, "deprecated": false, "isRequired": true @@ -31208,7 +31328,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 656 + "lineNumber": 661 }, "deprecated": false, "children": [ @@ -31226,7 +31346,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 656 + "lineNumber": 661 }, "deprecated": false, "isRequired": true @@ -33739,7 +33859,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 154 + "lineNumber": 153 }, "deprecated": false, "children": [ @@ -33755,7 +33875,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 155 + "lineNumber": 154 }, "deprecated": false }, @@ -33771,7 +33891,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 156 + "lineNumber": 155 }, "deprecated": false } @@ -33800,20 +33920,6 @@ "lineNumber": 104 } }, - { - "plugin": "discover", - "link": { - "path": "src/plugins/discover/public/application/embeddable/search_embeddable.ts", - "lineNumber": 23 - } - }, - { - "plugin": "discover", - "link": { - "path": "src/plugins/discover/public/application/embeddable/search_embeddable.ts", - "lineNumber": 59 - } - }, { "plugin": "maps", "link": { @@ -34084,21 +34190,21 @@ "plugin": "maps", "link": { "path": "x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx", - "lineNumber": 13 + "lineNumber": 12 } }, { "plugin": "maps", "link": { "path": "x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx", - "lineNumber": 164 + "lineNumber": 175 } }, { "plugin": "maps", "link": { "path": "x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx", - "lineNumber": 281 + "lineNumber": 292 } }, { @@ -34178,90 +34284,6 @@ "lineNumber": 66 } }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/service/list/config.ts", - "lineNumber": 10 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/service/list/config.ts", - "lineNumber": 42 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/service/list/manager.ts", - "lineNumber": 9 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/service/list/manager.ts", - "lineNumber": 43 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/create_index_pattern_wizard/lib/extract_time_fields.ts", - "lineNumber": 10 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/create_index_pattern_wizard/lib/extract_time_fields.ts", - "lineNumber": 12 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/indexed_fields_table/types.ts", - "lineNumber": 9 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/indexed_fields_table/types.ts", - "lineNumber": 11 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/indexed_fields_table/indexed_fields_table.tsx", - "lineNumber": 11 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/indexed_fields_table/indexed_fields_table.tsx", - "lineNumber": 23 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/field_editor/field_editor.tsx", - "lineNumber": 45 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/field_editor/field_editor.tsx", - "lineNumber": 148 - } - }, { "plugin": "ml", "link": { @@ -35060,6 +35082,20 @@ "lineNumber": 9 } }, + { + "plugin": "discover", + "link": { + "path": "src/plugins/discover/public/application/embeddable/saved_search_embeddable.tsx", + "lineNumber": 25 + } + }, + { + "plugin": "discover", + "link": { + "path": "src/plugins/discover/public/application/embeddable/saved_search_embeddable.tsx", + "lineNumber": 53 + } + }, { "plugin": "maps", "link": { @@ -35134,7 +35170,7 @@ "plugin": "lens", "link": { "path": "x-pack/plugins/lens/public/indexpattern_datasource/types.ts", - "lineNumber": 57 + "lineNumber": 60 } }, { @@ -35960,7 +35996,14 @@ "plugin": "stackAlerts", "link": { "path": "x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/entity_by_expression.tsx", - "lineNumber": 45 + "lineNumber": 26 + } + }, + { + "plugin": "stackAlerts", + "link": { + "path": "x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/entity_by_expression.tsx", + "lineNumber": 26 } }, { @@ -36015,14 +36058,14 @@ { "plugin": "maps", "link": { - "path": "x-pack/plugins/maps/public/classes/sources/es_search_source/get_docvalue_source_fields.test.ts", + "path": "x-pack/plugins/maps/public/classes/sources/es_search_source/util/get_docvalue_source_fields.test.ts", "lineNumber": 10 } }, { "plugin": "maps", "link": { - "path": "x-pack/plugins/maps/public/classes/sources/es_search_source/get_docvalue_source_fields.test.ts", + "path": "x-pack/plugins/maps/public/classes/sources/es_search_source/util/get_docvalue_source_fields.test.ts", "lineNumber": 12 } } @@ -36371,7 +36414,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 54 + "lineNumber": 53 }, "deprecated": false, "children": [ @@ -36384,7 +36427,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 55 + "lineNumber": 54 }, "deprecated": false }, @@ -36397,7 +36440,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 56 + "lineNumber": 55 }, "deprecated": false }, @@ -36410,7 +36453,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 57 + "lineNumber": 56 }, "deprecated": false }, @@ -36423,7 +36466,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 58 + "lineNumber": 57 }, "deprecated": false }, @@ -36439,7 +36482,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 59 + "lineNumber": 58 }, "deprecated": false }, @@ -36455,7 +36498,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 60 + "lineNumber": 59 }, "deprecated": false }, @@ -36471,7 +36514,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 61 + "lineNumber": 60 }, "deprecated": false }, @@ -36487,7 +36530,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 62 + "lineNumber": 61 }, "deprecated": false }, @@ -36503,7 +36546,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 63 + "lineNumber": 62 }, "deprecated": false }, @@ -36519,7 +36562,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 64 + "lineNumber": 63 }, "deprecated": false }, @@ -36537,7 +36580,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 68 + "lineNumber": 67 }, "deprecated": false } @@ -36553,7 +36596,7 @@ "description": [], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 90 + "lineNumber": 95 }, "deprecated": false, "children": [ @@ -36571,7 +36614,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 94 + "lineNumber": 99 }, "deprecated": false }, @@ -36589,7 +36632,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 99 + "lineNumber": 104 }, "deprecated": false }, @@ -36607,7 +36650,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 105 + "lineNumber": 110 }, "deprecated": false }, @@ -36625,7 +36668,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 110 + "lineNumber": 115 }, "deprecated": false }, @@ -36643,7 +36686,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 115 + "lineNumber": 120 }, "deprecated": false }, @@ -36661,7 +36704,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 121 + "lineNumber": 126 }, "deprecated": false }, @@ -36686,7 +36729,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 126 + "lineNumber": 131 }, "deprecated": false }, @@ -36711,7 +36754,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 131 + "lineNumber": 136 }, "deprecated": false } @@ -37723,6 +37766,23 @@ "deprecated": false, "initialIsOpen": false }, + { + "parentPluginId": "data", + "id": "def-server.INDEX_PATTERN_SAVED_OBJECT_TYPE", + "type": "string", + "tags": [], + "label": "INDEX_PATTERN_SAVED_OBJECT_TYPE", + "description": [], + "signature": [ + "\"index-pattern\"" + ], + "source": { + "path": "src/plugins/data/common/constants.ts", + "lineNumber": 13 + }, + "deprecated": false, + "initialIsOpen": false + }, { "parentPluginId": "data", "id": "def-server.IndexPatternLoadExpressionFunctionDefinition", @@ -38199,9 +38259,9 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" }, ") => ", { @@ -38237,7 +38297,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/exists_filter.ts", - "lineNumber": 29 + "lineNumber": 30 }, "deprecated": false }, @@ -38252,14 +38312,14 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" } ], "source": { "path": "src/plugins/data/common/es_query/filters/exists_filter.ts", - "lineNumber": 29 + "lineNumber": 30 }, "deprecated": false } @@ -38277,9 +38337,9 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" }, ", field: ", { @@ -38332,9 +38392,9 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" } ], "source": { @@ -38490,9 +38550,9 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" }, ") => ", { @@ -38528,7 +38588,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrase_filter.ts", - "lineNumber": 61 + "lineNumber": 62 }, "deprecated": false }, @@ -38544,7 +38604,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrase_filter.ts", - "lineNumber": 62 + "lineNumber": 63 }, "deprecated": false }, @@ -38559,14 +38619,14 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" } ], "source": { "path": "src/plugins/data/common/es_query/filters/phrase_filter.ts", - "lineNumber": 63 + "lineNumber": 64 }, "deprecated": false } @@ -38592,9 +38652,9 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" }, ") => ", { @@ -38630,7 +38690,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrases_filter.ts", - "lineNumber": 35 + "lineNumber": 36 }, "deprecated": false }, @@ -38646,7 +38706,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrases_filter.ts", - "lineNumber": 36 + "lineNumber": 37 }, "deprecated": false }, @@ -38661,14 +38721,14 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" } ], "source": { "path": "src/plugins/data/common/es_query/filters/phrases_filter.ts", - "lineNumber": 37 + "lineNumber": 38 }, "deprecated": false } @@ -38702,9 +38762,9 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" }, ", formattedValue?: string | undefined) => ", { @@ -38740,7 +38800,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 94 + "lineNumber": 92 }, "deprecated": false }, @@ -38762,7 +38822,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 95 + "lineNumber": 93 }, "deprecated": false }, @@ -38777,14 +38837,14 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" } ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 96 + "lineNumber": 94 }, "deprecated": false }, @@ -38800,7 +38860,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 97 + "lineNumber": 95 }, "deprecated": false } @@ -38859,7 +38919,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/index.ts", - "lineNumber": 38 + "lineNumber": 36 }, "deprecated": false } @@ -38983,18 +39043,12 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" }, " | undefined, config?: Record | undefined, context?: Record | undefined) => ", - { - "pluginId": "kibanaUtils", - "scope": "common", - "docId": "kibKibanaUtilsPluginApi", - "section": "def-common.JsonObject", - "text": "JsonObject" - } + "JsonObject" ], "source": { "path": "src/plugins/data/server/index.ts", @@ -39036,9 +39090,9 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" }, " | undefined" ], @@ -39118,9 +39172,9 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" }, " | undefined, ignoreFilterIfFieldNotInIndex?: boolean) => { must: never[]; filter: ", { @@ -39181,9 +39235,9 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" }, " | undefined" ], @@ -39262,9 +39316,9 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" }, " | undefined, queries: ", { @@ -39350,9 +39404,9 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" }, " | undefined" ], @@ -39938,7 +39992,7 @@ "description": [], "source": { "path": "src/plugins/data/server/index.ts", - "lineNumber": 128 + "lineNumber": 133 }, "deprecated": false, "children": [ @@ -39962,7 +40016,7 @@ ], "source": { "path": "src/plugins/data/server/index.ts", - "lineNumber": 129 + "lineNumber": 134 }, "deprecated": false, "returnComment": [], @@ -40011,7 +40065,7 @@ ], "source": { "path": "src/plugins/data/server/index.ts", - "lineNumber": 130 + "lineNumber": 135 }, "deprecated": false, "returnComment": [], @@ -40052,7 +40106,7 @@ "description": [], "source": { "path": "src/plugins/data/server/index.ts", - "lineNumber": 244 + "lineNumber": 250 }, "deprecated": false, "children": [ @@ -40065,7 +40119,7 @@ "description": [], "source": { "path": "src/plugins/data/server/index.ts", - "lineNumber": 245 + "lineNumber": 251 }, "deprecated": false, "children": [ @@ -40088,7 +40142,7 @@ ], "source": { "path": "src/plugins/data/server/index.ts", - "lineNumber": 246 + "lineNumber": 252 }, "deprecated": false }, @@ -40104,7 +40158,7 @@ ], "source": { "path": "src/plugins/data/server/index.ts", - "lineNumber": 247 + "lineNumber": 253 }, "deprecated": false, "returnComment": [], @@ -40144,7 +40198,7 @@ ], "source": { "path": "src/plugins/data/server/index.ts", - "lineNumber": 248 + "lineNumber": 254 }, "deprecated": false }, @@ -40167,7 +40221,7 @@ ], "source": { "path": "src/plugins/data/server/index.ts", - "lineNumber": 249 + "lineNumber": 255 }, "deprecated": false }, @@ -40190,7 +40244,7 @@ ], "source": { "path": "src/plugins/data/server/index.ts", - "lineNumber": 250 + "lineNumber": 256 }, "deprecated": false }, @@ -40213,7 +40267,7 @@ ], "source": { "path": "src/plugins/data/server/index.ts", - "lineNumber": 251 + "lineNumber": 257 }, "deprecated": false }, @@ -40237,7 +40291,7 @@ ], "source": { "path": "src/plugins/data/server/index.ts", - "lineNumber": 252 + "lineNumber": 258 }, "deprecated": false, "returnComment": [], @@ -40286,7 +40340,7 @@ ], "source": { "path": "src/plugins/data/server/index.ts", - "lineNumber": 253 + "lineNumber": 259 }, "deprecated": false, "returnComment": [], @@ -40335,7 +40389,7 @@ ], "source": { "path": "src/plugins/data/server/index.ts", - "lineNumber": 254 + "lineNumber": 260 }, "deprecated": false, "returnComment": [], @@ -40370,7 +40424,7 @@ ], "source": { "path": "src/plugins/data/server/index.ts", - "lineNumber": 255 + "lineNumber": 261 }, "deprecated": false, "returnComment": [], @@ -40402,7 +40456,7 @@ ], "source": { "path": "src/plugins/data/server/index.ts", - "lineNumber": 256 + "lineNumber": 262 }, "deprecated": false, "returnComment": [], @@ -40447,7 +40501,7 @@ "description": [], "source": { "path": "src/plugins/data/server/index.ts", - "lineNumber": 257 + "lineNumber": 263 }, "deprecated": false }, @@ -40465,7 +40519,7 @@ ], "source": { "path": "src/plugins/data/server/index.ts", - "lineNumber": 258 + "lineNumber": 264 }, "deprecated": false, "returnComment": [], @@ -40497,7 +40551,7 @@ ], "source": { "path": "src/plugins/data/server/index.ts", - "lineNumber": 259 + "lineNumber": 265 }, "deprecated": false, "returnComment": [], @@ -40529,7 +40583,7 @@ ], "source": { "path": "src/plugins/data/server/index.ts", - "lineNumber": 260 + "lineNumber": 266 }, "deprecated": false, "returnComment": [], @@ -40561,7 +40615,7 @@ "description": [], "source": { "path": "src/plugins/data/server/index.ts", - "lineNumber": 261 + "lineNumber": 267 }, "deprecated": false }, @@ -40577,7 +40631,7 @@ ], "source": { "path": "src/plugins/data/server/index.ts", - "lineNumber": 262 + "lineNumber": 268 }, "deprecated": false }, @@ -40601,7 +40655,7 @@ ], "source": { "path": "src/plugins/data/server/index.ts", - "lineNumber": 263 + "lineNumber": 269 }, "deprecated": false, "returnComment": [], @@ -40636,7 +40690,7 @@ ], "source": { "path": "src/plugins/data/server/index.ts", - "lineNumber": 264 + "lineNumber": 270 }, "deprecated": false, "returnComment": [], @@ -40700,7 +40754,7 @@ ], "source": { "path": "src/plugins/data/server/index.ts", - "lineNumber": 266 + "lineNumber": 272 }, "deprecated": false, "returnComment": [], @@ -40785,7 +40839,7 @@ ], "source": { "path": "src/plugins/data/server/index.ts", - "lineNumber": 267 + "lineNumber": 273 }, "deprecated": false, "returnComment": [], @@ -40843,7 +40897,7 @@ ], "source": { "path": "src/plugins/data/common/constants.ts", - "lineNumber": 12 + "lineNumber": 15 }, "deprecated": false, "initialIsOpen": false @@ -41446,9 +41500,9 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" }, " | undefined, queries: ", { @@ -41533,9 +41587,9 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" }, " | undefined" ], @@ -41663,9 +41717,9 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" }, ") => ", { @@ -41678,7 +41732,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/exists_filter.ts", - "lineNumber": 29 + "lineNumber": 30 }, "deprecated": false, "children": [ @@ -41700,7 +41754,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/exists_filter.ts", - "lineNumber": 29 + "lineNumber": 30 }, "deprecated": false, "isRequired": true @@ -41716,14 +41770,14 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" } ], "source": { "path": "src/plugins/data/common/es_query/filters/exists_filter.ts", - "lineNumber": 29 + "lineNumber": 30 }, "deprecated": false, "isRequired": true @@ -41744,9 +41798,9 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" }, ", field: ", { @@ -41798,9 +41852,9 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" } ], "source": { @@ -41972,9 +42026,9 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" }, ") => ", { @@ -41987,7 +42041,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrase_filter.ts", - "lineNumber": 60 + "lineNumber": 61 }, "deprecated": false, "children": [ @@ -42009,7 +42063,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrase_filter.ts", - "lineNumber": 61 + "lineNumber": 62 }, "deprecated": false, "isRequired": true @@ -42026,7 +42080,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrase_filter.ts", - "lineNumber": 62 + "lineNumber": 63 }, "deprecated": false, "isRequired": true @@ -42042,14 +42096,14 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" } ], "source": { "path": "src/plugins/data/common/es_query/filters/phrase_filter.ts", - "lineNumber": 63 + "lineNumber": 64 }, "deprecated": false, "isRequired": true @@ -42078,9 +42132,9 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" }, ") => ", { @@ -42093,7 +42147,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrases_filter.ts", - "lineNumber": 34 + "lineNumber": 35 }, "deprecated": false, "children": [ @@ -42115,7 +42169,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrases_filter.ts", - "lineNumber": 35 + "lineNumber": 36 }, "deprecated": false, "isRequired": true @@ -42132,7 +42186,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrases_filter.ts", - "lineNumber": 36 + "lineNumber": 37 }, "deprecated": false, "isRequired": true @@ -42148,14 +42202,14 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" } ], "source": { "path": "src/plugins/data/common/es_query/filters/phrases_filter.ts", - "lineNumber": 37 + "lineNumber": 38 }, "deprecated": false, "isRequired": true @@ -42262,9 +42316,9 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" }, " | undefined, ignoreFilterIfFieldNotInIndex?: boolean) => { must: never[]; filter: ", { @@ -42325,9 +42379,9 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" }, " | undefined" ], @@ -42387,9 +42441,9 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" }, ", formattedValue?: string | undefined) => ", { @@ -42402,7 +42456,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 93 + "lineNumber": 91 }, "deprecated": false, "children": [ @@ -42424,7 +42478,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 94 + "lineNumber": 92 }, "deprecated": false, "isRequired": true @@ -42447,7 +42501,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 95 + "lineNumber": 93 }, "deprecated": false, "isRequired": true @@ -42463,14 +42517,14 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" } ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 96 + "lineNumber": 94 }, "deprecated": false, "isRequired": true @@ -42487,7 +42541,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 97 + "lineNumber": 95 }, "deprecated": false, "isRequired": false @@ -42573,7 +42627,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/index.ts", - "lineNumber": 36 + "lineNumber": 34 }, "deprecated": false, "children": [ @@ -42597,7 +42651,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/index.ts", - "lineNumber": 36 + "lineNumber": 34 }, "deprecated": false, "isRequired": true @@ -42917,90 +42971,13 @@ ], "source": { "path": "src/plugins/data/common/es_query/kuery/ast/ast.ts", - "lineNumber": 44 - }, - "deprecated": false, - "children": [ - { - "parentPluginId": "data", - "id": "def-common.fromKueryExpression.$1", - "type": "Any", - "tags": [], - "label": "expression", - "description": [], - "signature": [ - "any" - ], - "source": { - "path": "src/plugins/data/common/es_query/kuery/ast/ast.ts", - "lineNumber": 45 - }, - "deprecated": false, - "isRequired": true - }, - { - "parentPluginId": "data", - "id": "def-common.fromKueryExpression.$2", - "type": "Object", - "tags": [], - "label": "parseOptions", - "description": [], - "signature": [ - "Partial<", - { - "pluginId": "data", - "scope": "common", - "docId": "kibDataPluginApi", - "section": "def-common.KueryParseOptions", - "text": "KueryParseOptions" - }, - ">" - ], - "source": { - "path": "src/plugins/data/common/es_query/kuery/ast/ast.ts", - "lineNumber": 46 - }, - "deprecated": false, - "isRequired": true - } - ], - "returnComment": [], - "initialIsOpen": false - }, - { - "parentPluginId": "data", - "id": "def-common.fromLiteralExpression", - "type": "Function", - "tags": [], - "label": "fromLiteralExpression", - "description": [], - "signature": [ - "(expression: any, parseOptions?: Partial<", - { - "pluginId": "data", - "scope": "common", - "docId": "kibDataPluginApi", - "section": "def-common.KueryParseOptions", - "text": "KueryParseOptions" - }, - ">) => ", - { - "pluginId": "data", - "scope": "common", - "docId": "kibDataPluginApi", - "section": "def-common.KueryNode", - "text": "KueryNode" - } - ], - "source": { - "path": "src/plugins/data/common/es_query/kuery/ast/ast.ts", - "lineNumber": 30 + "lineNumber": 44 }, "deprecated": false, "children": [ { "parentPluginId": "data", - "id": "def-common.fromLiteralExpression.$1", + "id": "def-common.fromKueryExpression.$1", "type": "Any", "tags": [], "label": "expression", @@ -43010,14 +42987,14 @@ ], "source": { "path": "src/plugins/data/common/es_query/kuery/ast/ast.ts", - "lineNumber": 31 + "lineNumber": 45 }, "deprecated": false, "isRequired": true }, { "parentPluginId": "data", - "id": "def-common.fromLiteralExpression.$2", + "id": "def-common.fromKueryExpression.$2", "type": "Object", "tags": [], "label": "parseOptions", @@ -43035,7 +43012,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/kuery/ast/ast.ts", - "lineNumber": 32 + "lineNumber": 46 }, "deprecated": false, "isRequired": true @@ -43046,54 +43023,47 @@ }, { "parentPluginId": "data", - "id": "def-common.getDisplayValueFromFilter", + "id": "def-common.fromLiteralExpression", "type": "Function", "tags": [], - "label": "getDisplayValueFromFilter", + "label": "fromLiteralExpression", "description": [], "signature": [ - "(filter: ", + "(expression: any, parseOptions?: Partial<", { "pluginId": "data", "scope": "common", "docId": "kibDataPluginApi", - "section": "def-common.Filter", - "text": "Filter" + "section": "def-common.KueryParseOptions", + "text": "KueryParseOptions" }, - ", indexPatterns: ", + ">) => ", { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" - }, - "[]) => string" + "docId": "kibDataPluginApi", + "section": "def-common.KueryNode", + "text": "KueryNode" + } ], "source": { - "path": "src/plugins/data/common/es_query/filters/get_display_value.ts", - "lineNumber": 31 + "path": "src/plugins/data/common/es_query/kuery/ast/ast.ts", + "lineNumber": 30 }, "deprecated": false, "children": [ { "parentPluginId": "data", - "id": "def-common.getDisplayValueFromFilter.$1", - "type": "Object", + "id": "def-common.fromLiteralExpression.$1", + "type": "Any", "tags": [], - "label": "filter", + "label": "expression", "description": [], "signature": [ - { - "pluginId": "data", - "scope": "common", - "docId": "kibDataPluginApi", - "section": "def-common.Filter", - "text": "Filter" - } + "any" ], "source": { - "path": "src/plugins/data/common/es_query/filters/get_display_value.ts", + "path": "src/plugins/data/common/es_query/kuery/ast/ast.ts", "lineNumber": 31 }, "deprecated": false, @@ -43101,24 +43071,25 @@ }, { "parentPluginId": "data", - "id": "def-common.getDisplayValueFromFilter.$2", - "type": "Array", + "id": "def-common.fromLiteralExpression.$2", + "type": "Object", "tags": [], - "label": "indexPatterns", + "label": "parseOptions", "description": [], "signature": [ + "Partial<", { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.KueryParseOptions", + "text": "KueryParseOptions" }, - "[]" + ">" ], "source": { - "path": "src/plugins/data/common/es_query/filters/get_display_value.ts", - "lineNumber": 31 + "path": "src/plugins/data/common/es_query/kuery/ast/ast.ts", + "lineNumber": 32 }, "deprecated": false, "isRequired": true @@ -43191,7 +43162,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/exists_filter.ts", - "lineNumber": 25 + "lineNumber": 26 }, "deprecated": false, "children": [ @@ -43213,7 +43184,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/exists_filter.ts", - "lineNumber": 25 + "lineNumber": 26 }, "deprecated": false, "isRequired": true @@ -43449,97 +43420,6 @@ "returnComment": [], "initialIsOpen": false }, - { - "parentPluginId": "data", - "id": "def-common.getIndexPatternFromFilter", - "type": "Function", - "tags": [], - "label": "getIndexPatternFromFilter", - "description": [], - "signature": [ - "(filter: ", - { - "pluginId": "data", - "scope": "common", - "docId": "kibDataPluginApi", - "section": "def-common.Filter", - "text": "Filter" - }, - ", indexPatterns: ", - { - "pluginId": "data", - "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" - }, - "[]) => ", - { - "pluginId": "data", - "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" - }, - " | undefined" - ], - "source": { - "path": "src/plugins/data/common/es_query/filters/get_index_pattern_from_filter.ts", - "lineNumber": 12 - }, - "deprecated": false, - "children": [ - { - "parentPluginId": "data", - "id": "def-common.getIndexPatternFromFilter.$1", - "type": "Object", - "tags": [], - "label": "filter", - "description": [], - "signature": [ - { - "pluginId": "data", - "scope": "common", - "docId": "kibDataPluginApi", - "section": "def-common.Filter", - "text": "Filter" - } - ], - "source": { - "path": "src/plugins/data/common/es_query/filters/get_index_pattern_from_filter.ts", - "lineNumber": 13 - }, - "deprecated": false, - "isRequired": true - }, - { - "parentPluginId": "data", - "id": "def-common.getIndexPatternFromFilter.$2", - "type": "Array", - "tags": [], - "label": "indexPatterns", - "description": [], - "signature": [ - { - "pluginId": "data", - "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" - }, - "[]" - ], - "source": { - "path": "src/plugins/data/common/es_query/filters/get_index_pattern_from_filter.ts", - "lineNumber": 14 - }, - "deprecated": false, - "isRequired": true - } - ], - "returnComment": [], - "initialIsOpen": false - }, { "parentPluginId": "data", "id": "def-common.getKbnFieldType", @@ -43682,7 +43562,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrase_filter.ts", - "lineNumber": 49 + "lineNumber": 50 }, "deprecated": false, "children": [ @@ -43704,7 +43584,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrase_filter.ts", - "lineNumber": 49 + "lineNumber": 50 }, "deprecated": false, "isRequired": true @@ -43733,7 +43613,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrase_filter.ts", - "lineNumber": 54 + "lineNumber": 55 }, "deprecated": false, "children": [ @@ -43755,7 +43635,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrase_filter.ts", - "lineNumber": 54 + "lineNumber": 55 }, "deprecated": false, "isRequired": true @@ -43784,7 +43664,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrase_filter.ts", - "lineNumber": 84 + "lineNumber": 85 }, "deprecated": false, "children": [ @@ -43806,7 +43686,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrase_filter.ts", - "lineNumber": 84 + "lineNumber": 85 }, "deprecated": false, "isRequired": true @@ -43823,7 +43703,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrase_filter.ts", - "lineNumber": 84 + "lineNumber": 85 }, "deprecated": false, "isRequired": true @@ -43852,7 +43732,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrases_filter.ts", - "lineNumber": 26 + "lineNumber": 27 }, "deprecated": false, "children": [ @@ -43874,7 +43754,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrases_filter.ts", - "lineNumber": 26 + "lineNumber": 27 }, "deprecated": false, "isRequired": true @@ -43903,7 +43783,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 81 + "lineNumber": 82 }, "deprecated": false, "children": [ @@ -43925,7 +43805,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 81 + "lineNumber": 82 }, "deprecated": false, "isRequired": true @@ -43962,7 +43842,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 140 + "lineNumber": 138 }, "deprecated": false, "children": [ @@ -43984,7 +43864,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 140 + "lineNumber": 138 }, "deprecated": false, "isRequired": true @@ -44007,7 +43887,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 140 + "lineNumber": 138 }, "deprecated": false, "isRequired": true @@ -44035,7 +43915,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/exists_filter.ts", - "lineNumber": 23 + "lineNumber": 24 }, "deprecated": false, "children": [ @@ -44051,7 +43931,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/exists_filter.ts", - "lineNumber": 23 + "lineNumber": 24 }, "deprecated": false, "isRequired": true @@ -44124,7 +44004,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/index.ts", - "lineNumber": 38 + "lineNumber": 36 }, "deprecated": false, "children": [ @@ -44146,7 +44026,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/index.ts", - "lineNumber": 38 + "lineNumber": 36 }, "deprecated": false, "isRequired": true @@ -44446,7 +44326,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrase_filter.ts", - "lineNumber": 34 + "lineNumber": 35 }, "deprecated": false, "children": [ @@ -44462,7 +44342,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrase_filter.ts", - "lineNumber": 34 + "lineNumber": 35 }, "deprecated": false, "isRequired": true @@ -44490,7 +44370,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrases_filter.ts", - "lineNumber": 23 + "lineNumber": 24 }, "deprecated": false, "children": [ @@ -44506,7 +44386,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrases_filter.ts", - "lineNumber": 23 + "lineNumber": 24 }, "deprecated": false, "isRequired": true @@ -44578,7 +44458,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 73 + "lineNumber": 74 }, "deprecated": false, "children": [ @@ -44594,7 +44474,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 73 + "lineNumber": 74 }, "deprecated": false, "isRequired": true @@ -44622,7 +44502,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrase_filter.ts", - "lineNumber": 46 + "lineNumber": 47 }, "deprecated": false, "children": [ @@ -44638,7 +44518,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrase_filter.ts", - "lineNumber": 46 + "lineNumber": 47 }, "deprecated": false, "isRequired": true @@ -44666,7 +44546,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 75 + "lineNumber": 76 }, "deprecated": false, "children": [ @@ -44682,7 +44562,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 75 + "lineNumber": 76 }, "deprecated": false, "isRequired": true @@ -44857,18 +44737,12 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" }, " | undefined, config?: Record | undefined, context?: Record | undefined) => ", - { - "pluginId": "kibanaUtils", - "scope": "common", - "docId": "kibKibanaUtilsPluginApi", - "section": "def-common.JsonObject", - "text": "JsonObject" - } + "JsonObject" ], "source": { "path": "src/plugins/data/common/es_query/kuery/ast/ast.ts", @@ -44910,9 +44784,9 @@ { "pluginId": "data", "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" }, " | undefined" ], @@ -45289,7 +45163,7 @@ "description": [], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 56 + "lineNumber": 57 }, "deprecated": false, "children": [ @@ -45313,7 +45187,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 57 + "lineNumber": 58 }, "deprecated": false } @@ -45329,7 +45203,7 @@ "description": [], "source": { "path": "src/plugins/data/common/es_query/filters/exists_filter.ts", - "lineNumber": 14 + "lineNumber": 15 }, "deprecated": false, "children": [ @@ -45345,7 +45219,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/exists_filter.ts", - "lineNumber": 15 + "lineNumber": 16 }, "deprecated": false } @@ -45435,6 +45309,61 @@ ], "initialIsOpen": false }, + { + "parentPluginId": "data", + "id": "def-common.IndexPatternBase", + "type": "Interface", + "tags": [], + "label": "IndexPatternBase", + "description": [], + "source": { + "path": "src/plugins/data/common/es_query/es_query/types.ts", + "lineNumber": 11 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "data", + "id": "def-common.IndexPatternBase.fields", + "type": "Array", + "tags": [], + "label": "fields", + "description": [], + "signature": [ + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataIndexPatternsPluginApi", + "section": "def-common.IFieldType", + "text": "IFieldType" + }, + "[]" + ], + "source": { + "path": "src/plugins/data/common/es_query/es_query/types.ts", + "lineNumber": 12 + }, + "deprecated": false + }, + { + "parentPluginId": "data", + "id": "def-common.IndexPatternBase.id", + "type": "string", + "tags": [], + "label": "id", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "src/plugins/data/common/es_query/es_query/types.ts", + "lineNumber": 13 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, { "parentPluginId": "data", "id": "def-common.KbnFieldTypeOptions", @@ -45764,7 +45693,7 @@ "description": [], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 35 + "lineNumber": 36 }, "deprecated": false, "children": [ @@ -45780,7 +45709,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 36 + "lineNumber": 37 }, "deprecated": false }, @@ -45796,7 +45725,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 37 + "lineNumber": 38 }, "deprecated": false }, @@ -45812,7 +45741,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 38 + "lineNumber": 39 }, "deprecated": false }, @@ -45828,7 +45757,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 39 + "lineNumber": 40 }, "deprecated": false }, @@ -45844,7 +45773,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 40 + "lineNumber": 41 }, "deprecated": false }, @@ -45860,7 +45789,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 41 + "lineNumber": 42 }, "deprecated": false }, @@ -45876,7 +45805,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 42 + "lineNumber": 43 }, "deprecated": false } @@ -46064,14 +45993,14 @@ "tags": [], "label": "namespaces", "description": [ - "Namespace(s) that this saved object exists in. This attribute is only used for multi-namespace saved object types." + "\nSpace(s) that this saved object exists in. This attribute is not used for \"global\" saved object types which are registered with\n`namespaceType: 'agnostic'`." ], "signature": [ "string[] | undefined" ], "source": { "path": "src/core/types/saved_objects.ts", - "lineNumber": 88 + "lineNumber": 91 }, "deprecated": false }, @@ -46089,7 +46018,7 @@ ], "source": { "path": "src/core/types/saved_objects.ts", - "lineNumber": 95 + "lineNumber": 98 }, "deprecated": false } @@ -46266,7 +46195,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/exists_filter.ts", - "lineNumber": 18 + "lineNumber": 19 }, "deprecated": false, "initialIsOpen": false @@ -46283,7 +46212,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/exists_filter.ts", - "lineNumber": 12 + "lineNumber": 13 }, "deprecated": false, "initialIsOpen": false @@ -46597,6 +46526,23 @@ "deprecated": false, "initialIsOpen": false }, + { + "parentPluginId": "data", + "id": "def-common.INDEX_PATTERN_SAVED_OBJECT_TYPE", + "type": "string", + "tags": [], + "label": "INDEX_PATTERN_SAVED_OBJECT_TYPE", + "description": [], + "signature": [ + "\"index-pattern\"" + ], + "source": { + "path": "src/plugins/data/common/constants.ts", + "lineNumber": 13 + }, + "deprecated": false, + "initialIsOpen": false + }, { "parentPluginId": "data", "id": "def-common.KIBANA_USER_QUERY_LANGUAGE_KEY", @@ -46722,7 +46668,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrase_filter.ts", - "lineNumber": 21 + "lineNumber": 22 }, "deprecated": false, "initialIsOpen": false @@ -46746,7 +46692,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrase_filter.ts", - "lineNumber": 13 + "lineNumber": 14 }, "deprecated": false, "initialIsOpen": false @@ -46778,7 +46724,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrases_filter.ts", - "lineNumber": 19 + "lineNumber": 20 }, "deprecated": false, "initialIsOpen": false @@ -46802,7 +46748,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/phrases_filter.ts", - "lineNumber": 14 + "lineNumber": 15 }, "deprecated": false, "initialIsOpen": false @@ -46893,7 +46839,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 60 + "lineNumber": 61 }, "deprecated": false, "initialIsOpen": false @@ -46925,7 +46871,7 @@ ], "source": { "path": "src/plugins/data/common/es_query/filters/range_filter.ts", - "lineNumber": 50 + "lineNumber": 51 }, "deprecated": false, "initialIsOpen": false @@ -47231,7 +47177,7 @@ ], "source": { "path": "src/plugins/data/common/constants.ts", - "lineNumber": 12 + "lineNumber": 15 }, "deprecated": false, "initialIsOpen": false diff --git a/api_docs/data.mdx b/api_docs/data.mdx index bd48fb09df8b3..4306690ca9c7e 100644 --- a/api_docs/data.mdx +++ b/api_docs/data.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'data'] warning: 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. --- - import dataObj from './data.json'; 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. @@ -19,7 +18,7 @@ Contact [App Services](https://github.com/orgs/elastic/teams/kibana-app-services | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 3809 | 107 | 3257 | 75 | +| 3833 | 107 | 3268 | 75 | ## Client diff --git a/api_docs/data_autocomplete.mdx b/api_docs/data_autocomplete.mdx index 7d18feb2140dd..bc9ae7b61a2c7 100644 --- a/api_docs/data_autocomplete.mdx +++ b/api_docs/data_autocomplete.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'data.autocomplete'] warning: 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. --- - import dataAutocompleteObj from './data_autocomplete.json'; 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. @@ -19,7 +18,7 @@ Contact [App Services](https://github.com/orgs/elastic/teams/kibana-app-services | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 3809 | 107 | 3257 | 75 | +| 3833 | 107 | 3268 | 75 | ## Client diff --git a/api_docs/data_enhanced.json b/api_docs/data_enhanced.json index 923a7886739c9..8fb94c25b7bd0 100644 --- a/api_docs/data_enhanced.json +++ b/api_docs/data_enhanced.json @@ -129,7 +129,7 @@ "section": "def-server.PluginInitializerContext", "text": "PluginInitializerContext" }, - "; pageSize: number; trackingInterval: moment.Duration; monitoringTaskTimeout: moment.Duration; notTouchedTimeout: moment.Duration; notTouchedInProgressTimeout: moment.Duration; maxUpdateRetries: number; defaultExpiration: moment.Duration; }>; }>; }>>" + "; pageSize: number; trackingInterval: moment.Duration; cleanupInterval: moment.Duration; expireInterval: moment.Duration; monitoringTaskTimeout: moment.Duration; notTouchedTimeout: moment.Duration; notTouchedInProgressTimeout: moment.Duration; maxUpdateRetries: number; defaultExpiration: moment.Duration; }>; }>; }>>" ], "source": { "path": "x-pack/plugins/data_enhanced/server/plugin.ts", diff --git a/api_docs/data_enhanced.mdx b/api_docs/data_enhanced.mdx index 1e6709794d3c4..9c84797b810ce 100644 --- a/api_docs/data_enhanced.mdx +++ b/api_docs/data_enhanced.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataEnhanced'] warning: 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. --- - import dataEnhancedObj from './data_enhanced.json'; diff --git a/api_docs/data_field_formats.json b/api_docs/data_field_formats.json index a5fba87c20169..1d459b9c5e2f1 100644 --- a/api_docs/data_field_formats.json +++ b/api_docs/data_field_formats.json @@ -3660,7 +3660,7 @@ ], "source": { "path": "src/plugins/data/common/field_formats/converters/string.ts", - "lineNumber": 62 + "lineNumber": 66 }, "deprecated": false, "children": [ @@ -3682,7 +3682,7 @@ ], "source": { "path": "src/plugins/data/common/field_formats/converters/string.ts", - "lineNumber": 63 + "lineNumber": 67 }, "deprecated": false }, @@ -3695,7 +3695,7 @@ "description": [], "source": { "path": "src/plugins/data/common/field_formats/converters/string.ts", - "lineNumber": 64 + "lineNumber": 68 }, "deprecated": false }, @@ -3718,7 +3718,7 @@ ], "source": { "path": "src/plugins/data/common/field_formats/converters/string.ts", - "lineNumber": 67 + "lineNumber": 71 }, "deprecated": false }, @@ -3734,7 +3734,7 @@ ], "source": { "path": "src/plugins/data/common/field_formats/converters/string.ts", - "lineNumber": 83 + "lineNumber": 87 }, "deprecated": false }, @@ -3750,7 +3750,7 @@ ], "source": { "path": "src/plugins/data/common/field_formats/converters/string.ts", - "lineNumber": 85 + "lineNumber": 89 }, "deprecated": false, "children": [], @@ -3768,7 +3768,7 @@ ], "source": { "path": "src/plugins/data/common/field_formats/converters/string.ts", - "lineNumber": 105 + "lineNumber": 109 }, "deprecated": false, "children": [ @@ -3784,7 +3784,7 @@ ], "source": { "path": "src/plugins/data/common/field_formats/converters/string.ts", - "lineNumber": 105 + "lineNumber": 109 }, "deprecated": false, "isRequired": true diff --git a/api_docs/data_field_formats.mdx b/api_docs/data_field_formats.mdx index c13562eba142d..765ba1c26ed3b 100644 --- a/api_docs/data_field_formats.mdx +++ b/api_docs/data_field_formats.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'data.fieldFormats'] warning: 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. --- - import dataFieldFormatsObj from './data_field_formats.json'; 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. @@ -19,7 +18,7 @@ Contact [App Services](https://github.com/orgs/elastic/teams/kibana-app-services | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 3809 | 107 | 3257 | 75 | +| 3833 | 107 | 3268 | 75 | ## Client diff --git a/api_docs/data_index_patterns.json b/api_docs/data_index_patterns.json index 056442ee29d66..a05cd4cf3565f 100644 --- a/api_docs/data_index_patterns.json +++ b/api_docs/data_index_patterns.json @@ -1783,22 +1783,7 @@ "lineNumber": 272 }, "deprecated": true, - "references": [ - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/scripted_fields_table/scripted_fields_table.tsx", - "lineNumber": 117 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/field_editor/field_editor.tsx", - "lineNumber": 778 - } - } - ], + "references": [], "children": [ { "parentPluginId": "data", @@ -1848,34 +1833,6 @@ }, "deprecated": true, "references": [ - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/source_filters_table/components/table/table.tsx", - "lineNumber": 152 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/edit_index_pattern.tsx", - "lineNumber": 66 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/edit_index_pattern.tsx", - "lineNumber": 74 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/edit_index_pattern.tsx", - "lineNumber": 204 - } - }, { "plugin": "visTypeTimeseries", "link": { @@ -1942,15 +1899,7 @@ "lineNumber": 291 }, "deprecated": true, - "references": [ - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/scripted_fields_table/scripted_fields_table.tsx", - "lineNumber": 61 - } - } - ], + "references": [], "children": [], "returnComment": [] }, @@ -2218,7 +2167,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 368 + "lineNumber": 367 }, "deprecated": false, "children": [ @@ -2236,7 +2185,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 368 + "lineNumber": 367 }, "deprecated": false, "isRequired": true @@ -2261,7 +2210,145 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 368 + "lineNumber": 367 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [] + }, + { + "parentPluginId": "data", + "id": "def-common.IndexPattern.hasRuntimeField", + "type": "Function", + "tags": [], + "label": "hasRuntimeField", + "description": [ + "\nChecks if runtime field exists" + ], + "signature": [ + "(name: string) => boolean" + ], + "source": { + "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", + "lineNumber": 389 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "data", + "id": "def-common.IndexPattern.hasRuntimeField.$1", + "type": "string", + "tags": [], + "label": "name", + "description": [], + "signature": [ + "string" + ], + "source": { + "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", + "lineNumber": 389 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [] + }, + { + "parentPluginId": "data", + "id": "def-common.IndexPattern.getRuntimeField", + "type": "Function", + "tags": [], + "label": "getRuntimeField", + "description": [ + "\nReturns runtime field if exists" + ], + "signature": [ + "(name: string) => ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataIndexPatternsPluginApi", + "section": "def-common.RuntimeField", + "text": "RuntimeField" + }, + " | null" + ], + "source": { + "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", + "lineNumber": 397 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "data", + "id": "def-common.IndexPattern.getRuntimeField.$1", + "type": "string", + "tags": [], + "label": "name", + "description": [], + "signature": [ + "string" + ], + "source": { + "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", + "lineNumber": 397 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [] + }, + { + "parentPluginId": "data", + "id": "def-common.IndexPattern.replaceAllRuntimeFields", + "type": "Function", + "tags": [], + "label": "replaceAllRuntimeFields", + "description": [ + "\nReplaces all existing runtime fields with new fields" + ], + "signature": [ + "(newFields: Record) => void" + ], + "source": { + "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", + "lineNumber": 405 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "data", + "id": "def-common.IndexPattern.replaceAllRuntimeFields.$1", + "type": "Object", + "tags": [], + "label": "newFields", + "description": [], + "signature": [ + "Record" + ], + "source": { + "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", + "lineNumber": 405 }, "deprecated": false, "isRequired": true @@ -2276,14 +2363,14 @@ "tags": [], "label": "removeRuntimeField", "description": [ - "\nRemove a runtime field - removed from mapped field or removed unmapped\nfield as appropriate" + "\nRemove a runtime field - removed from mapped field or removed unmapped\nfield as appropriate. Doesn't clear associated field attributes." ], "signature": [ "(name: string) => void" ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 392 + "lineNumber": 421 }, "deprecated": false, "children": [ @@ -2294,14 +2381,14 @@ "tags": [], "label": "name", "description": [ - "Field name" + "- Field name to remove" ], "signature": [ "string" ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 392 + "lineNumber": 421 }, "deprecated": false, "isRequired": true @@ -2331,7 +2418,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 412 + "lineNumber": 438 }, "deprecated": false, "children": [ @@ -2347,7 +2434,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 412 + "lineNumber": 438 }, "deprecated": false, "isRequired": true @@ -2375,7 +2462,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 419 + "lineNumber": 445 }, "deprecated": false, "children": [ @@ -2391,7 +2478,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 420 + "lineNumber": 446 }, "deprecated": false, "isRequired": true @@ -2408,7 +2495,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 421 + "lineNumber": 447 }, "deprecated": false, "isRequired": true @@ -2432,7 +2519,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 422 + "lineNumber": 448 }, "deprecated": false, "isRequired": true @@ -2452,7 +2539,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 430 + "lineNumber": 456 }, "deprecated": false, "children": [ @@ -2468,7 +2555,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 430 + "lineNumber": 456 }, "deprecated": false, "isRequired": true @@ -2485,7 +2572,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 430 + "lineNumber": 456 }, "deprecated": false, "isRequired": false @@ -2505,7 +2592,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 441 + "lineNumber": 467 }, "deprecated": false, "children": [ @@ -2521,7 +2608,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 441 + "lineNumber": 467 }, "deprecated": false, "isRequired": true @@ -2538,7 +2625,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 441 + "lineNumber": 467 }, "deprecated": false, "isRequired": false @@ -2566,7 +2653,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 454 + "lineNumber": 480 }, "deprecated": false, "children": [ @@ -2582,7 +2669,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 454 + "lineNumber": 480 }, "deprecated": false, "isRequired": true @@ -2606,7 +2693,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 454 + "lineNumber": 480 }, "deprecated": false, "isRequired": true @@ -2626,7 +2713,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 458 + "lineNumber": 484 }, "deprecated": false, "children": [ @@ -2642,7 +2729,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_pattern.ts", - "lineNumber": 458 + "lineNumber": 484 }, "deprecated": false, "isRequired": true @@ -3319,7 +3406,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 57 + "lineNumber": 56 }, "deprecated": false, "children": [ @@ -3335,7 +3422,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 67 + "lineNumber": 66 }, "deprecated": false, "returnComment": [], @@ -3353,7 +3440,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 69 + "lineNumber": 68 }, "deprecated": false, "children": [ @@ -3369,7 +3456,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 69 + "lineNumber": 68 }, "deprecated": false, "isRequired": true @@ -3391,7 +3478,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 108 + "lineNumber": 107 }, "deprecated": false, "children": [ @@ -3409,7 +3496,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 108 + "lineNumber": 107 }, "deprecated": false, "isRequired": true @@ -3431,7 +3518,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 122 + "lineNumber": 121 }, "deprecated": false, "children": [ @@ -3449,7 +3536,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 122 + "lineNumber": 121 }, "deprecated": false, "isRequired": true @@ -3479,7 +3566,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 138 + "lineNumber": 137 }, "deprecated": false, "children": [ @@ -3495,7 +3582,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 138 + "lineNumber": 137 }, "deprecated": false, "isRequired": true @@ -3512,7 +3599,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 138 + "lineNumber": 137 }, "deprecated": false, "isRequired": true @@ -3536,7 +3623,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 156 + "lineNumber": 155 }, "deprecated": false, "children": [ @@ -3554,7 +3641,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 157 + "lineNumber": 156 }, "deprecated": false, "isRequired": true @@ -3576,7 +3663,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 175 + "lineNumber": 174 }, "deprecated": false, "children": [ @@ -3594,7 +3681,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 175 + "lineNumber": 174 }, "deprecated": false, "isRequired": false @@ -3618,7 +3705,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 184 + "lineNumber": 183 }, "deprecated": false, "children": [], @@ -3646,7 +3733,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 194 + "lineNumber": 193 }, "deprecated": false, "children": [], @@ -3666,7 +3753,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 206 + "lineNumber": 205 }, "deprecated": false, "children": [], @@ -3686,7 +3773,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 216 + "lineNumber": 215 }, "deprecated": false, "children": [ @@ -3702,7 +3789,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 216 + "lineNumber": 215 }, "deprecated": false, "isRequired": false @@ -3719,7 +3806,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 216 + "lineNumber": 215 }, "deprecated": false, "isRequired": true @@ -3749,7 +3836,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 227 + "lineNumber": 226 }, "deprecated": false, "children": [ @@ -3771,7 +3858,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 227 + "lineNumber": 226 }, "deprecated": false, "isRequired": true @@ -3819,7 +3906,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 243 + "lineNumber": 242 }, "deprecated": false, "children": [ @@ -3849,7 +3936,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 244 + "lineNumber": 243 }, "deprecated": false, "isRequired": true @@ -3873,7 +3960,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 245 + "lineNumber": 244 }, "deprecated": false, "isRequired": false @@ -3905,7 +3992,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 258 + "lineNumber": 257 }, "deprecated": false, "children": [ @@ -3927,7 +4014,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 258 + "lineNumber": 257 }, "deprecated": false, "isRequired": true @@ -3973,7 +4060,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 335 + "lineNumber": 334 }, "deprecated": false, "children": [ @@ -3998,7 +4085,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 335 + "lineNumber": 334 }, "deprecated": false, "isRequired": true @@ -4024,7 +4111,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 335 + "lineNumber": 334 }, "deprecated": false, "isRequired": false @@ -4065,7 +4152,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 351 + "lineNumber": 350 }, "deprecated": false, "children": [ @@ -4090,7 +4177,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 351 + "lineNumber": 350 }, "deprecated": false, "isRequired": true @@ -4122,7 +4209,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 480 + "lineNumber": 483 }, "deprecated": false, "children": [ @@ -4138,7 +4225,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 480 + "lineNumber": 483 }, "deprecated": false, "isRequired": true @@ -4176,7 +4263,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 499 + "lineNumber": 502 }, "deprecated": false, "children": [ @@ -4198,7 +4285,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 499 + "lineNumber": 502 }, "deprecated": false, "isRequired": true @@ -4215,7 +4302,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 499 + "lineNumber": 502 }, "deprecated": false, "isRequired": true @@ -4255,7 +4342,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 524 + "lineNumber": 527 }, "deprecated": false, "children": [ @@ -4277,7 +4364,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 524 + "lineNumber": 527 }, "deprecated": false, "isRequired": true @@ -4296,7 +4383,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 524 + "lineNumber": 527 }, "deprecated": false, "isRequired": true @@ -4315,7 +4402,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 524 + "lineNumber": 527 }, "deprecated": false, "isRequired": true @@ -4353,7 +4440,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 537 + "lineNumber": 540 }, "deprecated": false, "children": [ @@ -4375,7 +4462,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 537 + "lineNumber": 540 }, "deprecated": false, "isRequired": true @@ -4394,7 +4481,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 537 + "lineNumber": 540 }, "deprecated": false, "isRequired": true @@ -4424,7 +4511,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 570 + "lineNumber": 573 }, "deprecated": false, "children": [ @@ -4446,7 +4533,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 571 + "lineNumber": 574 }, "deprecated": false, "isRequired": true @@ -4463,7 +4550,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 572 + "lineNumber": 575 }, "deprecated": false, "isRequired": true @@ -4480,7 +4567,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 573 + "lineNumber": 576 }, "deprecated": false, "isRequired": true @@ -4502,7 +4589,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 656 + "lineNumber": 661 }, "deprecated": false, "children": [ @@ -4520,7 +4607,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 656 + "lineNumber": 661 }, "deprecated": false, "isRequired": true @@ -4751,7 +4838,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 75 + "lineNumber": 74 }, "deprecated": false, "children": [ @@ -4767,7 +4854,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 76 + "lineNumber": 75 }, "deprecated": false } @@ -4783,7 +4870,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 79 + "lineNumber": 78 }, "deprecated": false, "children": [ @@ -4799,7 +4886,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 80 + "lineNumber": 79 }, "deprecated": false }, @@ -4815,7 +4902,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 81 + "lineNumber": 80 }, "deprecated": false } @@ -4833,7 +4920,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 187 + "lineNumber": 186 }, "deprecated": false, "children": [ @@ -4851,7 +4938,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 191 + "lineNumber": 190 }, "deprecated": false }, @@ -4869,7 +4956,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 195 + "lineNumber": 194 }, "deprecated": false }, @@ -4887,7 +4974,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 200 + "lineNumber": 199 }, "deprecated": false }, @@ -4903,7 +4990,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 201 + "lineNumber": 200 }, "deprecated": false }, @@ -4926,7 +5013,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 202 + "lineNumber": 201 }, "deprecated": false }, @@ -4939,7 +5026,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 203 + "lineNumber": 202 }, "deprecated": false }, @@ -4952,7 +5039,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 204 + "lineNumber": 203 }, "deprecated": false }, @@ -4968,7 +5055,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 205 + "lineNumber": 204 }, "deprecated": false }, @@ -4984,7 +5071,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 206 + "lineNumber": 205 }, "deprecated": false }, @@ -4997,7 +5084,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 207 + "lineNumber": 206 }, "deprecated": false }, @@ -5010,7 +5097,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 208 + "lineNumber": 207 }, "deprecated": false }, @@ -5026,7 +5113,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 209 + "lineNumber": 208 }, "deprecated": false }, @@ -5049,7 +5136,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 210 + "lineNumber": 209 }, "deprecated": false }, @@ -5065,7 +5152,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 211 + "lineNumber": 210 }, "deprecated": false }, @@ -5081,7 +5168,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 212 + "lineNumber": 211 }, "deprecated": false }, @@ -5104,7 +5191,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 213 + "lineNumber": 212 }, "deprecated": false }, @@ -5120,7 +5207,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 215 + "lineNumber": 214 }, "deprecated": false }, @@ -5136,7 +5223,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 216 + "lineNumber": 215 }, "deprecated": false } @@ -5152,7 +5239,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 167 + "lineNumber": 166 }, "deprecated": false, "children": [ @@ -5168,7 +5255,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 168 + "lineNumber": 167 }, "deprecated": false }, @@ -5184,7 +5271,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 169 + "lineNumber": 168 }, "deprecated": false }, @@ -5200,7 +5287,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 170 + "lineNumber": 169 }, "deprecated": false }, @@ -5216,7 +5303,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 171 + "lineNumber": 170 }, "deprecated": false }, @@ -5229,7 +5316,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 172 + "lineNumber": 171 }, "deprecated": false }, @@ -5251,7 +5338,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 173 + "lineNumber": 172 }, "deprecated": false }, @@ -5267,7 +5354,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 174 + "lineNumber": 173 }, "deprecated": false }, @@ -5280,7 +5367,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 175 + "lineNumber": 174 }, "deprecated": false }, @@ -5293,7 +5380,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 176 + "lineNumber": 175 }, "deprecated": false }, @@ -5306,7 +5393,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 177 + "lineNumber": 176 }, "deprecated": false }, @@ -5322,7 +5409,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 178 + "lineNumber": 177 }, "deprecated": false }, @@ -5345,7 +5432,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 179 + "lineNumber": 178 }, "deprecated": false }, @@ -5368,7 +5455,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 180 + "lineNumber": 179 }, "deprecated": false }, @@ -5384,7 +5471,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 181 + "lineNumber": 180 }, "deprecated": false } @@ -5400,7 +5487,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 119 + "lineNumber": 118 }, "deprecated": false, "children": [ @@ -5413,7 +5500,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 120 + "lineNumber": 119 }, "deprecated": false }, @@ -5429,7 +5516,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 121 + "lineNumber": 120 }, "deprecated": false }, @@ -5445,7 +5532,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 122 + "lineNumber": 121 }, "deprecated": false }, @@ -5461,7 +5548,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 123 + "lineNumber": 122 }, "deprecated": false }, @@ -5477,7 +5564,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 124 + "lineNumber": 123 }, "deprecated": false }, @@ -5493,7 +5580,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 125 + "lineNumber": 124 }, "deprecated": false } @@ -5509,7 +5596,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 128 + "lineNumber": 127 }, "deprecated": false, "children": [ @@ -5522,7 +5609,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 129 + "lineNumber": 128 }, "deprecated": false }, @@ -5538,7 +5625,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 130 + "lineNumber": 129 }, "deprecated": false }, @@ -5551,7 +5638,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 131 + "lineNumber": 130 }, "deprecated": false }, @@ -5564,7 +5651,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 132 + "lineNumber": 131 }, "deprecated": false } @@ -5580,7 +5667,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 154 + "lineNumber": 153 }, "deprecated": false, "children": [ @@ -5596,7 +5683,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 155 + "lineNumber": 154 }, "deprecated": false }, @@ -5612,7 +5699,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 156 + "lineNumber": 155 }, "deprecated": false } @@ -5641,20 +5728,6 @@ "lineNumber": 104 } }, - { - "plugin": "discover", - "link": { - "path": "src/plugins/discover/public/application/embeddable/search_embeddable.ts", - "lineNumber": 23 - } - }, - { - "plugin": "discover", - "link": { - "path": "src/plugins/discover/public/application/embeddable/search_embeddable.ts", - "lineNumber": 59 - } - }, { "plugin": "maps", "link": { @@ -5925,21 +5998,21 @@ "plugin": "maps", "link": { "path": "x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx", - "lineNumber": 13 + "lineNumber": 12 } }, { "plugin": "maps", "link": { "path": "x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx", - "lineNumber": 164 + "lineNumber": 175 } }, { "plugin": "maps", "link": { "path": "x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx", - "lineNumber": 281 + "lineNumber": 292 } }, { @@ -6019,90 +6092,6 @@ "lineNumber": 66 } }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/service/list/config.ts", - "lineNumber": 10 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/service/list/config.ts", - "lineNumber": 42 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/service/list/manager.ts", - "lineNumber": 9 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/service/list/manager.ts", - "lineNumber": 43 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/create_index_pattern_wizard/lib/extract_time_fields.ts", - "lineNumber": 10 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/create_index_pattern_wizard/lib/extract_time_fields.ts", - "lineNumber": 12 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/indexed_fields_table/types.ts", - "lineNumber": 9 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/indexed_fields_table/types.ts", - "lineNumber": 11 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/indexed_fields_table/indexed_fields_table.tsx", - "lineNumber": 11 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/indexed_fields_table/indexed_fields_table.tsx", - "lineNumber": 23 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/field_editor/field_editor.tsx", - "lineNumber": 45 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/field_editor/field_editor.tsx", - "lineNumber": 148 - } - }, { "plugin": "ml", "link": { @@ -6901,6 +6890,20 @@ "lineNumber": 9 } }, + { + "plugin": "discover", + "link": { + "path": "src/plugins/discover/public/application/embeddable/saved_search_embeddable.tsx", + "lineNumber": 25 + } + }, + { + "plugin": "discover", + "link": { + "path": "src/plugins/discover/public/application/embeddable/saved_search_embeddable.tsx", + "lineNumber": 53 + } + }, { "plugin": "maps", "link": { @@ -6975,7 +6978,7 @@ "plugin": "lens", "link": { "path": "x-pack/plugins/lens/public/indexpattern_datasource/types.ts", - "lineNumber": 57 + "lineNumber": 60 } }, { @@ -7801,7 +7804,14 @@ "plugin": "stackAlerts", "link": { "path": "x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/entity_by_expression.tsx", - "lineNumber": 45 + "lineNumber": 26 + } + }, + { + "plugin": "stackAlerts", + "link": { + "path": "x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/entity_by_expression.tsx", + "lineNumber": 26 } }, { @@ -7856,14 +7866,14 @@ { "plugin": "maps", "link": { - "path": "x-pack/plugins/maps/public/classes/sources/es_search_source/get_docvalue_source_fields.test.ts", + "path": "x-pack/plugins/maps/public/classes/sources/es_search_source/util/get_docvalue_source_fields.test.ts", "lineNumber": 10 } }, { "plugin": "maps", "link": { - "path": "x-pack/plugins/maps/public/classes/sources/es_search_source/get_docvalue_source_fields.test.ts", + "path": "x-pack/plugins/maps/public/classes/sources/es_search_source/util/get_docvalue_source_fields.test.ts", "lineNumber": 12 } } @@ -8210,9 +8220,26 @@ ], "label": "IIndexPattern", "description": [], + "signature": [ + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataIndexPatternsPluginApi", + "section": "def-common.IIndexPattern", + "text": "IIndexPattern" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataPluginApi", + "section": "def-common.IndexPatternBase", + "text": "IndexPatternBase" + } + ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 32 + "lineNumber": 33 }, "deprecated": true, "references": [ @@ -8307,118 +8334,6 @@ "lineNumber": 72 } }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/service/list/config.ts", - "lineNumber": 10 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/service/list/config.ts", - "lineNumber": 29 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/service/list/config.ts", - "lineNumber": 29 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/service/list/config.ts", - "lineNumber": 42 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/service/list/config.ts", - "lineNumber": 46 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/service/list/manager.ts", - "lineNumber": 9 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/service/list/manager.ts", - "lineNumber": 32 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/service/list/manager.ts", - "lineNumber": 32 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/service/list/manager.ts", - "lineNumber": 43 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/service/list/manager.ts", - "lineNumber": 50 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/indexed_fields_table/components/table/table.tsx", - "lineNumber": 22 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/indexed_fields_table/components/table/table.tsx", - "lineNumber": 171 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/scripted_fields_table/components/table/table.tsx", - "lineNumber": 15 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/scripted_fields_table/components/table/table.tsx", - "lineNumber": 18 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/index_header/index_header.tsx", - "lineNumber": 12 - } - }, - { - "plugin": "indexPatternManagement", - "link": { - "path": "src/plugins/index_pattern_management/public/components/edit_index_pattern/index_header/index_header.tsx", - "lineNumber": 15 - } - }, { "plugin": "savedObjectsManagement", "link": { @@ -8703,7 +8618,7 @@ "plugin": "infra", "link": { "path": "x-pack/plugins/infra/public/pages/metrics/metrics_explorer/components/toolbar.tsx", - "lineNumber": 32 + "lineNumber": 31 } }, { @@ -8731,7 +8646,7 @@ "plugin": "infra", "link": { "path": "x-pack/plugins/infra/public/pages/metrics/metrics_explorer/index.tsx", - "lineNumber": 23 + "lineNumber": 24 } }, { @@ -8777,94 +8692,143 @@ } }, { - "plugin": "securitySolution", + "plugin": "timelines", "link": { - "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/types.ts", - "lineNumber": 22 + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 8 + } + }, + { + "plugin": "timelines", + "link": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 86 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/types.ts", - "lineNumber": 72 + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 8 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/action.ts", + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 86 + } + }, + { + "plugin": "timelines", + "link": { + "path": "x-pack/plugins/timelines/public/components/utils/keury/index.ts", + "lineNumber": 17 + } + }, + { + "plugin": "timelines", + "link": { + "path": "x-pack/plugins/timelines/public/components/utils/keury/index.ts", + "lineNumber": 22 + } + }, + { + "plugin": "timelines", + "link": { + "path": "x-pack/plugins/timelines/public/components/utils/keury/index.ts", + "lineNumber": 37 + } + }, + { + "plugin": "timelines", + "link": { + "path": "x-pack/plugins/timelines/public/components/utils/keury/index.ts", + "lineNumber": 80 + } + }, + { + "plugin": "timelines", + "link": { + "path": "x-pack/plugins/timelines/public/components/t_grid/helpers.tsx", "lineNumber": 20 } }, { - "plugin": "securitySolution", + "plugin": "timelines", "link": { - "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/action.ts", - "lineNumber": 100 + "path": "x-pack/plugins/timelines/public/components/t_grid/helpers.tsx", + "lineNumber": 153 } }, { - "plugin": "securitySolution", + "plugin": "timelines", "link": { - "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", - "lineNumber": 8 + "path": "x-pack/plugins/timelines/public/components/t_grid/integrated/index.tsx", + "lineNumber": 31 + } + }, + { + "plugin": "timelines", + "link": { + "path": "x-pack/plugins/timelines/public/components/t_grid/integrated/index.tsx", + "lineNumber": 121 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", - "lineNumber": 86 + "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/types.ts", + "lineNumber": 23 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/common/containers/source/index.tsx", - "lineNumber": 12 + "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/types.ts", + "lineNumber": 81 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/common/containers/source/index.tsx", - "lineNumber": 48 + "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/action.ts", + "lineNumber": 20 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/common/containers/source/index.tsx", - "lineNumber": 122 + "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/action.ts", + "lineNumber": 100 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/common/components/url_state/types.ts", - "lineNumber": 13 + "path": "x-pack/plugins/security_solution/public/common/containers/source/index.tsx", + "lineNumber": 12 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/common/components/url_state/types.ts", - "lineNumber": 112 + "path": "x-pack/plugins/security_solution/public/common/containers/source/index.tsx", + "lineNumber": 48 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/common/components/url_state/types.ts", - "lineNumber": 152 + "path": "x-pack/plugins/security_solution/public/common/containers/source/index.tsx", + "lineNumber": 122 } }, { "plugin": "securitySolution", "link": { "path": "x-pack/plugins/security_solution/public/common/lib/keury/index.ts", - "lineNumber": 16 + "lineNumber": 17 } }, { @@ -8955,14 +8919,14 @@ "plugin": "securitySolution", "link": { "path": "x-pack/plugins/security_solution/public/common/components/events_viewer/events_viewer.tsx", - "lineNumber": 35 + "lineNumber": 36 } }, { "plugin": "securitySolution", "link": { "path": "x-pack/plugins/security_solution/public/common/components/events_viewer/events_viewer.tsx", - "lineNumber": 122 + "lineNumber": 126 } }, { @@ -9010,148 +8974,169 @@ { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/common/components/search_bar/index.tsx", - "lineNumber": 18 + "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts", + "lineNumber": 55 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/common/components/search_bar/index.tsx", - "lineNumber": 51 + "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts", + "lineNumber": 77 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/network/pages/details/types.ts", - "lineNumber": 8 + "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts", + "lineNumber": 82 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/network/pages/details/types.ts", - "lineNumber": 41 + "path": "x-pack/plugins/security_solution/public/common/components/url_state/types.ts", + "lineNumber": 13 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/network/components/network_top_countries_table/index.tsx", - "lineNumber": 12 + "path": "x-pack/plugins/security_solution/public/common/components/url_state/types.ts", + "lineNumber": 128 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/network/components/network_top_countries_table/index.tsx", - "lineNumber": 34 + "path": "x-pack/plugins/security_solution/public/common/components/url_state/types.ts", + "lineNumber": 168 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts", - "lineNumber": 48 + "path": "x-pack/plugins/security_solution/public/common/components/search_bar/index.tsx", + "lineNumber": 18 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts", - "lineNumber": 64 + "path": "x-pack/plugins/security_solution/public/common/components/search_bar/index.tsx", + "lineNumber": 51 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts", - "lineNumber": 69 + "path": "x-pack/plugins/security_solution/public/network/pages/details/types.ts", + "lineNumber": 8 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/detections/components/rules/description_step/types.ts", + "path": "x-pack/plugins/security_solution/public/network/pages/details/types.ts", + "lineNumber": 41 + } + }, + { + "plugin": "securitySolution", + "link": { + "path": "x-pack/plugins/security_solution/public/network/components/network_top_countries_table/index.tsx", "lineNumber": 12 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/detections/components/rules/description_step/types.ts", - "lineNumber": 28 + "path": "x-pack/plugins/security_solution/public/network/components/network_top_countries_table/index.tsx", + "lineNumber": 34 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/detections/components/rules/description_step/index.tsx", - "lineNumber": 15 + "path": "x-pack/plugins/security_solution/public/hosts/pages/details/types.ts", + "lineNumber": 9 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/detections/components/rules/description_step/index.tsx", - "lineNumber": 58 + "path": "x-pack/plugins/security_solution/public/hosts/pages/details/types.ts", + "lineNumber": 65 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/detections/components/rules/description_step/index.tsx", - "lineNumber": 132 + "path": "x-pack/plugins/security_solution/public/overview/components/alerts_by_category/index.tsx", + "lineNumber": 20 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/detections/components/rules/description_step/index.tsx", - "lineNumber": 164 + "path": "x-pack/plugins/security_solution/public/overview/components/alerts_by_category/index.tsx", + "lineNumber": 44 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/hosts/pages/details/types.ts", - "lineNumber": 9 + "path": "x-pack/plugins/security_solution/public/overview/components/event_counts/index.tsx", + "lineNumber": 21 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/hosts/pages/details/types.ts", - "lineNumber": 65 + "path": "x-pack/plugins/security_solution/public/overview/components/event_counts/index.tsx", + "lineNumber": 33 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/overview/components/alerts_by_category/index.tsx", - "lineNumber": 20 + "path": "x-pack/plugins/security_solution/public/detections/components/rules/description_step/types.ts", + "lineNumber": 12 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/overview/components/alerts_by_category/index.tsx", - "lineNumber": 44 + "path": "x-pack/plugins/security_solution/public/detections/components/rules/description_step/types.ts", + "lineNumber": 28 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/overview/components/event_counts/index.tsx", - "lineNumber": 21 + "path": "x-pack/plugins/security_solution/public/detections/components/rules/description_step/index.tsx", + "lineNumber": 15 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/overview/components/event_counts/index.tsx", - "lineNumber": 33 + "path": "x-pack/plugins/security_solution/public/detections/components/rules/description_step/index.tsx", + "lineNumber": 58 + } + }, + { + "plugin": "securitySolution", + "link": { + "path": "x-pack/plugins/security_solution/public/detections/components/rules/description_step/index.tsx", + "lineNumber": 132 + } + }, + { + "plugin": "securitySolution", + "link": { + "path": "x-pack/plugins/security_solution/public/detections/components/rules/description_step/index.tsx", + "lineNumber": 164 } }, { @@ -9168,6 +9153,20 @@ "lineNumber": 28 } }, + { + "plugin": "timelines", + "link": { + "path": "x-pack/plugins/timelines/public/mock/index_pattern.ts", + "lineNumber": 8 + } + }, + { + "plugin": "timelines", + "link": { + "path": "x-pack/plugins/timelines/public/mock/index_pattern.ts", + "lineNumber": 10 + } + }, { "plugin": "lens", "link": { @@ -9210,6 +9209,20 @@ "lineNumber": 66 } }, + { + "plugin": "timelines", + "link": { + "path": "x-pack/plugins/timelines/target/types/common/search_strategy/index_fields/index.d.ts", + "lineNumber": 1 + } + }, + { + "plugin": "timelines", + "link": { + "path": "x-pack/plugins/timelines/target/types/common/search_strategy/index_fields/index.d.ts", + "lineNumber": 66 + } + }, { "plugin": "infra", "link": { @@ -9255,22 +9268,43 @@ { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/target/types/public/common/containers/source/index.d.ts", - "lineNumber": 1 + "path": "x-pack/plugins/security_solution/target/types/public/common/containers/source/index.d.ts", + "lineNumber": 1 + } + }, + { + "plugin": "securitySolution", + "link": { + "path": "x-pack/plugins/security_solution/target/types/public/common/containers/source/index.d.ts", + "lineNumber": 10 + } + }, + { + "plugin": "securitySolution", + "link": { + "path": "x-pack/plugins/security_solution/target/types/public/common/containers/source/index.d.ts", + "lineNumber": 23 + } + }, + { + "plugin": "securitySolution", + "link": { + "path": "x-pack/plugins/security_solution/target/types/public/common/components/url_state/types.d.ts", + "lineNumber": 3 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/target/types/public/common/containers/source/index.d.ts", - "lineNumber": 10 + "path": "x-pack/plugins/security_solution/target/types/public/common/components/url_state/types.d.ts", + "lineNumber": 25 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/target/types/public/common/containers/source/index.d.ts", - "lineNumber": 23 + "path": "x-pack/plugins/security_solution/target/types/public/common/components/url_state/types.d.ts", + "lineNumber": 55 } }, { @@ -9315,27 +9349,6 @@ "lineNumber": 5 } }, - { - "plugin": "securitySolution", - "link": { - "path": "x-pack/plugins/security_solution/target/types/public/common/components/url_state/types.d.ts", - "lineNumber": 3 - } - }, - { - "plugin": "securitySolution", - "link": { - "path": "x-pack/plugins/security_solution/target/types/public/common/components/url_state/types.d.ts", - "lineNumber": 25 - } - }, - { - "plugin": "securitySolution", - "link": { - "path": "x-pack/plugins/security_solution/target/types/public/common/components/url_state/types.d.ts", - "lineNumber": 55 - } - }, { "plugin": "securitySolution", "link": { @@ -9529,7 +9542,7 @@ "plugin": "infra", "link": { "path": "x-pack/plugins/infra/public/pages/metrics/index.tsx", - "lineNumber": 193 + "lineNumber": 162 } }, { @@ -9682,99 +9695,99 @@ { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/network/pages/navigation/types.ts", + "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/models/index_pattern.ts", "lineNumber": 9 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/network/pages/navigation/types.ts", - "lineNumber": 35 + "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/models/index_pattern.ts", + "lineNumber": 12 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/network/pages/navigation/types.ts", - "lineNumber": 53 + "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/models/index_pattern.ts", + "lineNumber": 12 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/common/detection_engine/get_query_filter.ts", - "lineNumber": 16 + "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/models/index_pattern.ts", + "lineNumber": 12 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/common/detection_engine/get_query_filter.ts", - "lineNumber": 31 + "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/models/index_pattern.ts", + "lineNumber": 13 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/common/components/exceptions/helpers.tsx", - "lineNumber": 39 + "path": "x-pack/plugins/security_solution/common/detection_engine/get_query_filter.ts", + "lineNumber": 16 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/common/components/exceptions/helpers.tsx", - "lineNumber": 49 + "path": "x-pack/plugins/security_solution/common/detection_engine/get_query_filter.ts", + "lineNumber": 31 } }, { "plugin": "securitySolution", "link": { "path": "x-pack/plugins/security_solution/public/common/components/exceptions/helpers.tsx", - "lineNumber": 52 + "lineNumber": 39 } }, { "plugin": "securitySolution", "link": { "path": "x-pack/plugins/security_solution/public/common/components/exceptions/helpers.tsx", - "lineNumber": 485 + "lineNumber": 49 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/models/index_pattern.ts", - "lineNumber": 9 + "path": "x-pack/plugins/security_solution/public/common/components/exceptions/helpers.tsx", + "lineNumber": 52 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/models/index_pattern.ts", - "lineNumber": 12 + "path": "x-pack/plugins/security_solution/public/common/components/exceptions/helpers.tsx", + "lineNumber": 504 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/models/index_pattern.ts", - "lineNumber": 12 + "path": "x-pack/plugins/security_solution/public/network/pages/navigation/types.ts", + "lineNumber": 9 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/models/index_pattern.ts", - "lineNumber": 12 + "path": "x-pack/plugins/security_solution/public/network/pages/navigation/types.ts", + "lineNumber": 35 } }, { "plugin": "securitySolution", "link": { - "path": "x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/models/index_pattern.ts", - "lineNumber": 13 + "path": "x-pack/plugins/security_solution/public/network/pages/navigation/types.ts", + "lineNumber": 52 } }, { @@ -9851,7 +9864,7 @@ "plugin": "securitySolution", "link": { "path": "x-pack/plugins/security_solution/server/lib/detection_engine/reference_rules/query.ts", - "lineNumber": 52 + "lineNumber": 53 } }, { @@ -10138,7 +10151,7 @@ "plugin": "observability", "link": { "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "lineNumber": 104 + "lineNumber": 94 } }, { @@ -10152,35 +10165,28 @@ "plugin": "observability", "link": { "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/utils.ts", - "lineNumber": 53 + "lineNumber": 56 } }, { "plugin": "observability", "link": { "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/utils.ts", - "lineNumber": 61 + "lineNumber": 64 } }, { "plugin": "observability", "link": { "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/utils.ts", - "lineNumber": 69 - } - }, - { - "plugin": "observability", - "link": { - "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/default_configs.ts", - "lineNumber": 19 + "lineNumber": 72 } }, { "plugin": "observability", "link": { - "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/default_configs.ts", - "lineNumber": 25 + "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/utils.ts", + "lineNumber": 89 } }, { @@ -10423,29 +10429,6 @@ } ], "children": [ - { - "parentPluginId": "data", - "id": "def-common.IIndexPattern.fields", - "type": "Array", - "tags": [], - "label": "fields", - "description": [], - "signature": [ - { - "pluginId": "data", - "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IFieldType", - "text": "IFieldType" - }, - "[]" - ], - "source": { - "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 33 - }, - "deprecated": false - }, { "parentPluginId": "data", "id": "def-common.IIndexPattern.title", @@ -10459,22 +10442,6 @@ }, "deprecated": false }, - { - "parentPluginId": "data", - "id": "def-common.IIndexPattern.id", - "type": "string", - "tags": [], - "label": "id", - "description": [], - "signature": [ - "string | undefined" - ], - "source": { - "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 35 - }, - "deprecated": false - }, { "parentPluginId": "data", "id": "def-common.IIndexPattern.type", @@ -10489,7 +10456,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 39 + "lineNumber": 38 }, "deprecated": false }, @@ -10505,7 +10472,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 40 + "lineNumber": 39 }, "deprecated": false }, @@ -10529,7 +10496,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 41 + "lineNumber": 40 }, "deprecated": false, "children": [], @@ -10555,7 +10522,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 42 + "lineNumber": 41 }, "deprecated": false }, @@ -10605,7 +10572,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 46 + "lineNumber": 45 }, "deprecated": false } @@ -11110,7 +11077,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 135 + "lineNumber": 134 }, "deprecated": false, "children": [ @@ -11134,7 +11101,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 136 + "lineNumber": 135 }, "deprecated": false, "returnComment": [], @@ -11157,7 +11124,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 136 + "lineNumber": 135 }, "deprecated": false } @@ -11183,7 +11150,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 137 + "lineNumber": 136 }, "deprecated": false, "returnComment": [], @@ -11206,7 +11173,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 137 + "lineNumber": 136 }, "deprecated": false } @@ -11226,7 +11193,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 54 + "lineNumber": 53 }, "deprecated": false, "children": [ @@ -11239,7 +11206,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 55 + "lineNumber": 54 }, "deprecated": false }, @@ -11252,7 +11219,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 56 + "lineNumber": 55 }, "deprecated": false }, @@ -11265,7 +11232,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 57 + "lineNumber": 56 }, "deprecated": false }, @@ -11278,7 +11245,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 58 + "lineNumber": 57 }, "deprecated": false }, @@ -11294,7 +11261,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 59 + "lineNumber": 58 }, "deprecated": false }, @@ -11310,7 +11277,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 60 + "lineNumber": 59 }, "deprecated": false }, @@ -11326,7 +11293,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 61 + "lineNumber": 60 }, "deprecated": false }, @@ -11342,7 +11309,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 62 + "lineNumber": 61 }, "deprecated": false }, @@ -11358,7 +11325,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 63 + "lineNumber": 62 }, "deprecated": false }, @@ -11374,7 +11341,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 64 + "lineNumber": 63 }, "deprecated": false }, @@ -11392,7 +11359,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 68 + "lineNumber": 67 }, "deprecated": false } @@ -11464,7 +11431,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 225 + "lineNumber": 224 }, "deprecated": false, "children": [ @@ -11482,7 +11449,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 229 + "lineNumber": 228 }, "deprecated": false }, @@ -11500,7 +11467,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 233 + "lineNumber": 232 }, "deprecated": false }, @@ -11516,7 +11483,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 234 + "lineNumber": 233 }, "deprecated": false }, @@ -11534,7 +11501,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 239 + "lineNumber": 238 }, "deprecated": true, "references": [] @@ -11551,7 +11518,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 240 + "lineNumber": 239 }, "deprecated": false }, @@ -11574,7 +11541,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 241 + "lineNumber": 240 }, "deprecated": false }, @@ -11598,7 +11565,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 242 + "lineNumber": 241 }, "deprecated": false }, @@ -11621,7 +11588,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 243 + "lineNumber": 242 }, "deprecated": false }, @@ -11637,7 +11604,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 244 + "lineNumber": 243 }, "deprecated": false }, @@ -11661,7 +11628,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 245 + "lineNumber": 244 }, "deprecated": false }, @@ -11685,7 +11652,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 246 + "lineNumber": 245 }, "deprecated": false }, @@ -11708,7 +11675,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 247 + "lineNumber": 246 }, "deprecated": false }, @@ -11724,7 +11691,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 248 + "lineNumber": 247 }, "deprecated": false } @@ -11740,7 +11707,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 20 + "lineNumber": 21 }, "deprecated": false, "children": [ @@ -11756,7 +11723,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 21 + "lineNumber": 22 }, "deprecated": false }, @@ -11772,7 +11739,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 22 + "lineNumber": 23 }, "deprecated": false } @@ -11788,7 +11755,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 102 + "lineNumber": 101 }, "deprecated": false, "children": [ @@ -11814,7 +11781,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 103 + "lineNumber": 102 }, "deprecated": false, "returnComment": [], @@ -11837,7 +11804,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 103 + "lineNumber": 102 }, "deprecated": false } @@ -11857,7 +11824,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 104 + "lineNumber": 103 }, "deprecated": false, "returnComment": [], @@ -11871,7 +11838,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 104 + "lineNumber": 103 }, "deprecated": false }, @@ -11884,7 +11851,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 104 + "lineNumber": 103 }, "deprecated": false } @@ -11904,7 +11871,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 105 + "lineNumber": 104 }, "deprecated": false, "returnComment": [], @@ -11918,7 +11885,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 106 + "lineNumber": 105 }, "deprecated": false }, @@ -11931,7 +11898,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 107 + "lineNumber": 106 }, "deprecated": false }, @@ -11947,7 +11914,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 108 + "lineNumber": 107 }, "deprecated": false }, @@ -11963,7 +11930,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 109 + "lineNumber": 108 }, "deprecated": false } @@ -11983,7 +11950,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 111 + "lineNumber": 110 }, "deprecated": false, "returnComment": [], @@ -11997,7 +11964,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 112 + "lineNumber": 111 }, "deprecated": false }, @@ -12013,7 +11980,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 113 + "lineNumber": 112 }, "deprecated": false }, @@ -12029,7 +11996,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 114 + "lineNumber": 113 }, "deprecated": false } @@ -12047,7 +12014,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 116 + "lineNumber": 115 }, "deprecated": false, "returnComment": [], @@ -12061,7 +12028,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 116 + "lineNumber": 115 }, "deprecated": false }, @@ -12074,7 +12041,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 116 + "lineNumber": 115 }, "deprecated": false } @@ -12092,7 +12059,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 94 + "lineNumber": 93 }, "deprecated": false, "children": [ @@ -12108,7 +12075,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 95 + "lineNumber": 94 }, "deprecated": false }, @@ -12124,7 +12091,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 96 + "lineNumber": 95 }, "deprecated": false }, @@ -12140,7 +12107,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 97 + "lineNumber": 96 }, "deprecated": false }, @@ -12156,7 +12123,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 98 + "lineNumber": 97 }, "deprecated": false }, @@ -12172,7 +12139,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 99 + "lineNumber": 98 }, "deprecated": false } @@ -12188,7 +12155,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 251 + "lineNumber": 250 }, "deprecated": false, "children": [ @@ -12201,7 +12168,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 252 + "lineNumber": 251 }, "deprecated": false } @@ -12217,7 +12184,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 159 + "lineNumber": 158 }, "deprecated": false, "children": [ @@ -12233,7 +12200,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 160 + "lineNumber": 159 }, "deprecated": false }, @@ -12249,7 +12216,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 161 + "lineNumber": 160 }, "deprecated": false } @@ -12265,7 +12232,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 87 + "lineNumber": 86 }, "deprecated": false, "children": [ @@ -12281,7 +12248,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 88 + "lineNumber": 87 }, "deprecated": false, "returnComment": [], @@ -12295,7 +12262,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 88 + "lineNumber": 87 }, "deprecated": false } @@ -12313,7 +12280,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 89 + "lineNumber": 88 }, "deprecated": false, "returnComment": [], @@ -12331,7 +12298,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 90 + "lineNumber": 89 }, "deprecated": false, "returnComment": [], @@ -12345,7 +12312,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 90 + "lineNumber": 89 }, "deprecated": false }, @@ -12361,7 +12328,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 90 + "lineNumber": 89 }, "deprecated": false } @@ -12379,7 +12346,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 91 + "lineNumber": 90 }, "deprecated": false, "returnComment": [], @@ -12393,7 +12360,7 @@ "description": [], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 91 + "lineNumber": 90 }, "deprecated": false } @@ -12417,7 +12384,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 142 + "lineNumber": 141 }, "deprecated": false, "initialIsOpen": false @@ -12442,7 +12409,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 17 + "lineNumber": 18 }, "deprecated": false, "initialIsOpen": false @@ -12459,7 +12426,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 164 + "lineNumber": 163 }, "deprecated": false, "initialIsOpen": false @@ -12484,7 +12451,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 219 + "lineNumber": 218 }, "deprecated": false, "initialIsOpen": false @@ -12711,7 +12678,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/index_patterns/index_patterns.ts", - "lineNumber": 662 + "lineNumber": 667 }, "deprecated": false, "initialIsOpen": false @@ -12736,7 +12703,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 85 + "lineNumber": 84 }, "deprecated": false, "initialIsOpen": false @@ -12761,7 +12728,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 84 + "lineNumber": 83 }, "deprecated": false, "initialIsOpen": false @@ -12778,7 +12745,7 @@ ], "source": { "path": "src/plugins/data/common/index_patterns/types.ts", - "lineNumber": 19 + "lineNumber": 20 }, "deprecated": false, "initialIsOpen": false diff --git a/api_docs/data_index_patterns.mdx b/api_docs/data_index_patterns.mdx index 8313619594a75..c5bb45f6e684e 100644 --- a/api_docs/data_index_patterns.mdx +++ b/api_docs/data_index_patterns.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'data.indexPatterns'] warning: 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. --- - import dataIndexPatternsObj from './data_index_patterns.json'; 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. @@ -19,7 +18,7 @@ Contact [App Services](https://github.com/orgs/elastic/teams/kibana-app-services | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 3809 | 107 | 3257 | 75 | +| 3833 | 107 | 3268 | 75 | ## Server diff --git a/api_docs/data_query.json b/api_docs/data_query.json index a9c1711136951..d32f630b982f8 100644 --- a/api_docs/data_query.json +++ b/api_docs/data_query.json @@ -1183,7 +1183,7 @@ "section": "def-public.SavedObjectsClient", "text": "SavedObjectsClient" }, - ", \"get\" | \"delete\" | \"create\" | \"bulkCreate\" | \"find\" | \"bulkGet\" | \"update\" | \"bulkUpdate\">) => ", + ", \"get\" | \"delete\" | \"create\" | \"bulkCreate\" | \"find\" | \"bulkGet\" | \"resolve\" | \"update\" | \"bulkUpdate\">) => ", { "pluginId": "data", "scope": "public", @@ -1214,7 +1214,7 @@ "section": "def-public.SavedObjectsClient", "text": "SavedObjectsClient" }, - ", \"get\" | \"delete\" | \"create\" | \"bulkCreate\" | \"find\" | \"bulkGet\" | \"update\" | \"bulkUpdate\">" + ", \"get\" | \"delete\" | \"create\" | \"bulkCreate\" | \"find\" | \"bulkGet\" | \"resolve\" | \"update\" | \"bulkUpdate\">" ], "source": { "path": "src/plugins/data/public/query/saved_query/saved_query_service.ts", diff --git a/api_docs/data_query.mdx b/api_docs/data_query.mdx index 751cd14dc7c5b..25edd420d1d91 100644 --- a/api_docs/data_query.mdx +++ b/api_docs/data_query.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'data.query'] warning: 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. --- - import dataQueryObj from './data_query.json'; 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. @@ -19,7 +18,7 @@ Contact [App Services](https://github.com/orgs/elastic/teams/kibana-app-services | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 3809 | 107 | 3257 | 75 | +| 3833 | 107 | 3268 | 75 | ## Client diff --git a/api_docs/data_search.json b/api_docs/data_search.json index 99c04298c27cb..b6f3e18e35945 100644 --- a/api_docs/data_search.json +++ b/api_docs/data_search.json @@ -193,7 +193,7 @@ "description": [], "source": { "path": "src/plugins/data/public/search/search_interceptor/search_interceptor.ts", - "lineNumber": 67 + "lineNumber": 68 }, "deprecated": false, "children": [ @@ -209,7 +209,7 @@ ], "source": { "path": "src/plugins/data/public/search/search_interceptor/search_interceptor.ts", - "lineNumber": 93 + "lineNumber": 95 }, "deprecated": false, "children": [ @@ -231,7 +231,7 @@ ], "source": { "path": "src/plugins/data/public/search/search_interceptor/search_interceptor.ts", - "lineNumber": 93 + "lineNumber": 95 }, "deprecated": false, "isRequired": true @@ -251,7 +251,7 @@ ], "source": { "path": "src/plugins/data/public/search/search_interceptor/search_interceptor.ts", - "lineNumber": 113 + "lineNumber": 116 }, "deprecated": false, "children": [], @@ -299,7 +299,7 @@ ], "source": { "path": "src/plugins/data/public/search/search_interceptor/search_interceptor.ts", - "lineNumber": 313 + "lineNumber": 316 }, "deprecated": false, "children": [ @@ -322,7 +322,7 @@ ], "source": { "path": "src/plugins/data/public/search/search_interceptor/search_interceptor.ts", - "lineNumber": 313 + "lineNumber": 316 }, "deprecated": false, "isRequired": true @@ -345,7 +345,7 @@ ], "source": { "path": "src/plugins/data/public/search/search_interceptor/search_interceptor.ts", - "lineNumber": 313 + "lineNumber": 316 }, "deprecated": false, "isRequired": true @@ -367,7 +367,7 @@ ], "source": { "path": "src/plugins/data/public/search/search_interceptor/search_interceptor.ts", - "lineNumber": 386 + "lineNumber": 413 }, "deprecated": false, "children": [ @@ -383,7 +383,7 @@ ], "source": { "path": "src/plugins/data/public/search/search_interceptor/search_interceptor.ts", - "lineNumber": 386 + "lineNumber": 413 }, "deprecated": false, "isRequired": true @@ -1504,7 +1504,7 @@ "description": [], "source": { "path": "src/plugins/data/public/search/search_interceptor/search_interceptor.ts", - "lineNumber": 54 + "lineNumber": 55 }, "deprecated": false, "children": [ @@ -1526,7 +1526,7 @@ ], "source": { "path": "src/plugins/data/public/search/search_interceptor/search_interceptor.ts", - "lineNumber": 55 + "lineNumber": 56 }, "deprecated": false }, @@ -1548,7 +1548,7 @@ ], "source": { "path": "src/plugins/data/public/search/search_interceptor/search_interceptor.ts", - "lineNumber": 56 + "lineNumber": 57 }, "deprecated": false }, @@ -1570,7 +1570,7 @@ ], "source": { "path": "src/plugins/data/public/search/search_interceptor/search_interceptor.ts", - "lineNumber": 57 + "lineNumber": 58 }, "deprecated": false }, @@ -1594,7 +1594,7 @@ ], "source": { "path": "src/plugins/data/public/search/search_interceptor/search_interceptor.ts", - "lineNumber": 58 + "lineNumber": 59 }, "deprecated": false }, @@ -1756,7 +1756,7 @@ ], "source": { "path": "src/plugins/data/public/search/search_interceptor/search_interceptor.ts", - "lineNumber": 59 + "lineNumber": 60 }, "deprecated": false }, @@ -1773,7 +1773,7 @@ ], "source": { "path": "src/plugins/data/public/search/search_interceptor/search_interceptor.ts", - "lineNumber": 60 + "lineNumber": 61 }, "deprecated": false }, @@ -1827,7 +1827,7 @@ ], "source": { "path": "src/plugins/data/public/search/search_interceptor/search_interceptor.ts", - "lineNumber": 61 + "lineNumber": 62 }, "deprecated": false } @@ -2207,7 +2207,59 @@ "objects": [] }, "server": { - "classes": [], + "classes": [ + { + "parentPluginId": "data", + "id": "def-server.NoSearchIdInSessionError", + "type": "Class", + "tags": [], + "label": "NoSearchIdInSessionError", + "description": [], + "signature": [ + { + "pluginId": "data", + "scope": "server", + "docId": "kibDataSearchPluginApi", + "section": "def-server.NoSearchIdInSessionError", + "text": "NoSearchIdInSessionError" + }, + " extends ", + { + "pluginId": "kibanaUtils", + "scope": "common", + "docId": "kibKibanaUtilsPluginApi", + "section": "def-common.KbnError", + "text": "KbnError" + } + ], + "source": { + "path": "src/plugins/data/server/search/errors/no_search_id_in_session.ts", + "lineNumber": 11 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "data", + "id": "def-server.NoSearchIdInSessionError.Unnamed", + "type": "Function", + "tags": [], + "label": "Constructor", + "description": [], + "signature": [ + "any" + ], + "source": { + "path": "src/plugins/data/server/search/errors/no_search_id_in_session.ts", + "lineNumber": 12 + }, + "deprecated": false, + "children": [], + "returnComment": [] + } + ], + "initialIsOpen": false + } + ], "functions": [ { "parentPluginId": "data", @@ -4599,7 +4651,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 202 + "lineNumber": 201 }, "deprecated": false, "children": [ @@ -4622,7 +4674,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 202 + "lineNumber": 201 }, "deprecated": false, "isRequired": false @@ -4642,7 +4694,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 206 + "lineNumber": 205 }, "deprecated": false, "children": [], @@ -4660,7 +4712,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 210 + "lineNumber": 209 }, "deprecated": false, "children": [ @@ -4676,7 +4728,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 210 + "lineNumber": 209 }, "deprecated": false, "isRequired": true @@ -4693,7 +4745,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 210 + "lineNumber": 209 }, "deprecated": false, "isRequired": true @@ -4733,7 +4785,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 236 + "lineNumber": 235 }, "deprecated": false, "children": [ @@ -4757,7 +4809,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 236 + "lineNumber": 235 }, "deprecated": false, "isRequired": true @@ -4781,7 +4833,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 236 + "lineNumber": 235 }, "deprecated": false, "isRequired": false @@ -4813,7 +4865,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 257 + "lineNumber": 256 }, "deprecated": false, "children": [ @@ -4838,7 +4890,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 257 + "lineNumber": 256 }, "deprecated": false, "isRequired": false @@ -4862,7 +4914,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 292 + "lineNumber": 291 }, "deprecated": false, "children": [], @@ -4886,7 +4938,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 323 + "lineNumber": 322 }, "deprecated": true, "references": [ @@ -4915,7 +4967,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 334 + "lineNumber": 333 }, "deprecated": false, "children": [], @@ -4941,7 +4993,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 343 + "lineNumber": 342 }, "deprecated": false, "children": [], @@ -4977,7 +5029,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 398 + "lineNumber": 397 }, "deprecated": false, "children": [], @@ -5003,7 +5055,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 402 + "lineNumber": 401 }, "deprecated": false, "children": [], @@ -5029,7 +5081,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 406 + "lineNumber": 405 }, "deprecated": false, "children": [], @@ -5047,7 +5099,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 410 + "lineNumber": 409 }, "deprecated": false, "children": [ @@ -5063,7 +5115,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 410 + "lineNumber": 409 }, "deprecated": false, "isRequired": true @@ -5083,7 +5135,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 414 + "lineNumber": 413 }, "deprecated": false, "children": [ @@ -5099,7 +5151,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 414 + "lineNumber": 413 }, "deprecated": false, "isRequired": true @@ -5116,7 +5168,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 414 + "lineNumber": 413 }, "deprecated": false, "isRequired": false @@ -5136,7 +5188,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 422 + "lineNumber": 421 }, "deprecated": false, "children": [], @@ -5154,7 +5206,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 428 + "lineNumber": 427 }, "deprecated": false, "children": [], @@ -5174,7 +5226,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 437 + "lineNumber": 436 }, "deprecated": false, "children": [], @@ -5192,7 +5244,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 441 + "lineNumber": 440 }, "deprecated": false, "children": [ @@ -5208,7 +5260,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 441 + "lineNumber": 440 }, "deprecated": false, "isRequired": true @@ -5235,7 +5287,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 455 + "lineNumber": 454 }, "deprecated": false, "children": [], @@ -5261,7 +5313,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 459 + "lineNumber": 458 }, "deprecated": false, "children": [], @@ -5279,7 +5331,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 463 + "lineNumber": 462 }, "deprecated": false, "children": [], @@ -5297,7 +5349,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 468 + "lineNumber": 467 }, "deprecated": false, "children": [], @@ -5346,7 +5398,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 479 + "lineNumber": 478 }, "deprecated": false }, @@ -5393,7 +5445,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 483 + "lineNumber": 482 }, "deprecated": false }, @@ -5417,7 +5469,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 513 + "lineNumber": 512 }, "deprecated": false, "children": [ @@ -5439,7 +5491,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "lineNumber": 513 + "lineNumber": 512 }, "deprecated": false, "isRequired": true @@ -5801,6 +5853,36 @@ ], "returnComment": [] }, + { + "parentPluginId": "data", + "id": "def-common.AggConfigs.getResolvedTimeRange", + "type": "Function", + "tags": [], + "label": "getResolvedTimeRange", + "description": [ + "\nReturns the current time range as moment instance (date math will get resolved using the current \"now\" value or system time if not set)" + ], + "signature": [ + "() => ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataQueryPluginApi", + "section": "def-common.TimeRangeBounds", + "text": "TimeRangeBounds" + }, + " | undefined" + ], + "source": { + "path": "src/plugins/data/common/search/aggs/agg_configs.ts", + "lineNumber": 134 + }, + "deprecated": false, + "children": [], + "returnComment": [ + "Current time range as resolved date." + ] + }, { "parentPluginId": "data", "id": "def-common.AggConfigs.clone", @@ -5820,7 +5902,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 131 + "lineNumber": 144 }, "deprecated": false, "children": [ @@ -5836,7 +5918,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 131 + "lineNumber": 144 }, "deprecated": false, "isRequired": true @@ -5890,7 +5972,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 144 + "lineNumber": 157 }, "deprecated": false, "children": [ @@ -5924,7 +6006,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 145 + "lineNumber": 158 }, "deprecated": false, "isRequired": true @@ -5941,7 +6023,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 146 + "lineNumber": 159 }, "deprecated": false, "isRequired": true @@ -5971,7 +6053,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 187 + "lineNumber": 200 }, "deprecated": false, "children": [ @@ -5996,7 +6078,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 187 + "lineNumber": 200 }, "deprecated": false, "isRequired": true @@ -6016,7 +6098,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 199 + "lineNumber": 212 }, "deprecated": false, "children": [], @@ -6042,7 +6124,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 289 + "lineNumber": 302 }, "deprecated": false, "children": [], @@ -6067,7 +6149,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 293 + "lineNumber": 306 }, "deprecated": false, "children": [ @@ -6083,7 +6165,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 293 + "lineNumber": 306 }, "deprecated": false, "isRequired": true @@ -6111,7 +6193,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 297 + "lineNumber": 310 }, "deprecated": false, "children": [ @@ -6127,7 +6209,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 297 + "lineNumber": 310 }, "deprecated": false, "isRequired": true @@ -6155,7 +6237,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 301 + "lineNumber": 314 }, "deprecated": false, "children": [ @@ -6171,7 +6253,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 301 + "lineNumber": 314 }, "deprecated": false, "isRequired": true @@ -6199,7 +6281,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 305 + "lineNumber": 318 }, "deprecated": false, "children": [ @@ -6215,7 +6297,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 305 + "lineNumber": 318 }, "deprecated": false, "isRequired": true @@ -6243,7 +6325,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 309 + "lineNumber": 322 }, "deprecated": false, "children": [ @@ -6259,7 +6341,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 309 + "lineNumber": 322 }, "deprecated": false, "isRequired": true @@ -6287,7 +6369,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 313 + "lineNumber": 326 }, "deprecated": false, "children": [ @@ -6303,7 +6385,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 313 + "lineNumber": 326 }, "deprecated": false, "isRequired": true @@ -6331,7 +6413,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 317 + "lineNumber": 330 }, "deprecated": false, "children": [], @@ -6349,7 +6431,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 331 + "lineNumber": 344 }, "deprecated": false, "children": [], @@ -6367,7 +6449,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 346 + "lineNumber": 359 }, "deprecated": false, "children": [], @@ -6385,7 +6467,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 353 + "lineNumber": 366 }, "deprecated": false, "children": [], @@ -6411,7 +6493,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 357 + "lineNumber": 370 }, "deprecated": false, "children": [ @@ -6427,7 +6509,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 357 + "lineNumber": 370 }, "deprecated": false, "isRequired": false @@ -6463,7 +6545,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 410 + "lineNumber": 423 }, "deprecated": false, "children": [ @@ -6486,7 +6568,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 410 + "lineNumber": 423 }, "deprecated": false, "isRequired": true @@ -6514,7 +6596,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 429 + "lineNumber": 442 }, "deprecated": false, "children": [ @@ -6530,7 +6612,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 429 + "lineNumber": 442 }, "deprecated": false, "isRequired": true @@ -6562,7 +6644,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 444 + "lineNumber": 457 }, "deprecated": false, "children": [], @@ -6592,7 +6674,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 458 + "lineNumber": 471 }, "deprecated": false, "children": [ @@ -6610,7 +6692,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 458 + "lineNumber": 471 }, "deprecated": false, "isRequired": true @@ -6646,7 +6728,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 467 + "lineNumber": 480 }, "deprecated": false, "children": [ @@ -6670,7 +6752,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 467 + "lineNumber": 480 }, "deprecated": false, "isRequired": true @@ -6694,7 +6776,7 @@ ], "source": { "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "lineNumber": 467 + "lineNumber": 480 }, "deprecated": false, "isRequired": false @@ -10424,15 +10506,15 @@ { "plugin": "discover", "link": { - "path": "src/plugins/discover/public/application/embeddable/search_embeddable.ts", - "lineNumber": 207 + "path": "src/plugins/discover/public/application/embeddable/saved_search_embeddable.tsx", + "lineNumber": 288 } }, { "plugin": "discover", "link": { - "path": "src/plugins/discover/public/application/embeddable/search_embeddable.ts", - "lineNumber": 213 + "path": "src/plugins/discover/public/application/embeddable/saved_search_embeddable.tsx", + "lineNumber": 294 } } ], @@ -10735,6 +10817,13 @@ "lineNumber": 77 } }, + { + "plugin": "discover", + "link": { + "path": "src/plugins/discover/public/application/angular/context/api/anchor.ts", + "lineNumber": 52 + } + }, { "plugin": "maps", "link": { @@ -10746,14 +10835,14 @@ "plugin": "maps", "link": { "path": "x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx", - "lineNumber": 498 + "lineNumber": 530 } }, { "plugin": "maps", "link": { - "path": "x-pack/plugins/maps/public/classes/layers/blended_vector_layer/blended_vector_layer.ts", - "lineNumber": 330 + "path": "x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx", + "lineNumber": 819 } } ], @@ -12288,7 +12377,7 @@ ], "source": { "path": "src/plugins/data/common/search/search_source/extract_references.ts", - "lineNumber": 13 + "lineNumber": 15 }, "deprecated": false, "children": [ @@ -12310,7 +12399,7 @@ ], "source": { "path": "src/plugins/data/common/search/search_source/extract_references.ts", - "lineNumber": 14 + "lineNumber": 16 }, "deprecated": false, "isRequired": true @@ -22092,7 +22181,7 @@ "description": [], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 83 + "lineNumber": 88 }, "deprecated": false, "children": [ @@ -22115,7 +22204,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 84 + "lineNumber": 89 }, "deprecated": false }, @@ -22128,7 +22217,7 @@ "description": [], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 85 + "lineNumber": 90 }, "deprecated": false }, @@ -22144,7 +22233,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 86 + "lineNumber": 91 }, "deprecated": false }, @@ -22160,7 +22249,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 87 + "lineNumber": 92 }, "deprecated": false } @@ -22186,7 +22275,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 74 + "lineNumber": 79 }, "deprecated": false, "children": [ @@ -22204,7 +22293,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 78 + "lineNumber": 83 }, "deprecated": false }, @@ -22220,7 +22309,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 80 + "lineNumber": 85 }, "deprecated": false } @@ -22340,6 +22429,24 @@ }, "deprecated": false }, + { + "parentPluginId": "data", + "id": "def-common.IKibanaSearchResponse.isRestored", + "type": "CompoundType", + "tags": [], + "label": "isRestored", + "description": [ + "\nIndicates whether the results returned are from the async-search index" + ], + "signature": [ + "boolean | undefined" + ], + "source": { + "path": "src/plugins/data/common/search/types.ts", + "lineNumber": 71 + }, + "deprecated": false + }, { "parentPluginId": "data", "id": "def-common.IKibanaSearchResponse.rawResponse", @@ -22354,7 +22461,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 71 + "lineNumber": 76 }, "deprecated": false } @@ -22693,7 +22800,7 @@ "description": [], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 90 + "lineNumber": 95 }, "deprecated": false, "children": [ @@ -22711,7 +22818,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 94 + "lineNumber": 99 }, "deprecated": false }, @@ -22729,7 +22836,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 99 + "lineNumber": 104 }, "deprecated": false }, @@ -22747,7 +22854,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 105 + "lineNumber": 110 }, "deprecated": false }, @@ -22765,7 +22872,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 110 + "lineNumber": 115 }, "deprecated": false }, @@ -22783,7 +22890,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 115 + "lineNumber": 120 }, "deprecated": false }, @@ -22801,7 +22908,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 121 + "lineNumber": 126 }, "deprecated": false }, @@ -22826,7 +22933,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 126 + "lineNumber": 131 }, "deprecated": false }, @@ -22851,7 +22958,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 131 + "lineNumber": 136 }, "deprecated": false } @@ -26688,7 +26795,7 @@ ], "source": { "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", - "lineNumber": 18 + "lineNumber": 19 }, "deprecated": false, "initialIsOpen": false @@ -27546,7 +27653,7 @@ ], "source": { "path": "src/plugins/data/common/search/types.ts", - "lineNumber": 138 + "lineNumber": 143 }, "deprecated": false, "initialIsOpen": false @@ -29139,7 +29246,7 @@ "description": [], "source": { "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", - "lineNumber": 25 + "lineNumber": 26 }, "deprecated": false, "children": [ @@ -29155,7 +29262,7 @@ ], "source": { "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", - "lineNumber": 26 + "lineNumber": 27 }, "deprecated": false }, @@ -29171,7 +29278,7 @@ ], "source": { "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", - "lineNumber": 27 + "lineNumber": 28 }, "deprecated": false }, @@ -29187,7 +29294,7 @@ ], "source": { "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", - "lineNumber": 28 + "lineNumber": 29 }, "deprecated": false }, @@ -29200,7 +29307,7 @@ "description": [], "source": { "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", - "lineNumber": 29 + "lineNumber": 30 }, "deprecated": false }, @@ -29213,7 +29320,7 @@ "description": [], "source": { "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", - "lineNumber": 32 + "lineNumber": 33 }, "deprecated": false, "children": [ @@ -29226,7 +29333,7 @@ "description": [], "source": { "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", - "lineNumber": 33 + "lineNumber": 34 }, "deprecated": false, "children": [ @@ -29242,7 +29349,7 @@ ], "source": { "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", - "lineNumber": 34 + "lineNumber": 35 }, "deprecated": false }, @@ -29258,7 +29365,7 @@ ], "source": { "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", - "lineNumber": 35 + "lineNumber": 36 }, "deprecated": false }, @@ -29274,7 +29381,7 @@ ], "source": { "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", - "lineNumber": 36 + "lineNumber": 37 }, "deprecated": false }, @@ -29287,7 +29394,7 @@ "description": [], "source": { "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", - "lineNumber": 37 + "lineNumber": 38 }, "deprecated": false } @@ -29302,7 +29409,7 @@ "description": [], "source": { "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", - "lineNumber": 41 + "lineNumber": 42 }, "deprecated": false, "children": [ @@ -29318,7 +29425,7 @@ ], "source": { "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", - "lineNumber": 42 + "lineNumber": 43 }, "deprecated": false }, @@ -29334,7 +29441,7 @@ ], "source": { "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", - "lineNumber": 43 + "lineNumber": 44 }, "deprecated": false }, @@ -29347,7 +29454,67 @@ "description": [], "source": { "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", - "lineNumber": 44 + "lineNumber": 45 + }, + "deprecated": false + } + ] + }, + { + "parentPluginId": "data", + "id": "def-common.kibanaFilterFunction.args.disabled", + "type": "Object", + "tags": [], + "label": "disabled", + "description": [], + "source": { + "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", + "lineNumber": 49 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "data", + "id": "def-common.kibanaFilterFunction.args.disabled.types", + "type": "Array", + "tags": [], + "label": "types", + "description": [], + "signature": [ + "\"boolean\"[]" + ], + "source": { + "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", + "lineNumber": 50 + }, + "deprecated": false + }, + { + "parentPluginId": "data", + "id": "def-common.kibanaFilterFunction.args.disabled.default", + "type": "boolean", + "tags": [], + "label": "default", + "description": [], + "signature": [ + "false" + ], + "source": { + "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", + "lineNumber": 51 + }, + "deprecated": false + }, + { + "parentPluginId": "data", + "id": "def-common.kibanaFilterFunction.args.disabled.help", + "type": "string", + "tags": [], + "label": "help", + "description": [], + "source": { + "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", + "lineNumber": 52 }, "deprecated": false } @@ -29367,7 +29534,7 @@ ], "source": { "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", - "lineNumber": 50 + "lineNumber": 58 }, "deprecated": false, "children": [ @@ -29383,7 +29550,7 @@ ], "source": { "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", - "lineNumber": 50 + "lineNumber": 58 }, "deprecated": false, "isRequired": true @@ -29400,7 +29567,7 @@ ], "source": { "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", - "lineNumber": 50 + "lineNumber": 58 }, "deprecated": false, "isRequired": true diff --git a/api_docs/data_search.mdx b/api_docs/data_search.mdx index d07be7dfc62aa..4627768f160ae 100644 --- a/api_docs/data_search.mdx +++ b/api_docs/data_search.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'data.search'] warning: 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. --- - import dataSearchObj from './data_search.json'; 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. @@ -19,7 +18,7 @@ Contact [App Services](https://github.com/orgs/elastic/teams/kibana-app-services | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 3809 | 107 | 3257 | 75 | +| 3833 | 107 | 3268 | 75 | ## Client @@ -43,6 +42,9 @@ Contact [App Services](https://github.com/orgs/elastic/teams/kibana-app-services ### Functions +### Classes + + ### Interfaces diff --git a/api_docs/data_ui.json b/api_docs/data_ui.json index 4a532af99a115..31c9cd267f67f 100644 --- a/api_docs/data_ui.json +++ b/api_docs/data_ui.json @@ -510,9 +510,9 @@ "signature": [ "Pick, \"children\" | \"onClick\" | \"color\" | \"onKeyDown\" | \"title\" | \"id\" | \"defaultChecked\" | \"defaultValue\" | \"suppressContentEditableWarning\" | \"suppressHydrationWarning\" | \"accessKey\" | \"className\" | \"contentEditable\" | \"contextMenu\" | \"dir\" | \"draggable\" | \"hidden\" | \"lang\" | \"placeholder\" | \"slot\" | \"spellCheck\" | \"style\" | \"tabIndex\" | \"translate\" | \"radioGroup\" | \"role\" | \"about\" | \"datatype\" | \"inlist\" | \"prefix\" | \"property\" | \"resource\" | \"typeof\" | \"vocab\" | \"autoCapitalize\" | \"autoCorrect\" | \"autoSave\" | \"itemProp\" | \"itemScope\" | \"itemType\" | \"itemID\" | \"itemRef\" | \"results\" | \"security\" | \"unselectable\" | \"inputMode\" | \"is\" | \"aria-activedescendant\" | \"aria-atomic\" | \"aria-autocomplete\" | \"aria-busy\" | \"aria-checked\" | \"aria-colcount\" | \"aria-colindex\" | \"aria-colspan\" | \"aria-controls\" | \"aria-current\" | \"aria-describedby\" | \"aria-details\" | \"aria-disabled\" | \"aria-dropeffect\" | \"aria-errormessage\" | \"aria-expanded\" | \"aria-flowto\" | \"aria-grabbed\" | \"aria-haspopup\" | \"aria-hidden\" | \"aria-invalid\" | \"aria-keyshortcuts\" | \"aria-label\" | \"aria-labelledby\" | \"aria-level\" | \"aria-live\" | \"aria-modal\" | \"aria-multiline\" | \"aria-multiselectable\" | \"aria-orientation\" | \"aria-owns\" | \"aria-placeholder\" | \"aria-posinset\" | \"aria-pressed\" | \"aria-readonly\" | \"aria-relevant\" | \"aria-required\" | \"aria-roledescription\" | \"aria-rowcount\" | \"aria-rowindex\" | \"aria-rowspan\" | \"aria-selected\" | \"aria-setsize\" | \"aria-sort\" | \"aria-valuemax\" | \"aria-valuemin\" | \"aria-valuenow\" | \"aria-valuetext\" | \"dangerouslySetInnerHTML\" | \"onCopy\" | \"onCopyCapture\" | \"onCut\" | \"onCutCapture\" | \"onPaste\" | \"onPasteCapture\" | \"onCompositionEnd\" | \"onCompositionEndCapture\" | \"onCompositionStart\" | \"onCompositionStartCapture\" | \"onCompositionUpdate\" | \"onCompositionUpdateCapture\" | \"onFocus\" | \"onFocusCapture\" | \"onBlur\" | \"onBlurCapture\" | \"onChangeCapture\" | \"onBeforeInput\" | \"onBeforeInputCapture\" | \"onInput\" | \"onInputCapture\" | \"onReset\" | \"onResetCapture\" | \"onSubmit\" | \"onSubmitCapture\" | \"onInvalid\" | \"onInvalidCapture\" | \"onLoad\" | \"onLoadCapture\" | \"onError\" | \"onErrorCapture\" | \"onKeyDownCapture\" | \"onKeyPress\" | \"onKeyPressCapture\" | \"onKeyUp\" | \"onKeyUpCapture\" | \"onAbort\" | \"onAbortCapture\" | \"onCanPlay\" | \"onCanPlayCapture\" | \"onCanPlayThrough\" | \"onCanPlayThroughCapture\" | \"onDurationChange\" | \"onDurationChangeCapture\" | \"onEmptied\" | \"onEmptiedCapture\" | \"onEncrypted\" | \"onEncryptedCapture\" | \"onEnded\" | \"onEndedCapture\" | \"onLoadedData\" | \"onLoadedDataCapture\" | \"onLoadedMetadata\" | \"onLoadedMetadataCapture\" | \"onLoadStart\" | \"onLoadStartCapture\" | \"onPause\" | \"onPauseCapture\" | \"onPlay\" | \"onPlayCapture\" | \"onPlaying\" | \"onPlayingCapture\" | \"onProgress\" | \"onProgressCapture\" | \"onRateChange\" | \"onRateChangeCapture\" | \"onSeeked\" | \"onSeekedCapture\" | \"onSeeking\" | \"onSeekingCapture\" | \"onStalled\" | \"onStalledCapture\" | \"onSuspend\" | \"onSuspendCapture\" | \"onTimeUpdate\" | \"onTimeUpdateCapture\" | \"onVolumeChange\" | \"onVolumeChangeCapture\" | \"onWaiting\" | \"onWaitingCapture\" | \"onAuxClick\" | \"onAuxClickCapture\" | \"onClickCapture\" | \"onContextMenu\" | \"onContextMenuCapture\" | \"onDoubleClick\" | \"onDoubleClickCapture\" | \"onDrag\" | \"onDragCapture\" | \"onDragEnd\" | \"onDragEndCapture\" | \"onDragEnter\" | \"onDragEnterCapture\" | \"onDragExit\" | \"onDragExitCapture\" | \"onDragLeave\" | \"onDragLeaveCapture\" | \"onDragOver\" | \"onDragOverCapture\" | \"onDragStart\" | \"onDragStartCapture\" | \"onDrop\" | \"onDropCapture\" | \"onMouseDown\" | \"onMouseDownCapture\" | \"onMouseEnter\" | \"onMouseLeave\" | \"onMouseMove\" | \"onMouseMoveCapture\" | \"onMouseOut\" | \"onMouseOutCapture\" | \"onMouseOver\" | \"onMouseOverCapture\" | \"onMouseUp\" | \"onMouseUpCapture\" | \"onSelect\" | \"onSelectCapture\" | \"onTouchCancel\" | \"onTouchCancelCapture\" | \"onTouchEnd\" | \"onTouchEndCapture\" | \"onTouchMove\" | \"onTouchMoveCapture\" | \"onTouchStart\" | \"onTouchStartCapture\" | \"onPointerDown\" | \"onPointerDownCapture\" | \"onPointerMove\" | \"onPointerMoveCapture\" | \"onPointerUp\" | \"onPointerUpCapture\" | \"onPointerCancel\" | \"onPointerCancelCapture\" | \"onPointerEnter\" | \"onPointerEnterCapture\" | \"onPointerLeave\" | \"onPointerLeaveCapture\" | \"onPointerOver\" | \"onPointerOverCapture\" | \"onPointerOut\" | \"onPointerOutCapture\" | \"onGotPointerCapture\" | \"onGotPointerCaptureCapture\" | \"onLostPointerCapture\" | \"onLostPointerCaptureCapture\" | \"onScroll\" | \"onScrollCapture\" | \"onWheel\" | \"onWheelCapture\" | \"onAnimationStart\" | \"onAnimationStartCapture\" | \"onAnimationEnd\" | \"onAnimationEndCapture\" | \"onAnimationIteration\" | \"onAnimationIterationCapture\" | \"onTransitionEnd\" | \"onTransitionEndCapture\" | \"css\" | \"data-test-subj\" | \"isClearable\" | \"async\" | \"compressed\" | \"fullWidth\" | \"singleSelection\" | \"prepend\" | \"append\" | \"sortMatchesBy\" | \"autoFocus\" | \"customOptionText\" | \"onCreateOption\" | \"renderOption\" | \"inputRef\" | \"isDisabled\" | \"isInvalid\" | \"noSuggestions\" | \"rowHeight\" | \"delimiter\">, \"children\" | \"onClick\" | \"color\" | \"onKeyDown\" | \"title\" | \"id\" | \"defaultChecked\" | \"defaultValue\" | \"suppressContentEditableWarning\" | \"suppressHydrationWarning\" | \"accessKey\" | \"className\" | \"contentEditable\" | \"contextMenu\" | \"dir\" | \"draggable\" | \"hidden\" | \"lang\" | \"slot\" | \"spellCheck\" | \"style\" | \"tabIndex\" | \"translate\" | \"radioGroup\" | \"role\" | \"about\" | \"datatype\" | \"inlist\" | \"prefix\" | \"property\" | \"resource\" | \"typeof\" | \"vocab\" | \"autoCapitalize\" | \"autoCorrect\" | \"autoSave\" | \"itemProp\" | \"itemScope\" | \"itemType\" | \"itemID\" | \"itemRef\" | \"results\" | \"security\" | \"unselectable\" | \"inputMode\" | \"is\" | \"aria-activedescendant\" | \"aria-atomic\" | \"aria-autocomplete\" | \"aria-busy\" | \"aria-checked\" | \"aria-colcount\" | \"aria-colindex\" | \"aria-colspan\" | \"aria-controls\" | \"aria-current\" | \"aria-describedby\" | \"aria-details\" | \"aria-disabled\" | \"aria-dropeffect\" | \"aria-errormessage\" | \"aria-expanded\" | \"aria-flowto\" | \"aria-grabbed\" | \"aria-haspopup\" | \"aria-hidden\" | \"aria-invalid\" | \"aria-keyshortcuts\" | \"aria-label\" | \"aria-labelledby\" | \"aria-level\" | \"aria-live\" | \"aria-modal\" | \"aria-multiline\" | \"aria-multiselectable\" | \"aria-orientation\" | \"aria-owns\" | \"aria-placeholder\" | \"aria-posinset\" | \"aria-pressed\" | \"aria-readonly\" | \"aria-relevant\" | \"aria-required\" | \"aria-roledescription\" | \"aria-rowcount\" | \"aria-rowindex\" | \"aria-rowspan\" | \"aria-selected\" | \"aria-setsize\" | \"aria-sort\" | \"aria-valuemax\" | \"aria-valuemin\" | \"aria-valuenow\" | \"aria-valuetext\" | \"dangerouslySetInnerHTML\" | \"onCopy\" | \"onCopyCapture\" | \"onCut\" | \"onCutCapture\" | \"onPaste\" | \"onPasteCapture\" | \"onCompositionEnd\" | \"onCompositionEndCapture\" | \"onCompositionStart\" | \"onCompositionStartCapture\" | \"onCompositionUpdate\" | \"onCompositionUpdateCapture\" | \"onFocus\" | \"onFocusCapture\" | \"onBlur\" | \"onBlurCapture\" | \"onChangeCapture\" | \"onBeforeInput\" | \"onBeforeInputCapture\" | \"onInput\" | \"onInputCapture\" | \"onReset\" | \"onResetCapture\" | \"onSubmit\" | \"onSubmitCapture\" | \"onInvalid\" | \"onInvalidCapture\" | \"onLoad\" | \"onLoadCapture\" | \"onError\" | \"onErrorCapture\" | \"onKeyDownCapture\" | \"onKeyPress\" | \"onKeyPressCapture\" | \"onKeyUp\" | \"onKeyUpCapture\" | \"onAbort\" | \"onAbortCapture\" | \"onCanPlay\" | \"onCanPlayCapture\" | \"onCanPlayThrough\" | \"onCanPlayThroughCapture\" | \"onDurationChange\" | \"onDurationChangeCapture\" | \"onEmptied\" | \"onEmptiedCapture\" | \"onEncrypted\" | \"onEncryptedCapture\" | \"onEnded\" | \"onEndedCapture\" | \"onLoadedData\" | \"onLoadedDataCapture\" | \"onLoadedMetadata\" | \"onLoadedMetadataCapture\" | \"onLoadStart\" | \"onLoadStartCapture\" | \"onPause\" | \"onPauseCapture\" | \"onPlay\" | \"onPlayCapture\" | \"onPlaying\" | \"onPlayingCapture\" | \"onProgress\" | \"onProgressCapture\" | \"onRateChange\" | \"onRateChangeCapture\" | \"onSeeked\" | \"onSeekedCapture\" | \"onSeeking\" | \"onSeekingCapture\" | \"onStalled\" | \"onStalledCapture\" | \"onSuspend\" | \"onSuspendCapture\" | \"onTimeUpdate\" | \"onTimeUpdateCapture\" | \"onVolumeChange\" | \"onVolumeChangeCapture\" | \"onWaiting\" | \"onWaitingCapture\" | \"onAuxClick\" | \"onAuxClickCapture\" | \"onClickCapture\" | \"onContextMenu\" | \"onContextMenuCapture\" | \"onDoubleClick\" | \"onDoubleClickCapture\" | \"onDrag\" | \"onDragCapture\" | \"onDragEnd\" | \"onDragEndCapture\" | \"onDragEnter\" | \"onDragEnterCapture\" | \"onDragExit\" | \"onDragExitCapture\" | \"onDragLeave\" | \"onDragLeaveCapture\" | \"onDragOver\" | \"onDragOverCapture\" | \"onDragStart\" | \"onDragStartCapture\" | \"onDrop\" | \"onDropCapture\" | \"onMouseDown\" | \"onMouseDownCapture\" | \"onMouseEnter\" | \"onMouseLeave\" | \"onMouseMove\" | \"onMouseMoveCapture\" | \"onMouseOut\" | \"onMouseOutCapture\" | \"onMouseOver\" | \"onMouseOverCapture\" | \"onMouseUp\" | \"onMouseUpCapture\" | \"onSelect\" | \"onSelectCapture\" | \"onTouchCancel\" | \"onTouchCancelCapture\" | \"onTouchEnd\" | \"onTouchEndCapture\" | \"onTouchMove\" | \"onTouchMoveCapture\" | \"onTouchStart\" | \"onTouchStartCapture\" | \"onPointerDown\" | \"onPointerDownCapture\" | \"onPointerMove\" | \"onPointerMoveCapture\" | \"onPointerUp\" | \"onPointerUpCapture\" | \"onPointerCancel\" | \"onPointerCancelCapture\" | \"onPointerEnter\" | \"onPointerEnterCapture\" | \"onPointerLeave\" | \"onPointerLeaveCapture\" | \"onPointerOver\" | \"onPointerOverCapture\" | \"onPointerOut\" | \"onPointerOutCapture\" | \"onGotPointerCapture\" | \"onGotPointerCaptureCapture\" | \"onLostPointerCapture\" | \"onLostPointerCaptureCapture\" | \"onScroll\" | \"onScrollCapture\" | \"onWheel\" | \"onWheelCapture\" | \"onAnimationStart\" | \"onAnimationStartCapture\" | \"onAnimationEnd\" | \"onAnimationEndCapture\" | \"onAnimationIteration\" | \"onAnimationIterationCapture\" | \"onTransitionEnd\" | \"onTransitionEndCapture\" | \"css\" | \"data-test-subj\" | \"isClearable\" | \"async\" | \"compressed\" | \"fullWidth\" | \"singleSelection\" | \"prepend\" | \"append\" | \"sortMatchesBy\" | \"autoFocus\" | \"customOptionText\" | \"onCreateOption\" | \"renderOption\" | \"inputRef\" | \"isDisabled\" | \"isInvalid\" | \"noSuggestions\" | \"rowHeight\" | \"delimiter\"> & Required, \"children\" | \"onClick\" | \"color\" | \"onKeyDown\" | \"title\" | \"id\" | \"defaultChecked\" | \"defaultValue\" | \"suppressContentEditableWarning\" | \"suppressHydrationWarning\" | \"accessKey\" | \"className\" | \"contentEditable\" | \"contextMenu\" | \"dir\" | \"draggable\" | \"hidden\" | \"lang\" | \"placeholder\" | \"slot\" | \"spellCheck\" | \"style\" | \"tabIndex\" | \"translate\" | \"radioGroup\" | \"role\" | \"about\" | \"datatype\" | \"inlist\" | \"prefix\" | \"property\" | \"resource\" | \"typeof\" | \"vocab\" | \"autoCapitalize\" | \"autoCorrect\" | \"autoSave\" | \"itemProp\" | \"itemScope\" | \"itemType\" | \"itemID\" | \"itemRef\" | \"results\" | \"security\" | \"unselectable\" | \"inputMode\" | \"is\" | \"aria-activedescendant\" | \"aria-atomic\" | \"aria-autocomplete\" | \"aria-busy\" | \"aria-checked\" | \"aria-colcount\" | \"aria-colindex\" | \"aria-colspan\" | \"aria-controls\" | \"aria-current\" | \"aria-describedby\" | \"aria-details\" | \"aria-disabled\" | \"aria-dropeffect\" | \"aria-errormessage\" | \"aria-expanded\" | \"aria-flowto\" | \"aria-grabbed\" | \"aria-haspopup\" | \"aria-hidden\" | \"aria-invalid\" | \"aria-keyshortcuts\" | \"aria-label\" | \"aria-labelledby\" | \"aria-level\" | \"aria-live\" | \"aria-modal\" | \"aria-multiline\" | \"aria-multiselectable\" | \"aria-orientation\" | \"aria-owns\" | \"aria-placeholder\" | \"aria-posinset\" | \"aria-pressed\" | \"aria-readonly\" | \"aria-relevant\" | \"aria-required\" | \"aria-roledescription\" | \"aria-rowcount\" | \"aria-rowindex\" | \"aria-rowspan\" | \"aria-selected\" | \"aria-setsize\" | \"aria-sort\" | \"aria-valuemax\" | \"aria-valuemin\" | \"aria-valuenow\" | \"aria-valuetext\" | \"dangerouslySetInnerHTML\" | \"onCopy\" | \"onCopyCapture\" | \"onCut\" | \"onCutCapture\" | \"onPaste\" | \"onPasteCapture\" | \"onCompositionEnd\" | \"onCompositionEndCapture\" | \"onCompositionStart\" | \"onCompositionStartCapture\" | \"onCompositionUpdate\" | \"onCompositionUpdateCapture\" | \"onFocus\" | \"onFocusCapture\" | \"onBlur\" | \"onBlurCapture\" | \"onChangeCapture\" | \"onBeforeInput\" | \"onBeforeInputCapture\" | \"onInput\" | \"onInputCapture\" | \"onReset\" | \"onResetCapture\" | \"onSubmit\" | \"onSubmitCapture\" | \"onInvalid\" | \"onInvalidCapture\" | \"onLoad\" | \"onLoadCapture\" | \"onError\" | \"onErrorCapture\" | \"onKeyDownCapture\" | \"onKeyPress\" | \"onKeyPressCapture\" | \"onKeyUp\" | \"onKeyUpCapture\" | \"onAbort\" | \"onAbortCapture\" | \"onCanPlay\" | \"onCanPlayCapture\" | \"onCanPlayThrough\" | \"onCanPlayThroughCapture\" | \"onDurationChange\" | \"onDurationChangeCapture\" | \"onEmptied\" | \"onEmptiedCapture\" | \"onEncrypted\" | \"onEncryptedCapture\" | \"onEnded\" | \"onEndedCapture\" | \"onLoadedData\" | \"onLoadedDataCapture\" | \"onLoadedMetadata\" | \"onLoadedMetadataCapture\" | \"onLoadStart\" | \"onLoadStartCapture\" | \"onPause\" | \"onPauseCapture\" | \"onPlay\" | \"onPlayCapture\" | \"onPlaying\" | \"onPlayingCapture\" | \"onProgress\" | \"onProgressCapture\" | \"onRateChange\" | \"onRateChangeCapture\" | \"onSeeked\" | \"onSeekedCapture\" | \"onSeeking\" | \"onSeekingCapture\" | \"onStalled\" | \"onStalledCapture\" | \"onSuspend\" | \"onSuspendCapture\" | \"onTimeUpdate\" | \"onTimeUpdateCapture\" | \"onVolumeChange\" | \"onVolumeChangeCapture\" | \"onWaiting\" | \"onWaitingCapture\" | \"onAuxClick\" | \"onAuxClickCapture\" | \"onClickCapture\" | \"onContextMenu\" | \"onContextMenuCapture\" | \"onDoubleClick\" | \"onDoubleClickCapture\" | \"onDrag\" | \"onDragCapture\" | \"onDragEnd\" | \"onDragEndCapture\" | \"onDragEnter\" | \"onDragEnterCapture\" | \"onDragExit\" | \"onDragExitCapture\" | \"onDragLeave\" | \"onDragLeaveCapture\" | \"onDragOver\" | \"onDragOverCapture\" | \"onDragStart\" | \"onDragStartCapture\" | \"onDrop\" | \"onDropCapture\" | \"onMouseDown\" | \"onMouseDownCapture\" | \"onMouseEnter\" | \"onMouseLeave\" | \"onMouseMove\" | \"onMouseMoveCapture\" | \"onMouseOut\" | \"onMouseOutCapture\" | \"onMouseOver\" | \"onMouseOverCapture\" | \"onMouseUp\" | \"onMouseUpCapture\" | \"onSelect\" | \"onSelectCapture\" | \"onTouchCancel\" | \"onTouchCancelCapture\" | \"onTouchEnd\" | \"onTouchEndCapture\" | \"onTouchMove\" | \"onTouchMoveCapture\" | \"onTouchStart\" | \"onTouchStartCapture\" | \"onPointerDown\" | \"onPointerDownCapture\" | \"onPointerMove\" | \"onPointerMoveCapture\" | \"onPointerUp\" | \"onPointerUpCapture\" | \"onPointerCancel\" | \"onPointerCancelCapture\" | \"onPointerEnter\" | \"onPointerEnterCapture\" | \"onPointerLeave\" | \"onPointerLeaveCapture\" | \"onPointerOver\" | \"onPointerOverCapture\" | \"onPointerOut\" | \"onPointerOutCapture\" | \"onGotPointerCapture\" | \"onGotPointerCaptureCapture\" | \"onLostPointerCapture\" | \"onLostPointerCaptureCapture\" | \"onScroll\" | \"onScrollCapture\" | \"onWheel\" | \"onWheelCapture\" | \"onAnimationStart\" | \"onAnimationStartCapture\" | \"onAnimationEnd\" | \"onAnimationEndCapture\" | \"onAnimationIteration\" | \"onAnimationIterationCapture\" | \"onTransitionEnd\" | \"onTransitionEndCapture\" | \"css\" | \"data-test-subj\" | \"async\" | \"compressed\" | \"fullWidth\" | \"isClearable\" | \"singleSelection\" | \"prepend\" | \"append\" | \"sortMatchesBy\" | \"autoFocus\" | \"customOptionText\" | \"onCreateOption\" | \"renderOption\" | \"inputRef\" | \"isDisabled\" | \"isInvalid\" | \"noSuggestions\" | \"rowHeight\" | \"delimiter\">, \"children\" | \"onClick\" | \"color\" | \"onKeyDown\" | \"title\" | \"id\" | \"defaultChecked\" | \"defaultValue\" | \"suppressContentEditableWarning\" | \"suppressHydrationWarning\" | \"accessKey\" | \"className\" | \"contentEditable\" | \"contextMenu\" | \"dir\" | \"draggable\" | \"hidden\" | \"lang\" | \"slot\" | \"spellCheck\" | \"style\" | \"tabIndex\" | \"translate\" | \"radioGroup\" | \"role\" | \"about\" | \"datatype\" | \"inlist\" | \"prefix\" | \"property\" | \"resource\" | \"typeof\" | \"vocab\" | \"autoCapitalize\" | \"autoCorrect\" | \"autoSave\" | \"itemProp\" | \"itemScope\" | \"itemType\" | \"itemID\" | \"itemRef\" | \"results\" | \"security\" | \"unselectable\" | \"inputMode\" | \"is\" | \"aria-activedescendant\" | \"aria-atomic\" | \"aria-autocomplete\" | \"aria-busy\" | \"aria-checked\" | \"aria-colcount\" | \"aria-colindex\" | \"aria-colspan\" | \"aria-controls\" | \"aria-current\" | \"aria-describedby\" | \"aria-details\" | \"aria-disabled\" | \"aria-dropeffect\" | \"aria-errormessage\" | \"aria-expanded\" | \"aria-flowto\" | \"aria-grabbed\" | \"aria-haspopup\" | \"aria-hidden\" | \"aria-invalid\" | \"aria-keyshortcuts\" | \"aria-label\" | \"aria-labelledby\" | \"aria-level\" | \"aria-live\" | \"aria-modal\" | \"aria-multiline\" | \"aria-multiselectable\" | \"aria-orientation\" | \"aria-owns\" | \"aria-placeholder\" | \"aria-posinset\" | \"aria-pressed\" | \"aria-readonly\" | \"aria-relevant\" | \"aria-required\" | \"aria-roledescription\" | \"aria-rowcount\" | \"aria-rowindex\" | \"aria-rowspan\" | \"aria-selected\" | \"aria-setsize\" | \"aria-sort\" | \"aria-valuemax\" | \"aria-valuemin\" | \"aria-valuenow\" | \"aria-valuetext\" | \"dangerouslySetInnerHTML\" | \"onCopy\" | \"onCopyCapture\" | \"onCut\" | \"onCutCapture\" | \"onPaste\" | \"onPasteCapture\" | \"onCompositionEnd\" | \"onCompositionEndCapture\" | \"onCompositionStart\" | \"onCompositionStartCapture\" | \"onCompositionUpdate\" | \"onCompositionUpdateCapture\" | \"onFocus\" | \"onFocusCapture\" | \"onBlur\" | \"onBlurCapture\" | \"onChangeCapture\" | \"onBeforeInput\" | \"onBeforeInputCapture\" | \"onInput\" | \"onInputCapture\" | \"onReset\" | \"onResetCapture\" | \"onSubmit\" | \"onSubmitCapture\" | \"onInvalid\" | \"onInvalidCapture\" | \"onLoad\" | \"onLoadCapture\" | \"onError\" | \"onErrorCapture\" | \"onKeyDownCapture\" | \"onKeyPress\" | \"onKeyPressCapture\" | \"onKeyUp\" | \"onKeyUpCapture\" | \"onAbort\" | \"onAbortCapture\" | \"onCanPlay\" | \"onCanPlayCapture\" | \"onCanPlayThrough\" | \"onCanPlayThroughCapture\" | \"onDurationChange\" | \"onDurationChangeCapture\" | \"onEmptied\" | \"onEmptiedCapture\" | \"onEncrypted\" | \"onEncryptedCapture\" | \"onEnded\" | \"onEndedCapture\" | \"onLoadedData\" | \"onLoadedDataCapture\" | \"onLoadedMetadata\" | \"onLoadedMetadataCapture\" | \"onLoadStart\" | \"onLoadStartCapture\" | \"onPause\" | \"onPauseCapture\" | \"onPlay\" | \"onPlayCapture\" | \"onPlaying\" | \"onPlayingCapture\" | \"onProgress\" | \"onProgressCapture\" | \"onRateChange\" | \"onRateChangeCapture\" | \"onSeeked\" | \"onSeekedCapture\" | \"onSeeking\" | \"onSeekingCapture\" | \"onStalled\" | \"onStalledCapture\" | \"onSuspend\" | \"onSuspendCapture\" | \"onTimeUpdate\" | \"onTimeUpdateCapture\" | \"onVolumeChange\" | \"onVolumeChangeCapture\" | \"onWaiting\" | \"onWaitingCapture\" | \"onAuxClick\" | \"onAuxClickCapture\" | \"onClickCapture\" | \"onContextMenu\" | \"onContextMenuCapture\" | \"onDoubleClick\" | \"onDoubleClickCapture\" | \"onDrag\" | \"onDragCapture\" | \"onDragEnd\" | \"onDragEndCapture\" | \"onDragEnter\" | \"onDragEnterCapture\" | \"onDragExit\" | \"onDragExitCapture\" | \"onDragLeave\" | \"onDragLeaveCapture\" | \"onDragOver\" | \"onDragOverCapture\" | \"onDragStart\" | \"onDragStartCapture\" | \"onDrop\" | \"onDropCapture\" | \"onMouseDown\" | \"onMouseDownCapture\" | \"onMouseEnter\" | \"onMouseLeave\" | \"onMouseMove\" | \"onMouseMoveCapture\" | \"onMouseOut\" | \"onMouseOutCapture\" | \"onMouseOver\" | \"onMouseOverCapture\" | \"onMouseUp\" | \"onMouseUpCapture\" | \"onSelect\" | \"onSelectCapture\" | \"onTouchCancel\" | \"onTouchCancelCapture\" | \"onTouchEnd\" | \"onTouchEndCapture\" | \"onTouchMove\" | \"onTouchMoveCapture\" | \"onTouchStart\" | \"onTouchStartCapture\" | \"onPointerDown\" | \"onPointerDownCapture\" | \"onPointerMove\" | \"onPointerMoveCapture\" | \"onPointerUp\" | \"onPointerUpCapture\" | \"onPointerCancel\" | \"onPointerCancelCapture\" | \"onPointerEnter\" | \"onPointerEnterCapture\" | \"onPointerLeave\" | \"onPointerLeaveCapture\" | \"onPointerOver\" | \"onPointerOverCapture\" | \"onPointerOut\" | \"onPointerOutCapture\" | \"onGotPointerCapture\" | \"onGotPointerCaptureCapture\" | \"onLostPointerCapture\" | \"onLostPointerCaptureCapture\" | \"onScroll\" | \"onScrollCapture\" | \"onWheel\" | \"onWheelCapture\" | \"onAnimationStart\" | \"onAnimationStartCapture\" | \"onAnimationEnd\" | \"onAnimationEndCapture\" | \"onAnimationIteration\" | \"onAnimationIterationCapture\" | \"onTransitionEnd\" | \"onTransitionEndCapture\" | \"css\" | \"data-test-subj\" | \"async\" | \"compressed\" | \"fullWidth\" | \"isClearable\" | \"singleSelection\" | \"prepend\" | \"append\" | \"sortMatchesBy\" | \"autoFocus\" | \"customOptionText\" | \"onCreateOption\" | \"renderOption\" | \"inputRef\" | \"isDisabled\" | \"isInvalid\" | \"noSuggestions\" | \"rowHeight\" | \"delimiter\"> & Required, \"children\" | \"onClick\" | \"color\" | \"onKeyDown\" | \"title\" | \"id\" | \"defaultChecked\" | \"defaultValue\" | \"suppressContentEditableWarning\" | \"suppressHydrationWarning\" | \"accessKey\" | \"className\" | \"contentEditable\" | \"contextMenu\" | \"dir\" | \"draggable\" | \"hidden\" | \"lang\" | \"placeholder\" | \"slot\" | \"spellCheck\" | \"style\" | \"tabIndex\" | \"translate\" | \"radioGroup\" | \"role\" | \"about\" | \"datatype\" | \"inlist\" | \"prefix\" | \"property\" | \"resource\" | \"typeof\" | \"vocab\" | \"autoCapitalize\" | \"autoCorrect\" | \"autoSave\" | \"itemProp\" | \"itemScope\" | \"itemType\" | \"itemID\" | \"itemRef\" | \"results\" | \"security\" | \"unselectable\" | \"inputMode\" | \"is\" | \"aria-activedescendant\" | \"aria-atomic\" | \"aria-autocomplete\" | \"aria-busy\" | \"aria-checked\" | \"aria-colcount\" | \"aria-colindex\" | \"aria-colspan\" | \"aria-controls\" | \"aria-current\" | \"aria-describedby\" | \"aria-details\" | \"aria-disabled\" | \"aria-dropeffect\" | \"aria-errormessage\" | \"aria-expanded\" | \"aria-flowto\" | \"aria-grabbed\" | \"aria-haspopup\" | \"aria-hidden\" | \"aria-invalid\" | \"aria-keyshortcuts\" | \"aria-label\" | \"aria-labelledby\" | \"aria-level\" | \"aria-live\" | \"aria-modal\" | \"aria-multiline\" | \"aria-multiselectable\" | \"aria-orientation\" | \"aria-owns\" | \"aria-placeholder\" | \"aria-posinset\" | \"aria-pressed\" | \"aria-readonly\" | \"aria-relevant\" | \"aria-required\" | \"aria-roledescription\" | \"aria-rowcount\" | \"aria-rowindex\" | \"aria-rowspan\" | \"aria-selected\" | \"aria-setsize\" | \"aria-sort\" | \"aria-valuemax\" | \"aria-valuemin\" | \"aria-valuenow\" | \"aria-valuetext\" | \"dangerouslySetInnerHTML\" | \"onCopy\" | \"onCopyCapture\" | \"onCut\" | \"onCutCapture\" | \"onPaste\" | \"onPasteCapture\" | \"onCompositionEnd\" | \"onCompositionEndCapture\" | \"onCompositionStart\" | \"onCompositionStartCapture\" | \"onCompositionUpdate\" | \"onCompositionUpdateCapture\" | \"onFocus\" | \"onFocusCapture\" | \"onBlur\" | \"onBlurCapture\" | \"onChangeCapture\" | \"onBeforeInput\" | \"onBeforeInputCapture\" | \"onInput\" | \"onInputCapture\" | \"onReset\" | \"onResetCapture\" | \"onSubmit\" | \"onSubmitCapture\" | \"onInvalid\" | \"onInvalidCapture\" | \"onLoad\" | \"onLoadCapture\" | \"onError\" | \"onErrorCapture\" | \"onKeyDownCapture\" | \"onKeyPress\" | \"onKeyPressCapture\" | \"onKeyUp\" | \"onKeyUpCapture\" | \"onAbort\" | \"onAbortCapture\" | \"onCanPlay\" | \"onCanPlayCapture\" | \"onCanPlayThrough\" | \"onCanPlayThroughCapture\" | \"onDurationChange\" | \"onDurationChangeCapture\" | \"onEmptied\" | \"onEmptiedCapture\" | \"onEncrypted\" | \"onEncryptedCapture\" | \"onEnded\" | \"onEndedCapture\" | \"onLoadedData\" | \"onLoadedDataCapture\" | \"onLoadedMetadata\" | \"onLoadedMetadataCapture\" | \"onLoadStart\" | \"onLoadStartCapture\" | \"onPause\" | \"onPauseCapture\" | \"onPlay\" | \"onPlayCapture\" | \"onPlaying\" | \"onPlayingCapture\" | \"onProgress\" | \"onProgressCapture\" | \"onRateChange\" | \"onRateChangeCapture\" | \"onSeeked\" | \"onSeekedCapture\" | \"onSeeking\" | \"onSeekingCapture\" | \"onStalled\" | \"onStalledCapture\" | \"onSuspend\" | \"onSuspendCapture\" | \"onTimeUpdate\" | \"onTimeUpdateCapture\" | \"onVolumeChange\" | \"onVolumeChangeCapture\" | \"onWaiting\" | \"onWaitingCapture\" | \"onAuxClick\" | \"onAuxClickCapture\" | \"onClickCapture\" | \"onContextMenu\" | \"onContextMenuCapture\" | \"onDoubleClick\" | \"onDoubleClickCapture\" | \"onDrag\" | \"onDragCapture\" | \"onDragEnd\" | \"onDragEndCapture\" | \"onDragEnter\" | \"onDragEnterCapture\" | \"onDragExit\" | \"onDragExitCapture\" | \"onDragLeave\" | \"onDragLeaveCapture\" | \"onDragOver\" | \"onDragOverCapture\" | \"onDragStart\" | \"onDragStartCapture\" | \"onDrop\" | \"onDropCapture\" | \"onMouseDown\" | \"onMouseDownCapture\" | \"onMouseEnter\" | \"onMouseLeave\" | \"onMouseMove\" | \"onMouseMoveCapture\" | \"onMouseOut\" | \"onMouseOutCapture\" | \"onMouseOver\" | \"onMouseOverCapture\" | \"onMouseUp\" | \"onMouseUpCapture\" | \"onSelect\" | \"onSelectCapture\" | \"onTouchCancel\" | \"onTouchCancelCapture\" | \"onTouchEnd\" | \"onTouchEndCapture\" | \"onTouchMove\" | \"onTouchMoveCapture\" | \"onTouchStart\" | \"onTouchStartCapture\" | \"onPointerDown\" | \"onPointerDownCapture\" | \"onPointerMove\" | \"onPointerMoveCapture\" | \"onPointerUp\" | \"onPointerUpCapture\" | \"onPointerCancel\" | \"onPointerCancelCapture\" | \"onPointerEnter\" | \"onPointerEnterCapture\" | \"onPointerLeave\" | \"onPointerLeaveCapture\" | \"onPointerOver\" | \"onPointerOverCapture\" | \"onPointerOut\" | \"onPointerOutCapture\" | \"onGotPointerCapture\" | \"onGotPointerCaptureCapture\" | \"onLostPointerCapture\" | \"onLostPointerCaptureCapture\" | \"onScroll\" | \"onScrollCapture\" | \"onWheel\" | \"onWheelCapture\" | \"onAnimationStart\" | \"onAnimationStartCapture\" | \"onAnimationEnd\" | \"onAnimationEndCapture\" | \"onAnimationIteration\" | \"onAnimationIterationCapture\" | \"onTransitionEnd\" | \"onTransitionEndCapture\" | \"css\" | \"data-test-subj\" | \"isClearable\" | \"async\" | \"compressed\" | \"fullWidth\" | \"singleSelection\" | \"prepend\" | \"append\" | \"sortMatchesBy\" | \"autoFocus\" | \"customOptionText\" | \"onCreateOption\" | \"renderOption\" | \"inputRef\" | \"isDisabled\" | \"isInvalid\" | \"noSuggestions\" | \"rowHeight\" | \"delimiter\">, \"placeholder\">> & { onChange: (indexPatternId?: string | undefined) => void; indexPatternId: string; onNoIndexPatterns?: (() => void) | undefined; }" + ", \"children\" | \"onClick\" | \"color\" | \"onKeyDown\" | \"title\" | \"id\" | \"defaultChecked\" | \"defaultValue\" | \"suppressContentEditableWarning\" | \"suppressHydrationWarning\" | \"accessKey\" | \"className\" | \"contentEditable\" | \"contextMenu\" | \"dir\" | \"draggable\" | \"hidden\" | \"lang\" | \"placeholder\" | \"slot\" | \"spellCheck\" | \"style\" | \"tabIndex\" | \"translate\" | \"radioGroup\" | \"role\" | \"about\" | \"datatype\" | \"inlist\" | \"prefix\" | \"property\" | \"resource\" | \"typeof\" | \"vocab\" | \"autoCapitalize\" | \"autoCorrect\" | \"autoSave\" | \"itemProp\" | \"itemScope\" | \"itemType\" | \"itemID\" | \"itemRef\" | \"results\" | \"security\" | \"unselectable\" | \"inputMode\" | \"is\" | \"aria-activedescendant\" | \"aria-atomic\" | \"aria-autocomplete\" | \"aria-busy\" | \"aria-checked\" | \"aria-colcount\" | \"aria-colindex\" | \"aria-colspan\" | \"aria-controls\" | \"aria-current\" | \"aria-describedby\" | \"aria-details\" | \"aria-disabled\" | \"aria-dropeffect\" | \"aria-errormessage\" | \"aria-expanded\" | \"aria-flowto\" | \"aria-grabbed\" | \"aria-haspopup\" | \"aria-hidden\" | \"aria-invalid\" | \"aria-keyshortcuts\" | \"aria-label\" | \"aria-labelledby\" | \"aria-level\" | \"aria-live\" | \"aria-modal\" | \"aria-multiline\" | \"aria-multiselectable\" | \"aria-orientation\" | \"aria-owns\" | \"aria-placeholder\" | \"aria-posinset\" | \"aria-pressed\" | \"aria-readonly\" | \"aria-relevant\" | \"aria-required\" | \"aria-roledescription\" | \"aria-rowcount\" | \"aria-rowindex\" | \"aria-rowspan\" | \"aria-selected\" | \"aria-setsize\" | \"aria-sort\" | \"aria-valuemax\" | \"aria-valuemin\" | \"aria-valuenow\" | \"aria-valuetext\" | \"dangerouslySetInnerHTML\" | \"onCopy\" | \"onCopyCapture\" | \"onCut\" | \"onCutCapture\" | \"onPaste\" | \"onPasteCapture\" | \"onCompositionEnd\" | \"onCompositionEndCapture\" | \"onCompositionStart\" | \"onCompositionStartCapture\" | \"onCompositionUpdate\" | \"onCompositionUpdateCapture\" | \"onFocus\" | \"onFocusCapture\" | \"onBlur\" | \"onBlurCapture\" | \"onChangeCapture\" | \"onBeforeInput\" | \"onBeforeInputCapture\" | \"onInput\" | \"onInputCapture\" | \"onReset\" | \"onResetCapture\" | \"onSubmit\" | \"onSubmitCapture\" | \"onInvalid\" | \"onInvalidCapture\" | \"onLoad\" | \"onLoadCapture\" | \"onError\" | \"onErrorCapture\" | \"onKeyDownCapture\" | \"onKeyPress\" | \"onKeyPressCapture\" | \"onKeyUp\" | \"onKeyUpCapture\" | \"onAbort\" | \"onAbortCapture\" | \"onCanPlay\" | \"onCanPlayCapture\" | \"onCanPlayThrough\" | \"onCanPlayThroughCapture\" | \"onDurationChange\" | \"onDurationChangeCapture\" | \"onEmptied\" | \"onEmptiedCapture\" | \"onEncrypted\" | \"onEncryptedCapture\" | \"onEnded\" | \"onEndedCapture\" | \"onLoadedData\" | \"onLoadedDataCapture\" | \"onLoadedMetadata\" | \"onLoadedMetadataCapture\" | \"onLoadStart\" | \"onLoadStartCapture\" | \"onPause\" | \"onPauseCapture\" | \"onPlay\" | \"onPlayCapture\" | \"onPlaying\" | \"onPlayingCapture\" | \"onProgress\" | \"onProgressCapture\" | \"onRateChange\" | \"onRateChangeCapture\" | \"onSeeked\" | \"onSeekedCapture\" | \"onSeeking\" | \"onSeekingCapture\" | \"onStalled\" | \"onStalledCapture\" | \"onSuspend\" | \"onSuspendCapture\" | \"onTimeUpdate\" | \"onTimeUpdateCapture\" | \"onVolumeChange\" | \"onVolumeChangeCapture\" | \"onWaiting\" | \"onWaitingCapture\" | \"onAuxClick\" | \"onAuxClickCapture\" | \"onClickCapture\" | \"onContextMenu\" | \"onContextMenuCapture\" | \"onDoubleClick\" | \"onDoubleClickCapture\" | \"onDrag\" | \"onDragCapture\" | \"onDragEnd\" | \"onDragEndCapture\" | \"onDragEnter\" | \"onDragEnterCapture\" | \"onDragExit\" | \"onDragExitCapture\" | \"onDragLeave\" | \"onDragLeaveCapture\" | \"onDragOver\" | \"onDragOverCapture\" | \"onDragStart\" | \"onDragStartCapture\" | \"onDrop\" | \"onDropCapture\" | \"onMouseDown\" | \"onMouseDownCapture\" | \"onMouseEnter\" | \"onMouseLeave\" | \"onMouseMove\" | \"onMouseMoveCapture\" | \"onMouseOut\" | \"onMouseOutCapture\" | \"onMouseOver\" | \"onMouseOverCapture\" | \"onMouseUp\" | \"onMouseUpCapture\" | \"onSelect\" | \"onSelectCapture\" | \"onTouchCancel\" | \"onTouchCancelCapture\" | \"onTouchEnd\" | \"onTouchEndCapture\" | \"onTouchMove\" | \"onTouchMoveCapture\" | \"onTouchStart\" | \"onTouchStartCapture\" | \"onPointerDown\" | \"onPointerDownCapture\" | \"onPointerMove\" | \"onPointerMoveCapture\" | \"onPointerUp\" | \"onPointerUpCapture\" | \"onPointerCancel\" | \"onPointerCancelCapture\" | \"onPointerEnter\" | \"onPointerEnterCapture\" | \"onPointerLeave\" | \"onPointerLeaveCapture\" | \"onPointerOver\" | \"onPointerOverCapture\" | \"onPointerOut\" | \"onPointerOutCapture\" | \"onGotPointerCapture\" | \"onGotPointerCaptureCapture\" | \"onLostPointerCapture\" | \"onLostPointerCaptureCapture\" | \"onScroll\" | \"onScrollCapture\" | \"onWheel\" | \"onWheelCapture\" | \"onAnimationStart\" | \"onAnimationStartCapture\" | \"onAnimationEnd\" | \"onAnimationEndCapture\" | \"onAnimationIteration\" | \"onAnimationIterationCapture\" | \"onTransitionEnd\" | \"onTransitionEndCapture\" | \"css\" | \"data-test-subj\" | \"async\" | \"compressed\" | \"fullWidth\" | \"isClearable\" | \"singleSelection\" | \"prepend\" | \"append\" | \"sortMatchesBy\" | \"autoFocus\" | \"customOptionText\" | \"onCreateOption\" | \"renderOption\" | \"inputRef\" | \"isDisabled\" | \"isInvalid\" | \"noSuggestions\" | \"rowHeight\" | \"delimiter\">, \"placeholder\">> & { onChange: (indexPatternId?: string | undefined) => void; indexPatternId: string; onNoIndexPatterns?: (() => void) | undefined; }" ], "source": { "path": "src/plugins/data/public/ui/index_pattern_select/index_pattern_select.tsx", @@ -537,7 +537,7 @@ "section": "def-public.SearchBarProps", "text": "SearchBarProps" }, - ", \"filters\" | \"query\" | \"placeholder\" | \"iconType\" | \"intl\" | \"indexPatterns\" | \"isLoading\" | \"customSubmitButton\" | \"screenTitle\" | \"dataTestSubj\" | \"showQueryBar\" | \"showQueryInput\" | \"showFilterBar\" | \"showDatePicker\" | \"showAutoRefreshOnly\" | \"isRefreshPaused\" | \"refreshInterval\" | \"dateRangeFrom\" | \"dateRangeTo\" | \"showSaveQuery\" | \"savedQuery\" | \"onQueryChange\" | \"onQuerySubmit\" | \"onSaved\" | \"onSavedQueryUpdated\" | \"onClearSavedQuery\" | \"onRefresh\" | \"indicateNoData\" | \"isClearable\" | \"nonKqlMode\" | \"nonKqlModeHelpText\" | \"timeHistory\" | \"onFiltersUpdated\" | \"onRefreshChange\">, \"filters\" | \"query\" | \"placeholder\" | \"iconType\" | \"indexPatterns\" | \"isLoading\" | \"customSubmitButton\" | \"screenTitle\" | \"dataTestSubj\" | \"showQueryBar\" | \"showQueryInput\" | \"showFilterBar\" | \"showDatePicker\" | \"showAutoRefreshOnly\" | \"isRefreshPaused\" | \"refreshInterval\" | \"dateRangeFrom\" | \"dateRangeTo\" | \"showSaveQuery\" | \"savedQuery\" | \"onQueryChange\" | \"onQuerySubmit\" | \"onSaved\" | \"onSavedQueryUpdated\" | \"onClearSavedQuery\" | \"onRefresh\" | \"indicateNoData\" | \"isClearable\" | \"nonKqlMode\" | \"nonKqlModeHelpText\" | \"timeHistory\" | \"onFiltersUpdated\" | \"onRefreshChange\">, any> & { WrappedComponent: React.ComponentType, \"filters\" | \"query\" | \"placeholder\" | \"iconType\" | \"isClearable\" | \"isLoading\" | \"indexPatterns\" | \"customSubmitButton\" | \"screenTitle\" | \"dataTestSubj\" | \"showQueryBar\" | \"showQueryInput\" | \"showFilterBar\" | \"showDatePicker\" | \"showAutoRefreshOnly\" | \"isRefreshPaused\" | \"refreshInterval\" | \"dateRangeFrom\" | \"dateRangeTo\" | \"showSaveQuery\" | \"savedQuery\" | \"onQueryChange\" | \"onQuerySubmit\" | \"onSaved\" | \"onSavedQueryUpdated\" | \"onClearSavedQuery\" | \"onRefresh\" | \"indicateNoData\" | \"nonKqlMode\" | \"nonKqlModeHelpText\" | \"timeHistory\" | \"onFiltersUpdated\" | \"onRefreshChange\">, any> & { WrappedComponent: React.ComponentType & ReactIntl.InjectedIntlProps>; }" + ", \"filters\" | \"query\" | \"placeholder\" | \"iconType\" | \"isClearable\" | \"isLoading\" | \"intl\" | \"indexPatterns\" | \"customSubmitButton\" | \"screenTitle\" | \"dataTestSubj\" | \"showQueryBar\" | \"showQueryInput\" | \"showFilterBar\" | \"showDatePicker\" | \"showAutoRefreshOnly\" | \"isRefreshPaused\" | \"refreshInterval\" | \"dateRangeFrom\" | \"dateRangeTo\" | \"showSaveQuery\" | \"savedQuery\" | \"onQueryChange\" | \"onQuerySubmit\" | \"onSaved\" | \"onSavedQueryUpdated\" | \"onClearSavedQuery\" | \"onRefresh\" | \"indicateNoData\" | \"nonKqlMode\" | \"nonKqlModeHelpText\" | \"timeHistory\" | \"onFiltersUpdated\" | \"onRefreshChange\"> & ReactIntl.InjectedIntlProps>; }" ], "source": { "path": "src/plugins/data/public/ui/search_bar/index.tsx", diff --git a/api_docs/data_ui.mdx b/api_docs/data_ui.mdx index c31b561bd4c80..64ea24211e524 100644 --- a/api_docs/data_ui.mdx +++ b/api_docs/data_ui.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'data.ui'] warning: 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. --- - import dataUiObj from './data_ui.json'; 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. @@ -19,7 +18,7 @@ Contact [App Services](https://github.com/orgs/elastic/teams/kibana-app-services | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 3809 | 107 | 3257 | 75 | +| 3833 | 107 | 3268 | 75 | ## Client diff --git a/api_docs/data_visualizer.json b/api_docs/data_visualizer.json index c965a0a5923ac..938067800eb4c 100644 --- a/api_docs/data_visualizer.json +++ b/api_docs/data_visualizer.json @@ -13,7 +13,7 @@ "description": [], "source": { "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/components/index_data_visualizer_view/index_data_visualizer_view.tsx", - "lineNumber": 119 + "lineNumber": 120 }, "deprecated": false, "children": [ @@ -35,7 +35,7 @@ ], "source": { "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/components/index_data_visualizer_view/index_data_visualizer_view.tsx", - "lineNumber": 120 + "lineNumber": 121 }, "deprecated": false }, @@ -58,7 +58,7 @@ ], "source": { "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/components/index_data_visualizer_view/index_data_visualizer_view.tsx", - "lineNumber": 121 + "lineNumber": 122 }, "deprecated": false } @@ -81,7 +81,7 @@ ], "source": { "path": "x-pack/plugins/data_visualizer/public/plugin.ts", - "lineNumber": 38 + "lineNumber": 40 }, "deprecated": false, "lifecycle": "start", diff --git a/api_docs/data_visualizer.mdx b/api_docs/data_visualizer.mdx index 384fd07bd1176..768d01762d31f 100644 --- a/api_docs/data_visualizer.mdx +++ b/api_docs/data_visualizer.mdx @@ -8,12 +8,11 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataVisualizer'] warning: 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. --- - import dataVisualizerObj from './data_visualizer.json'; +The Data Visualizer tools help you understand your data, by analyzing the metrics and fields in a log file or an existing Elasticsearch index. - - +Contact [Machine Learning UI](https://github.com/orgs/elastic/teams/ml-ui) for questions regarding this plugin. **Code health stats** diff --git a/api_docs/deprecations.mdx b/api_docs/deprecations.mdx index 74dae7faf838a..c2b0b872ac35f 100644 --- a/api_docs/deprecations.mdx +++ b/api_docs/deprecations.mdx @@ -71,10 +71,6 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | | [table.ts#L25](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/canvas_plugin_src/functions/common/table.ts#L25) | - | | | [markdown.d.ts#L1](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/target/types/canvas_plugin_src/functions/browser/markdown.d.ts#L1) | - | | | [markdown.d.ts#L13](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/target/types/canvas_plugin_src/functions/browser/markdown.d.ts#L13) | - | -| | [query_es_sql.ts#L12](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/server/lib/query_es_sql.ts#L12) | 7.16 | -| | [query_es_sql.ts#L37](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/server/lib/query_es_sql.ts#L37) | 7.16 | -| | [functions.ts#L8](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/server/routes/functions/functions.ts#L8) | 7.16 | -| | [functions.ts#L40](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/server/routes/functions/functions.ts#L40) | 7.16 | @@ -100,9 +96,9 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | | [types.ts#L33](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/types.ts#L33) | - | | | [types.ts#L186](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/types.ts#L186) | - | | | [plugin.tsx#L42](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/plugin.tsx#L42) | - | -| | [plugin.tsx#L127](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/plugin.tsx#L127) | - | +| | [plugin.tsx#L130](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/plugin.tsx#L130) | - | | | [url_generator.ts#L19](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/url_generator.ts#L19) | - | -| | [url_generator.ts#L95](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/url_generator.ts#L95) | - | +| | [url_generator.ts#L101](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/url_generator.ts#L101) | - | | | [saved_objects.ts#L11](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/services/saved_objects.ts#L11) | - | | | [saved_dashboard.ts#L10](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts#L10) | - | | | [saved_dashboard.ts#L19](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts#L19) | - | @@ -111,8 +107,6 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | | [clone_panel_action.tsx#L14](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/application/actions/clone_panel_action.tsx#L14) | - | | | [clone_panel_action.tsx#L98](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/application/actions/clone_panel_action.tsx#L98) | - | | | [clone_panel_action.tsx#L126](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/application/actions/clone_panel_action.tsx#L126) | - | -| | [use_dashboard_state_manager.ts#L23](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/application/hooks/use_dashboard_state_manager.ts#L23) | - | -| | [use_dashboard_state_manager.ts#L35](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/application/hooks/use_dashboard_state_manager.ts#L35) | - | @@ -126,23 +120,25 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | | [types.ts#L16](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/embeddable/types.ts#L16) | - | | | [types.ts#L30](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/embeddable/types.ts#L30) | - | | | [kibana_services.ts#L104](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/kibana_services.ts#L104) | - | -| | [search_embeddable.ts#L23](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/embeddable/search_embeddable.ts#L23) | - | -| | [search_embeddable.ts#L59](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/embeddable/search_embeddable.ts#L59) | - | +| | [saved_search_embeddable.tsx#L25](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/embeddable/saved_search_embeddable.tsx#L25) | - | +| | [saved_search_embeddable.tsx#L53](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/embeddable/saved_search_embeddable.tsx#L53) | - | | | [kibana_services.ts#L104](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/kibana_services.ts#L104) | - | +| | [saved_search_embeddable.tsx#L25](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/embeddable/saved_search_embeddable.tsx#L25) | - | +| | [saved_search_embeddable.tsx#L53](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/embeddable/saved_search_embeddable.tsx#L53) | - | | | [kibana_services.ts#L101](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/kibana_services.ts#L101) | - | | | [create_doc_table_react.tsx#L15](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/angular/doc_table/create_doc_table_react.tsx#L15) | - | | | [create_doc_table_react.tsx#L25](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/angular/doc_table/create_doc_table_react.tsx#L25) | - | | | [types.ts#L16](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/embeddable/types.ts#L16) | - | | | [types.ts#L30](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/embeddable/types.ts#L30) | - | | | [kibana_services.ts#L104](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/kibana_services.ts#L104) | - | -| | [search_embeddable.ts#L23](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/embeddable/search_embeddable.ts#L23) | - | -| | [search_embeddable.ts#L59](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/embeddable/search_embeddable.ts#L59) | - | +| | [saved_search_embeddable.tsx#L25](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/embeddable/saved_search_embeddable.tsx#L25) | - | +| | [saved_search_embeddable.tsx#L53](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/embeddable/saved_search_embeddable.tsx#L53) | - | | | [on_save_search.tsx#L11](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/top_nav/on_save_search.tsx#L11) | - | | | [on_save_search.tsx#L133](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/top_nav/on_save_search.tsx#L133) | - | | | [saved_searches.ts#L10](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/saved_searches/saved_searches.ts#L10) | - | | | [saved_searches.ts#L20](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/saved_searches/saved_searches.ts#L20) | - | | | [plugin.tsx#L33](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/plugin.tsx#L33) | - | -| | [plugin.tsx#L88](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/plugin.tsx#L88) | - | +| | [plugin.tsx#L122](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/plugin.tsx#L122) | - | | | [_saved_search.ts#L9](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/saved_searches/_saved_search.ts#L9) | - | | | [_saved_search.ts#L61](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/saved_searches/_saved_search.ts#L61) | - | @@ -153,7 +149,7 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | Deprecated API | Reference location | Remove By | | ---------------|-----------|-----------| | | [attribute_service.tsx#L13](https://github.com/elastic/kibana/tree/master/src/plugins/embeddable/public/lib/attribute_service/attribute_service.tsx#L13) | - | -| | [attribute_service.tsx#L167](https://github.com/elastic/kibana/tree/master/src/plugins/embeddable/public/lib/attribute_service/attribute_service.tsx#L167) | - | +| | [attribute_service.tsx#L165](https://github.com/elastic/kibana/tree/master/src/plugins/embeddable/public/lib/attribute_service/attribute_service.tsx#L165) | - | @@ -189,7 +185,7 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | | [query_bar.tsx#L30](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/query_bar.tsx#L30) | - | | | [query_bar.tsx#L38](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/query_bar.tsx#L38) | - | | | [plugin.ts#L14](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/server/plugin.ts#L14) | - | -| | [plugin.ts#L189](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/server/plugin.ts#L189) | - | +| | [plugin.ts#L190](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/server/plugin.ts#L190) | - | | | [plugin.d.ts#L2](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/target/types/server/plugin.d.ts#L2) | - | | | [plugin.d.ts#L84](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/target/types/server/plugin.d.ts#L84) | - | @@ -228,93 +224,18 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | Deprecated API | Reference location | Remove By | | ---------------|-----------|-----------| -| | [plugin.ts#L14](https://github.com/elastic/kibana/tree/master/x-pack/plugins/index_management/server/plugin.ts#L14) | 7.16 | -| | [plugin.ts#L42](https://github.com/elastic/kibana/tree/master/x-pack/plugins/index_management/server/plugin.ts#L42) | 7.16 | +| | [plugin.ts#L12](https://github.com/elastic/kibana/tree/master/x-pack/plugins/index_management/server/plugin.ts#L12) | 7.16 | +| | [plugin.ts#L38](https://github.com/elastic/kibana/tree/master/x-pack/plugins/index_management/server/plugin.ts#L38) | 7.16 | | | [types.ts#L9](https://github.com/elastic/kibana/tree/master/x-pack/plugins/index_management/server/types.ts#L9) | 7.16 | -| | [types.ts#L40](https://github.com/elastic/kibana/tree/master/x-pack/plugins/index_management/server/types.ts#L40) | 7.16 | +| | [types.ts#L39](https://github.com/elastic/kibana/tree/master/x-pack/plugins/index_management/server/types.ts#L39) | 7.16 | | | [types.d.ts#L1](https://github.com/elastic/kibana/tree/master/x-pack/plugins/index_management/target/types/server/types.d.ts#L1) | 7.16 | -| | [types.d.ts#L25](https://github.com/elastic/kibana/tree/master/x-pack/plugins/index_management/target/types/server/types.d.ts#L25) | 7.16 | +| | [types.d.ts#L24](https://github.com/elastic/kibana/tree/master/x-pack/plugins/index_management/target/types/server/types.d.ts#L24) | 7.16 | | | [types.ts#L10](https://github.com/elastic/kibana/tree/master/x-pack/plugins/index_management/server/types.ts#L10) | 7.16 | -| | [types.ts#L43](https://github.com/elastic/kibana/tree/master/x-pack/plugins/index_management/server/types.ts#L43) | 7.16 | -| | [types.ts#L50](https://github.com/elastic/kibana/tree/master/x-pack/plugins/index_management/server/types.ts#L50) | 7.16 | +| | [types.ts#L42](https://github.com/elastic/kibana/tree/master/x-pack/plugins/index_management/server/types.ts#L42) | 7.16 | +| | [types.ts#L49](https://github.com/elastic/kibana/tree/master/x-pack/plugins/index_management/server/types.ts#L49) | 7.16 | | | [types.d.ts#L1](https://github.com/elastic/kibana/tree/master/x-pack/plugins/index_management/target/types/server/types.d.ts#L1) | 7.16 | -| | [types.d.ts#L27](https://github.com/elastic/kibana/tree/master/x-pack/plugins/index_management/target/types/server/types.d.ts#L27) | 7.16 | -| | [types.d.ts#L33](https://github.com/elastic/kibana/tree/master/x-pack/plugins/index_management/target/types/server/types.d.ts#L33) | 7.16 | - - - -## indexPatternManagement - -| Deprecated API | Reference location | Remove By | -| ---------------|-----------|-----------| -| | [config.ts#L10](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/service/list/config.ts#L10) | - | -| | [config.ts#L29](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/service/list/config.ts#L29) | - | -| | [config.ts#L29](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/service/list/config.ts#L29) | - | -| | [config.ts#L42](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/service/list/config.ts#L42) | - | -| | [config.ts#L46](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/service/list/config.ts#L46) | - | -| | [manager.ts#L9](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/service/list/manager.ts#L9) | - | -| | [manager.ts#L32](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/service/list/manager.ts#L32) | - | -| | [manager.ts#L32](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/service/list/manager.ts#L32) | - | -| | [manager.ts#L43](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/service/list/manager.ts#L43) | - | -| | [manager.ts#L50](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/service/list/manager.ts#L50) | - | -| | [table.tsx#L22](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/edit_index_pattern/indexed_fields_table/components/table/table.tsx#L22) | - | -| | [table.tsx#L171](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/edit_index_pattern/indexed_fields_table/components/table/table.tsx#L171) | - | -| | [table.tsx#L15](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/edit_index_pattern/scripted_fields_table/components/table/table.tsx#L15) | - | -| | [table.tsx#L18](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/edit_index_pattern/scripted_fields_table/components/table/table.tsx#L18) | - | -| | [index_header.tsx#L12](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/edit_index_pattern/index_header/index_header.tsx#L12) | - | -| | [index_header.tsx#L15](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/edit_index_pattern/index_header/index_header.tsx#L15) | - | -| | [config.ts#L10](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/service/list/config.ts#L10) | - | -| | [config.ts#L42](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/service/list/config.ts#L42) | - | -| | [manager.ts#L9](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/service/list/manager.ts#L9) | - | -| | [manager.ts#L43](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/service/list/manager.ts#L43) | - | -| | [extract_time_fields.ts#L10](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/create_index_pattern_wizard/lib/extract_time_fields.ts#L10) | - | -| | [extract_time_fields.ts#L12](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/create_index_pattern_wizard/lib/extract_time_fields.ts#L12) | - | -| | [types.ts#L9](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/edit_index_pattern/indexed_fields_table/types.ts#L9) | - | -| | [types.ts#L11](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/edit_index_pattern/indexed_fields_table/types.ts#L11) | - | -| | [indexed_fields_table.tsx#L11](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/edit_index_pattern/indexed_fields_table/indexed_fields_table.tsx#L11) | - | -| | [indexed_fields_table.tsx#L23](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/edit_index_pattern/indexed_fields_table/indexed_fields_table.tsx#L23) | - | -| | [field_editor.tsx#L45](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/field_editor/field_editor.tsx#L45) | - | -| | [field_editor.tsx#L148](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/field_editor/field_editor.tsx#L148) | - | -| | [config.ts#L10](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/service/list/config.ts#L10) | - | -| | [config.ts#L42](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/service/list/config.ts#L42) | - | -| | [manager.ts#L9](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/service/list/manager.ts#L9) | - | -| | [manager.ts#L43](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/service/list/manager.ts#L43) | - | -| | [extract_time_fields.ts#L10](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/create_index_pattern_wizard/lib/extract_time_fields.ts#L10) | - | -| | [extract_time_fields.ts#L12](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/create_index_pattern_wizard/lib/extract_time_fields.ts#L12) | - | -| | [types.ts#L9](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/edit_index_pattern/indexed_fields_table/types.ts#L9) | - | -| | [types.ts#L11](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/edit_index_pattern/indexed_fields_table/types.ts#L11) | - | -| | [indexed_fields_table.tsx#L11](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/edit_index_pattern/indexed_fields_table/indexed_fields_table.tsx#L11) | - | -| | [indexed_fields_table.tsx#L23](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/edit_index_pattern/indexed_fields_table/indexed_fields_table.tsx#L23) | - | -| | [field_editor.tsx#L45](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/field_editor/field_editor.tsx#L45) | - | -| | [field_editor.tsx#L148](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/field_editor/field_editor.tsx#L148) | - | -| | [config.ts#L10](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/service/list/config.ts#L10) | - | -| | [config.ts#L29](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/service/list/config.ts#L29) | - | -| | [config.ts#L29](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/service/list/config.ts#L29) | - | -| | [config.ts#L42](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/service/list/config.ts#L42) | - | -| | [config.ts#L46](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/service/list/config.ts#L46) | - | -| | [manager.ts#L9](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/service/list/manager.ts#L9) | - | -| | [manager.ts#L32](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/service/list/manager.ts#L32) | - | -| | [manager.ts#L32](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/service/list/manager.ts#L32) | - | -| | [manager.ts#L43](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/service/list/manager.ts#L43) | - | -| | [manager.ts#L50](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/service/list/manager.ts#L50) | - | -| | [table.tsx#L22](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/edit_index_pattern/indexed_fields_table/components/table/table.tsx#L22) | - | -| | [table.tsx#L171](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/edit_index_pattern/indexed_fields_table/components/table/table.tsx#L171) | - | -| | [table.tsx#L15](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/edit_index_pattern/scripted_fields_table/components/table/table.tsx#L15) | - | -| | [table.tsx#L18](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/edit_index_pattern/scripted_fields_table/components/table/table.tsx#L18) | - | -| | [index_header.tsx#L12](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/edit_index_pattern/index_header/index_header.tsx#L12) | - | -| | [index_header.tsx#L15](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/edit_index_pattern/index_header/index_header.tsx#L15) | - | -| | [config.ts#L10](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/service/list/config.ts#L10) | - | -| | [config.ts#L42](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/service/list/config.ts#L42) | - | -| | [manager.ts#L9](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/service/list/manager.ts#L9) | - | -| | [manager.ts#L43](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/service/list/manager.ts#L43) | - | -| | [extract_time_fields.ts#L10](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/create_index_pattern_wizard/lib/extract_time_fields.ts#L10) | - | -| | [extract_time_fields.ts#L12](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/create_index_pattern_wizard/lib/extract_time_fields.ts#L12) | - | -| | [types.ts#L9](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/edit_index_pattern/indexed_fields_table/types.ts#L9) | - | -| | [types.ts#L11](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/edit_index_pattern/indexed_fields_table/types.ts#L11) | - | -| | [indexed_fields_table.tsx#L11](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/edit_index_pattern/indexed_fields_table/indexed_fields_table.tsx#L11) | - | -| | [indexed_fields_table.tsx#L23](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/edit_index_pattern/indexed_fields_table/indexed_fields_table.tsx#L23) | - | -| | [field_editor.tsx#L45](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/field_editor/field_editor.tsx#L45) | - | -| | [field_editor.tsx#L148](https://github.com/elastic/kibana/tree/master/src/plugins/index_pattern_management/public/components/field_editor/field_editor.tsx#L148) | - | +| | [types.d.ts#L26](https://github.com/elastic/kibana/tree/master/x-pack/plugins/index_management/target/types/server/types.d.ts#L26) | 7.16 | +| | [types.d.ts#L32](https://github.com/elastic/kibana/tree/master/x-pack/plugins/index_management/target/types/server/types.d.ts#L32) | 7.16 | @@ -341,11 +262,11 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | | [with_source.tsx#L10](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/public/containers/with_source/with_source.tsx#L10) | - | | | [with_source.tsx#L24](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/public/containers/with_source/with_source.tsx#L24) | - | | | [toolbar.tsx#L11](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/public/pages/metrics/metrics_explorer/components/toolbar.tsx#L11) | - | -| | [toolbar.tsx#L32](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/public/pages/metrics/metrics_explorer/components/toolbar.tsx#L32) | - | +| | [toolbar.tsx#L31](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/public/pages/metrics/metrics_explorer/components/toolbar.tsx#L31) | - | | | [use_metric_explorer_state.ts#L9](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/public/pages/metrics/metrics_explorer/hooks/use_metric_explorer_state.ts#L9) | - | | | [use_metric_explorer_state.ts#L32](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/public/pages/metrics/metrics_explorer/hooks/use_metric_explorer_state.ts#L32) | - | | | [index.tsx#L11](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/public/pages/metrics/metrics_explorer/index.tsx#L11) | - | -| | [index.tsx#L23](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/public/pages/metrics/metrics_explorer/index.tsx#L23) | - | +| | [index.tsx#L24](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/public/pages/metrics/metrics_explorer/index.tsx#L24) | - | | | [with_kuery_autocompletion.d.ts#L2](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/target/types/public/containers/with_kuery_autocompletion.d.ts#L2) | - | | | [with_kuery_autocompletion.d.ts#L14](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/target/types/public/containers/with_kuery_autocompletion.d.ts#L14) | - | | | [with_source.d.ts#L2](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/target/types/public/containers/with_source/with_source.d.ts#L2) | - | @@ -361,7 +282,7 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | | [use_metrics_explorer_data.d.ts#L1](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/target/types/public/pages/metrics/metrics_explorer/hooks/use_metrics_explorer_data.d.ts#L1) | - | | | [use_metrics_explorer_data.d.ts#L4](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/target/types/public/pages/metrics/metrics_explorer/hooks/use_metrics_explorer_data.d.ts#L4) | - | | | [index.tsx#L14](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/public/pages/metrics/index.tsx#L14) | - | -| | [index.tsx#L193](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/public/pages/metrics/index.tsx#L193) | - | +| | [index.tsx#L162](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/public/pages/metrics/index.tsx#L162) | - | | | [index_patterns.ts#L13](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/common/dependency_mocks/index_patterns.ts#L13) | - | | | [index_patterns.ts#L30](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/common/dependency_mocks/index_patterns.ts#L30) | - | | | [index_patterns.d.ts#L1](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/target/types/common/dependency_mocks/index_patterns.d.ts#L1) | - | @@ -497,11 +418,11 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | | [with_source.tsx#L10](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/public/containers/with_source/with_source.tsx#L10) | - | | | [with_source.tsx#L24](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/public/containers/with_source/with_source.tsx#L24) | - | | | [toolbar.tsx#L11](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/public/pages/metrics/metrics_explorer/components/toolbar.tsx#L11) | - | -| | [toolbar.tsx#L32](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/public/pages/metrics/metrics_explorer/components/toolbar.tsx#L32) | - | +| | [toolbar.tsx#L31](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/public/pages/metrics/metrics_explorer/components/toolbar.tsx#L31) | - | | | [use_metric_explorer_state.ts#L9](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/public/pages/metrics/metrics_explorer/hooks/use_metric_explorer_state.ts#L9) | - | | | [use_metric_explorer_state.ts#L32](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/public/pages/metrics/metrics_explorer/hooks/use_metric_explorer_state.ts#L32) | - | | | [index.tsx#L11](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/public/pages/metrics/metrics_explorer/index.tsx#L11) | - | -| | [index.tsx#L23](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/public/pages/metrics/metrics_explorer/index.tsx#L23) | - | +| | [index.tsx#L24](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/public/pages/metrics/metrics_explorer/index.tsx#L24) | - | | | [with_kuery_autocompletion.d.ts#L2](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/target/types/public/containers/with_kuery_autocompletion.d.ts#L2) | - | | | [with_kuery_autocompletion.d.ts#L14](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/target/types/public/containers/with_kuery_autocompletion.d.ts#L14) | - | | | [with_source.d.ts#L2](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/target/types/public/containers/with_source/with_source.d.ts#L2) | - | @@ -517,7 +438,7 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | | [use_metrics_explorer_data.d.ts#L1](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/target/types/public/pages/metrics/metrics_explorer/hooks/use_metrics_explorer_data.d.ts#L1) | - | | | [use_metrics_explorer_data.d.ts#L4](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/target/types/public/pages/metrics/metrics_explorer/hooks/use_metrics_explorer_data.d.ts#L4) | - | | | [index.tsx#L14](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/public/pages/metrics/index.tsx#L14) | - | -| | [index.tsx#L193](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/public/pages/metrics/index.tsx#L193) | - | +| | [index.tsx#L162](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/public/pages/metrics/index.tsx#L162) | - | | | [index_patterns.ts#L13](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/common/dependency_mocks/index_patterns.ts#L13) | - | | | [index_patterns.ts#L30](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/common/dependency_mocks/index_patterns.ts#L30) | - | | | [index_patterns.d.ts#L1](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/target/types/common/dependency_mocks/index_patterns.d.ts#L1) | - | @@ -578,11 +499,6 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | | [custom_metric_form.d.ts#L8](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/target/types/public/pages/metrics/inventory_view/components/waffle/metric_control/custom_metric_form.d.ts#L8) | - | | | [index.d.ts#L1](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/target/types/public/pages/metrics/inventory_view/components/waffle/metric_control/index.d.ts#L1) | - | | | [index.d.ts#L9](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/target/types/public/pages/metrics/inventory_view/components/waffle/metric_control/index.d.ts#L9) | - | -| | [log_entry_categories_analysis.ts#L9](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/server/lib/log_analysis/log_entry_categories_analysis.ts#L9) | 7.16 | -| | [log_entry_categories_analysis.ts#L139](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/server/lib/log_analysis/log_entry_categories_analysis.ts#L139) | 7.16 | -| | [log_entry_categories_analysis.ts#L405](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/server/lib/log_analysis/log_entry_categories_analysis.ts#L405) | 7.16 | -| | [log_entry_categories_analysis.d.ts#L1](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/target/types/server/lib/log_analysis/log_entry_categories_analysis.d.ts#L1) | 7.16 | -| | [log_entry_categories_analysis.d.ts#L58](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/target/types/server/lib/log_analysis/log_entry_categories_analysis.d.ts#L58) | 7.16 | @@ -592,6 +508,8 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | ---------------|-----------|-----------| | | [embeddable.tsx#L14](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/editor_frame_service/embeddable/embeddable.tsx#L14) | - | | | [embeddable.tsx#L85](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/editor_frame_service/embeddable/embeddable.tsx#L85) | - | +| | [index.tsx#L25](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/terms/index.tsx#L25) | - | +| | [index.tsx#L102](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/terms/index.tsx#L102) | - | | | [field_item.tsx#L47](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/indexpattern_datasource/field_item.tsx#L47) | - | | | [field_item.tsx#L172](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/indexpattern_datasource/field_item.tsx#L172) | - | | | [datapanel.tsx#L42](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/indexpattern_datasource/datapanel.tsx#L42) | - | @@ -604,12 +522,12 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | | [save.test.ts#L10](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/editor_frame_service/editor_frame/save.test.ts#L10) | - | | | [save.test.ts#L18](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/editor_frame_service/editor_frame/save.test.ts#L18) | - | | | [types.ts#L8](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/indexpattern_datasource/types.ts#L8) | - | -| | [types.ts#L57](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/indexpattern_datasource/types.ts#L57) | - | +| | [types.ts#L60](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/indexpattern_datasource/types.ts#L60) | - | | | [field_stats.ts#L11](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/server/routes/field_stats.ts#L11) | - | -| | [field_stats.ts#L139](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/server/routes/field_stats.ts#L139) | - | -| | [field_stats.ts#L248](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/server/routes/field_stats.ts#L248) | - | -| | [field_stats.ts#L287](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/server/routes/field_stats.ts#L287) | - | -| | [field_stats.ts#L329](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/server/routes/field_stats.ts#L329) | - | +| | [field_stats.ts#L141](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/server/routes/field_stats.ts#L141) | - | +| | [field_stats.ts#L250](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/server/routes/field_stats.ts#L250) | - | +| | [field_stats.ts#L290](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/server/routes/field_stats.ts#L290) | - | +| | [field_stats.ts#L332](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/server/routes/field_stats.ts#L332) | - | | | [types.d.ts#L1](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/target/types/public/indexpattern_datasource/types.d.ts#L1) | - | | | [types.d.ts#L22](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/target/types/public/indexpattern_datasource/types.d.ts#L22) | - | | | [field_stats.d.ts#L3](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/target/types/server/routes/field_stats.d.ts#L3) | - | @@ -619,12 +537,12 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | | [save.test.ts#L10](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/editor_frame_service/editor_frame/save.test.ts#L10) | - | | | [save.test.ts#L18](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/editor_frame_service/editor_frame/save.test.ts#L18) | - | | | [types.ts#L8](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/indexpattern_datasource/types.ts#L8) | - | -| | [types.ts#L57](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/indexpattern_datasource/types.ts#L57) | - | +| | [types.ts#L60](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/indexpattern_datasource/types.ts#L60) | - | | | [field_stats.ts#L11](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/server/routes/field_stats.ts#L11) | - | -| | [field_stats.ts#L139](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/server/routes/field_stats.ts#L139) | - | -| | [field_stats.ts#L248](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/server/routes/field_stats.ts#L248) | - | -| | [field_stats.ts#L287](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/server/routes/field_stats.ts#L287) | - | -| | [field_stats.ts#L329](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/server/routes/field_stats.ts#L329) | - | +| | [field_stats.ts#L141](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/server/routes/field_stats.ts#L141) | - | +| | [field_stats.ts#L250](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/server/routes/field_stats.ts#L250) | - | +| | [field_stats.ts#L290](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/server/routes/field_stats.ts#L290) | - | +| | [field_stats.ts#L332](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/server/routes/field_stats.ts#L332) | - | | | [types.d.ts#L1](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/target/types/public/indexpattern_datasource/types.d.ts#L1) | - | | | [types.d.ts#L22](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/target/types/public/indexpattern_datasource/types.d.ts#L22) | - | | | [field_stats.d.ts#L3](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/target/types/server/routes/field_stats.d.ts#L3) | - | @@ -633,6 +551,8 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | | [field_stats.d.ts#L9](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/target/types/server/routes/field_stats.d.ts#L9) | - | | | [embeddable.tsx#L14](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/editor_frame_service/embeddable/embeddable.tsx#L14) | - | | | [embeddable.tsx#L85](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/editor_frame_service/embeddable/embeddable.tsx#L85) | - | +| | [index.tsx#L25](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/terms/index.tsx#L25) | - | +| | [index.tsx#L102](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/terms/index.tsx#L102) | - | | | [field_item.tsx#L47](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/indexpattern_datasource/field_item.tsx#L47) | - | | | [field_item.tsx#L172](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/indexpattern_datasource/field_item.tsx#L172) | - | | | [datapanel.tsx#L42](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/indexpattern_datasource/datapanel.tsx#L42) | - | @@ -645,12 +565,12 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | | [save.test.ts#L10](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/editor_frame_service/editor_frame/save.test.ts#L10) | - | | | [save.test.ts#L18](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/editor_frame_service/editor_frame/save.test.ts#L18) | - | | | [types.ts#L8](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/indexpattern_datasource/types.ts#L8) | - | -| | [types.ts#L57](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/indexpattern_datasource/types.ts#L57) | - | +| | [types.ts#L60](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/indexpattern_datasource/types.ts#L60) | - | | | [field_stats.ts#L11](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/server/routes/field_stats.ts#L11) | - | -| | [field_stats.ts#L139](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/server/routes/field_stats.ts#L139) | - | -| | [field_stats.ts#L248](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/server/routes/field_stats.ts#L248) | - | -| | [field_stats.ts#L287](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/server/routes/field_stats.ts#L287) | - | -| | [field_stats.ts#L329](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/server/routes/field_stats.ts#L329) | - | +| | [field_stats.ts#L141](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/server/routes/field_stats.ts#L141) | - | +| | [field_stats.ts#L250](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/server/routes/field_stats.ts#L250) | - | +| | [field_stats.ts#L290](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/server/routes/field_stats.ts#L290) | - | +| | [field_stats.ts#L332](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/server/routes/field_stats.ts#L332) | - | | | [types.d.ts#L1](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/target/types/public/indexpattern_datasource/types.d.ts#L1) | - | | | [types.d.ts#L22](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/target/types/public/indexpattern_datasource/types.d.ts#L22) | - | | | [field_stats.d.ts#L3](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/target/types/server/routes/field_stats.d.ts#L3) | - | @@ -668,20 +588,20 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | | [types.ts#L85](https://github.com/elastic/kibana/tree/master/x-pack/plugins/licensing/server/types.ts#L85) | 7.16 | | | [types.ts#L110](https://github.com/elastic/kibana/tree/master/x-pack/plugins/licensing/server/types.ts#L110) | 7.16 | | | [plugin.ts#L18](https://github.com/elastic/kibana/tree/master/x-pack/plugins/licensing/server/plugin.ts#L18) | 7.16 | -| | [plugin.ts#L109](https://github.com/elastic/kibana/tree/master/x-pack/plugins/licensing/server/plugin.ts#L109) | 7.16 | -| | [plugin.ts#L151](https://github.com/elastic/kibana/tree/master/x-pack/plugins/licensing/server/plugin.ts#L151) | 7.16 | -| | [plugin.ts#L180](https://github.com/elastic/kibana/tree/master/x-pack/plugins/licensing/server/plugin.ts#L180) | 7.16 | +| | [plugin.ts#L110](https://github.com/elastic/kibana/tree/master/x-pack/plugins/licensing/server/plugin.ts#L110) | 7.16 | +| | [plugin.ts#L154](https://github.com/elastic/kibana/tree/master/x-pack/plugins/licensing/server/plugin.ts#L154) | 7.16 | +| | [plugin.ts#L183](https://github.com/elastic/kibana/tree/master/x-pack/plugins/licensing/server/plugin.ts#L183) | 7.16 | | | [plugin.test.ts#L18](https://github.com/elastic/kibana/tree/master/x-pack/plugins/licensing/server/plugin.test.ts#L18) | 7.16 | | | [plugin.test.ts#L33](https://github.com/elastic/kibana/tree/master/x-pack/plugins/licensing/server/plugin.test.ts#L33) | 7.16 | | | [types.d.ts#L2](https://github.com/elastic/kibana/tree/master/x-pack/plugins/licensing/target/types/server/types.d.ts#L2) | 7.16 | | | [types.d.ts#L70](https://github.com/elastic/kibana/tree/master/x-pack/plugins/licensing/target/types/server/types.d.ts#L70) | 7.16 | | | [types.d.ts#L94](https://github.com/elastic/kibana/tree/master/x-pack/plugins/licensing/target/types/server/types.d.ts#L94) | 7.16 | | | [plugin.ts#L19](https://github.com/elastic/kibana/tree/master/x-pack/plugins/licensing/server/plugin.ts#L19) | 7.16 | -| | [plugin.ts#L102](https://github.com/elastic/kibana/tree/master/x-pack/plugins/licensing/server/plugin.ts#L102) | 7.16 | | | [plugin.ts#L103](https://github.com/elastic/kibana/tree/master/x-pack/plugins/licensing/server/plugin.ts#L103) | 7.16 | -| | [plugin.ts#L111](https://github.com/elastic/kibana/tree/master/x-pack/plugins/licensing/server/plugin.ts#L111) | 7.16 | -| | [plugin.ts#L114](https://github.com/elastic/kibana/tree/master/x-pack/plugins/licensing/server/plugin.ts#L114) | 7.16 | +| | [plugin.ts#L104](https://github.com/elastic/kibana/tree/master/x-pack/plugins/licensing/server/plugin.ts#L104) | 7.16 | +| | [plugin.ts#L112](https://github.com/elastic/kibana/tree/master/x-pack/plugins/licensing/server/plugin.ts#L112) | 7.16 | | | [plugin.ts#L115](https://github.com/elastic/kibana/tree/master/x-pack/plugins/licensing/server/plugin.ts#L115) | 7.16 | +| | [plugin.ts#L116](https://github.com/elastic/kibana/tree/master/x-pack/plugins/licensing/server/plugin.ts#L116) | 7.16 | @@ -936,7 +856,7 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | Deprecated API | Reference location | Remove By | | ---------------|-----------|-----------| | | [types.ts#L8](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/embeddable/types.ts#L8) | - | -| | [types.ts#L45](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/embeddable/types.ts#L45) | - | +| | [types.ts#L44](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/embeddable/types.ts#L44) | - | | | [es_doc_field.ts#L12](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/fields/es_doc_field.ts#L12) | - | | | [es_doc_field.ts#L45](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/fields/es_doc_field.ts#L45) | - | | | [es_source.ts#L10](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_source/es_source.ts#L10) | - | @@ -975,9 +895,9 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | | [update_source_editor.tsx#L17](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/top_hits/update_source_editor.tsx#L17) | - | | | [update_source_editor.tsx#L39](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/top_hits/update_source_editor.tsx#L39) | - | | | [update_source_editor.tsx#L40](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/top_hits/update_source_editor.tsx#L40) | - | -| | [es_search_source.tsx#L13](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#L13) | - | -| | [es_search_source.tsx#L164](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#L164) | - | -| | [es_search_source.tsx#L281](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#L281) | - | +| | [es_search_source.tsx#L12](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#L12) | - | +| | [es_search_source.tsx#L175](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#L175) | - | +| | [es_search_source.tsx#L292](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#L292) | - | | | [metric_editor.tsx#L19](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/components/metrics_editor/metric_editor.tsx#L19) | - | | | [metric_editor.tsx#L22](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/components/metrics_editor/metric_editor.tsx#L22) | - | | | [metric_editor.tsx#L43](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/components/metrics_editor/metric_editor.tsx#L43) | - | @@ -1029,8 +949,8 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | | [create_source_editor.tsx#L30](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/top_hits/create_source_editor.tsx#L30) | - | | | [create_source_editor.tsx#L33](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/top_hits/create_source_editor.tsx#L33) | - | | | [create_source_editor.tsx#L35](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/top_hits/create_source_editor.tsx#L35) | - | -| | [get_docvalue_source_fields.test.ts#L10](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/get_docvalue_source_fields.test.ts#L10) | - | -| | [get_docvalue_source_fields.test.ts#L12](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/get_docvalue_source_fields.test.ts#L12) | - | +| | [get_docvalue_source_fields.test.ts#L10](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/util/get_docvalue_source_fields.test.ts#L10) | - | +| | [get_docvalue_source_fields.test.ts#L12](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/util/get_docvalue_source_fields.test.ts#L12) | - | | | [es_doc_field.ts#L12](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/fields/es_doc_field.ts#L12) | - | | | [es_doc_field.ts#L45](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/fields/es_doc_field.ts#L45) | - | | | [es_source.ts#L10](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_source/es_source.ts#L10) | - | @@ -1069,9 +989,9 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | | [update_source_editor.tsx#L17](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/top_hits/update_source_editor.tsx#L17) | - | | | [update_source_editor.tsx#L39](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/top_hits/update_source_editor.tsx#L39) | - | | | [update_source_editor.tsx#L40](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/top_hits/update_source_editor.tsx#L40) | - | -| | [es_search_source.tsx#L13](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#L13) | - | -| | [es_search_source.tsx#L164](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#L164) | - | -| | [es_search_source.tsx#L281](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#L281) | - | +| | [es_search_source.tsx#L12](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#L12) | - | +| | [es_search_source.tsx#L175](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#L175) | - | +| | [es_search_source.tsx#L292](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#L292) | - | | | [metric_editor.tsx#L19](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/components/metrics_editor/metric_editor.tsx#L19) | - | | | [metric_editor.tsx#L22](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/components/metrics_editor/metric_editor.tsx#L22) | - | | | [metric_editor.tsx#L43](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/components/metrics_editor/metric_editor.tsx#L43) | - | @@ -1123,10 +1043,10 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | | [create_source_editor.tsx#L30](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/top_hits/create_source_editor.tsx#L30) | - | | | [create_source_editor.tsx#L33](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/top_hits/create_source_editor.tsx#L33) | - | | | [create_source_editor.tsx#L35](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/top_hits/create_source_editor.tsx#L35) | - | -| | [get_docvalue_source_fields.test.ts#L10](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/get_docvalue_source_fields.test.ts#L10) | - | -| | [get_docvalue_source_fields.test.ts#L12](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/get_docvalue_source_fields.test.ts#L12) | - | +| | [get_docvalue_source_fields.test.ts#L10](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/util/get_docvalue_source_fields.test.ts#L10) | - | +| | [get_docvalue_source_fields.test.ts#L12](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/util/get_docvalue_source_fields.test.ts#L12) | - | | | [types.ts#L8](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/embeddable/types.ts#L8) | - | -| | [types.ts#L45](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/embeddable/types.ts#L45) | - | +| | [types.ts#L44](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/embeddable/types.ts#L44) | - | | | [es_doc_field.ts#L12](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/fields/es_doc_field.ts#L12) | - | | | [es_doc_field.ts#L45](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/fields/es_doc_field.ts#L45) | - | | | [es_source.ts#L10](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_source/es_source.ts#L10) | - | @@ -1165,9 +1085,9 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | | [update_source_editor.tsx#L17](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/top_hits/update_source_editor.tsx#L17) | - | | | [update_source_editor.tsx#L39](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/top_hits/update_source_editor.tsx#L39) | - | | | [update_source_editor.tsx#L40](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/top_hits/update_source_editor.tsx#L40) | - | -| | [es_search_source.tsx#L13](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#L13) | - | -| | [es_search_source.tsx#L164](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#L164) | - | -| | [es_search_source.tsx#L281](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#L281) | - | +| | [es_search_source.tsx#L12](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#L12) | - | +| | [es_search_source.tsx#L175](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#L175) | - | +| | [es_search_source.tsx#L292](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#L292) | - | | | [metric_editor.tsx#L19](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/components/metrics_editor/metric_editor.tsx#L19) | - | | | [metric_editor.tsx#L22](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/components/metrics_editor/metric_editor.tsx#L22) | - | | | [metric_editor.tsx#L43](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/components/metrics_editor/metric_editor.tsx#L43) | - | @@ -1219,8 +1139,8 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | | [create_source_editor.tsx#L30](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/top_hits/create_source_editor.tsx#L30) | - | | | [create_source_editor.tsx#L33](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/top_hits/create_source_editor.tsx#L33) | - | | | [create_source_editor.tsx#L35](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/top_hits/create_source_editor.tsx#L35) | - | -| | [get_docvalue_source_fields.test.ts#L10](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/get_docvalue_source_fields.test.ts#L10) | - | -| | [get_docvalue_source_fields.test.ts#L12](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/get_docvalue_source_fields.test.ts#L12) | - | +| | [get_docvalue_source_fields.test.ts#L10](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/util/get_docvalue_source_fields.test.ts#L10) | - | +| | [get_docvalue_source_fields.test.ts#L12](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/util/get_docvalue_source_fields.test.ts#L12) | - | @@ -1361,7 +1281,7 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | | [static_globals.ts#L43](https://github.com/elastic/kibana/tree/master/x-pack/plugins/monitoring/server/static_globals.ts#L43) | 7.16 | | | [plugin.ts#L18](https://github.com/elastic/kibana/tree/master/x-pack/plugins/monitoring/server/plugin.ts#L18) | 7.16 | | | [plugin.ts#L74](https://github.com/elastic/kibana/tree/master/x-pack/plugins/monitoring/server/plugin.ts#L74) | 7.16 | -| | [plugin.ts#L279](https://github.com/elastic/kibana/tree/master/x-pack/plugins/monitoring/server/plugin.ts#L279) | 7.16 | +| | [plugin.ts#L284](https://github.com/elastic/kibana/tree/master/x-pack/plugins/monitoring/server/plugin.ts#L284) | 7.16 | | | [types.d.ts#L2](https://github.com/elastic/kibana/tree/master/x-pack/plugins/monitoring/target/types/server/types.d.ts#L2) | 7.16 | | | [types.d.ts#L47](https://github.com/elastic/kibana/tree/master/x-pack/plugins/monitoring/target/types/server/types.d.ts#L47) | 7.16 | | | [plugin.d.ts#L1](https://github.com/elastic/kibana/tree/master/x-pack/plugins/monitoring/target/types/server/plugin.d.ts#L1) | 7.16 | @@ -1450,22 +1370,20 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | Deprecated API | Reference location | Remove By | | ---------------|-----------|-----------| -| | [types.ts#L18](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts#L18) | - | -| | [types.ts#L95](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts#L95) | - | +| | [types.ts#L19](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts#L19) | - | +| | [types.ts#L94](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts#L94) | - | | | [utils.ts#L10](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/utils.ts#L10) | - | -| | [utils.ts#L53](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/utils.ts#L53) | - | -| | [utils.ts#L61](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/utils.ts#L61) | - | -| | [utils.ts#L69](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/utils.ts#L69) | - | -| | [default_configs.ts#L19](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/default_configs.ts#L19) | - | -| | [default_configs.ts#L24](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/default_configs.ts#L24) | - | -| | [types.ts#L18](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts#L18) | - | -| | [types.ts#L95](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts#L95) | - | +| | [utils.ts#L56](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/utils.ts#L56) | - | +| | [utils.ts#L64](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/utils.ts#L64) | - | +| | [utils.ts#L72](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/utils.ts#L72) | - | +| | [utils.ts#L89](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/utils.ts#L89) | - | +| | [types.ts#L19](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts#L19) | - | +| | [types.ts#L94](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts#L94) | - | | | [utils.ts#L10](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/utils.ts#L10) | - | -| | [utils.ts#L53](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/utils.ts#L53) | - | -| | [utils.ts#L61](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/utils.ts#L61) | - | -| | [utils.ts#L69](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/utils.ts#L69) | - | -| | [default_configs.ts#L19](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/default_configs.ts#L19) | - | -| | [default_configs.ts#L24](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/default_configs.ts#L24) | - | +| | [utils.ts#L56](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/utils.ts#L56) | - | +| | [utils.ts#L64](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/utils.ts#L64) | - | +| | [utils.ts#L72](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/utils.ts#L72) | - | +| | [utils.ts#L89](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/utils.ts#L89) | - | @@ -1533,7 +1451,7 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | Deprecated API | Reference location | Remove By | | ---------------|-----------|-----------| | | [index.ts#L8](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/saved_objects/index.ts#L8) | - | -| | [index.ts#L34](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/saved_objects/index.ts#L34) | - | +| | [index.ts#L47](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/saved_objects/index.ts#L47) | - | @@ -1541,19 +1459,16 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | Deprecated API | Reference location | Remove By | | ---------------|-----------|-----------| -| | [types.ts#L21](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/types.ts#L21) | - | -| | [types.ts#L66](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/types.ts#L66) | - | -| | [action.ts#L19](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/action.ts#L19) | - | -| | [action.ts#L100](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/action.ts#L100) | - | | | [index.ts#L8](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts#L8) | - | | | [index.ts#L86](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts#L86) | - | +| | [types.ts#L23](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/types.ts#L23) | - | +| | [types.ts#L81](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/types.ts#L81) | - | +| | [action.ts#L20](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/action.ts#L20) | - | +| | [action.ts#L100](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/action.ts#L100) | - | | | [index.tsx#L12](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#L12) | - | | | [index.tsx#L48](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#L48) | - | | | [index.tsx#L122](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#L122) | - | -| | [types.ts#L13](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/url_state/types.ts#L13) | - | -| | [types.ts#L112](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/url_state/types.ts#L112) | - | -| | [types.ts#L152](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/url_state/types.ts#L152) | - | -| | [index.ts#L16](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/lib/keury/index.ts#L16) | - | +| | [index.ts#L17](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/lib/keury/index.ts#L17) | - | | | [index.ts#L22](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/lib/keury/index.ts#L22) | - | | | [index.ts#L37](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/lib/keury/index.ts#L37) | - | | | [index.ts#L80](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/lib/keury/index.ts#L80) | - | @@ -1566,35 +1481,38 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | | [columns.tsx#L11](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/network/components/network_top_countries_table/columns.tsx#L11) | - | | | [columns.tsx#L50](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/network/components/network_top_countries_table/columns.tsx#L50) | - | | | [columns.tsx#L164](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/network/components/network_top_countries_table/columns.tsx#L164) | - | -| | [events_viewer.tsx#L35](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/events_viewer/events_viewer.tsx#L35) | - | -| | [events_viewer.tsx#L122](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/events_viewer/events_viewer.tsx#L122) | - | +| | [events_viewer.tsx#L36](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/events_viewer/events_viewer.tsx#L36) | - | +| | [events_viewer.tsx#L126](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/events_viewer/events_viewer.tsx#L126) | - | | | [index.tsx#L28](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/overview/components/events_by_dataset/index.tsx#L28) | - | | | [index.tsx#L48](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/overview/components/events_by_dataset/index.tsx#L48) | - | | | [top_n.tsx#L17](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/top_n/top_n.tsx#L17) | - | | | [top_n.tsx#L55](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/top_n/top_n.tsx#L55) | - | | | [index.tsx#L18](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/top_n/index.tsx#L18) | - | | | [index.tsx#L79](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/top_n/index.tsx#L79) | - | +| | [middleware.ts#L55](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#L55) | - | +| | [middleware.ts#L77](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#L77) | - | +| | [middleware.ts#L82](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#L82) | - | +| | [types.ts#L13](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/url_state/types.ts#L13) | - | +| | [types.ts#L128](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/url_state/types.ts#L128) | - | +| | [types.ts#L168](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/url_state/types.ts#L168) | - | | | [index.tsx#L18](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/search_bar/index.tsx#L18) | - | | | [index.tsx#L51](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/search_bar/index.tsx#L51) | - | | | [types.ts#L8](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/network/pages/details/types.ts#L8) | - | | | [types.ts#L41](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/network/pages/details/types.ts#L41) | - | | | [index.tsx#L12](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/network/components/network_top_countries_table/index.tsx#L12) | - | | | [index.tsx#L34](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/network/components/network_top_countries_table/index.tsx#L34) | - | -| | [middleware.ts#L44](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#L44) | - | -| | [middleware.ts#L60](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#L60) | - | -| | [middleware.ts#L65](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#L65) | - | -| | [types.ts#L12](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/rules/description_step/types.ts#L12) | - | -| | [types.ts#L28](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/rules/description_step/types.ts#L28) | - | -| | [index.tsx#L15](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/rules/description_step/index.tsx#L15) | - | -| | [index.tsx#L58](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/rules/description_step/index.tsx#L58) | - | -| | [index.tsx#L132](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/rules/description_step/index.tsx#L132) | - | -| | [index.tsx#L164](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/rules/description_step/index.tsx#L164) | - | | | [types.ts#L9](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/hosts/pages/details/types.ts#L9) | - | | | [types.ts#L65](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/hosts/pages/details/types.ts#L65) | - | | | [index.tsx#L20](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/overview/components/alerts_by_category/index.tsx#L20) | - | | | [index.tsx#L44](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/overview/components/alerts_by_category/index.tsx#L44) | - | | | [index.tsx#L21](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/overview/components/event_counts/index.tsx#L21) | - | | | [index.tsx#L33](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/overview/components/event_counts/index.tsx#L33) | - | +| | [types.ts#L12](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/rules/description_step/types.ts#L12) | - | +| | [types.ts#L28](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/rules/description_step/types.ts#L28) | - | +| | [index.tsx#L15](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/rules/description_step/index.tsx#L15) | - | +| | [index.tsx#L58](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/rules/description_step/index.tsx#L58) | - | +| | [index.tsx#L132](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/rules/description_step/index.tsx#L132) | - | +| | [index.tsx#L164](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/rules/description_step/index.tsx#L164) | - | | | [index.d.ts#L1](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/target/types/common/search_strategy/index_fields/index.d.ts#L1) | - | | | [index.d.ts#L66](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/target/types/common/search_strategy/index_fields/index.d.ts#L66) | - | | | [index.d.ts#L1](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/target/types/public/common/containers/source/index.d.ts#L1) | - | @@ -1614,20 +1532,20 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | | [index.d.ts#L10](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/target/types/public/network/components/network_top_countries_table/index.d.ts#L10) | - | | | [types.d.ts#L1](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/target/types/public/network/pages/details/types.d.ts#L1) | - | | | [types.d.ts#L25](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/target/types/public/network/pages/details/types.d.ts#L25) | - | -| | [types.ts#L9](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/network/pages/navigation/types.ts#L9) | - | -| | [types.ts#L35](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/network/pages/navigation/types.ts#L35) | - | -| | [types.ts#L53](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/network/pages/navigation/types.ts#L53) | - | -| | [get_query_filter.ts#L16](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/detection_engine/get_query_filter.ts#L16) | - | -| | [get_query_filter.ts#L31](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/detection_engine/get_query_filter.ts#L31) | - | -| | [helpers.tsx#L39](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/exceptions/helpers.tsx#L39) | - | -| | [helpers.tsx#L49](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/exceptions/helpers.tsx#L49) | - | -| | [helpers.tsx#L52](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/exceptions/helpers.tsx#L52) | - | -| | [helpers.tsx#L485](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/exceptions/helpers.tsx#L485) | - | | | [index_pattern.ts#L9](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/models/index_pattern.ts#L9) | - | | | [index_pattern.ts#L12](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/models/index_pattern.ts#L12) | - | | | [index_pattern.ts#L12](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/models/index_pattern.ts#L12) | - | | | [index_pattern.ts#L12](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/models/index_pattern.ts#L12) | - | | | [index_pattern.ts#L13](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/models/index_pattern.ts#L13) | - | +| | [get_query_filter.ts#L16](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/detection_engine/get_query_filter.ts#L16) | - | +| | [get_query_filter.ts#L31](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/detection_engine/get_query_filter.ts#L31) | - | +| | [helpers.tsx#L39](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/exceptions/helpers.tsx#L39) | - | +| | [helpers.tsx#L49](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/exceptions/helpers.tsx#L49) | - | +| | [helpers.tsx#L52](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/exceptions/helpers.tsx#L52) | - | +| | [helpers.tsx#L504](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/exceptions/helpers.tsx#L504) | - | +| | [types.ts#L9](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/network/pages/navigation/types.ts#L9) | - | +| | [types.ts#L35](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/network/pages/navigation/types.ts#L35) | - | +| | [types.ts#L52](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/network/pages/navigation/types.ts#L52) | - | | | [field.tsx#L11](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/autocomplete/field.tsx#L11) | - | | | [field.tsx#L18](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/autocomplete/field.tsx#L18) | - | | | [field.tsx#L93](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/autocomplete/field.tsx#L93) | - | @@ -1637,6 +1555,8 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | | [use_field_value_autocomplete.ts#L31](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/autocomplete/hooks/use_field_value_autocomplete.ts#L31) | - | | | [field_value_match.tsx#L19](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/autocomplete/field_value_match.tsx#L19) | - | | | [field_value_match.tsx#L30](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/autocomplete/field_value_match.tsx#L30) | - | +| | [query.ts#L13](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/lib/detection_engine/reference_rules/query.ts#L13) | - | +| | [query.ts#L53](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/lib/detection_engine/reference_rules/query.ts#L53) | - | | | [model.ts#L8](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/sourcerer/model.ts#L8) | - | | | [model.ts#L30](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/sourcerer/model.ts#L30) | - | | | [index.tsx#L33](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/rules/severity_mapping/index.tsx#L33) | - | @@ -1753,19 +1673,16 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | | [index.tsx#L242](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/rules/risk_score_mapping/index.tsx#L242) | - | | | [index.tsx#L12](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/rules/autocomplete_field/index.tsx#L12) | - | | | [index.tsx#L35](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/rules/autocomplete_field/index.tsx#L35) | - | -| | [types.ts#L21](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/types.ts#L21) | - | -| | [types.ts#L66](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/types.ts#L66) | - | -| | [action.ts#L19](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/action.ts#L19) | - | -| | [action.ts#L100](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/action.ts#L100) | - | | | [index.ts#L8](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts#L8) | - | | | [index.ts#L86](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts#L86) | - | +| | [types.ts#L23](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/types.ts#L23) | - | +| | [types.ts#L81](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/types.ts#L81) | - | +| | [action.ts#L20](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/action.ts#L20) | - | +| | [action.ts#L100](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/action.ts#L100) | - | | | [index.tsx#L12](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#L12) | - | | | [index.tsx#L48](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#L48) | - | | | [index.tsx#L122](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#L122) | - | -| | [types.ts#L13](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/url_state/types.ts#L13) | - | -| | [types.ts#L112](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/url_state/types.ts#L112) | - | -| | [types.ts#L152](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/url_state/types.ts#L152) | - | -| | [index.ts#L16](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/lib/keury/index.ts#L16) | - | +| | [index.ts#L17](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/lib/keury/index.ts#L17) | - | | | [index.ts#L22](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/lib/keury/index.ts#L22) | - | | | [index.ts#L37](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/lib/keury/index.ts#L37) | - | | | [index.ts#L80](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/lib/keury/index.ts#L80) | - | @@ -1778,35 +1695,38 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | | [columns.tsx#L11](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/network/components/network_top_countries_table/columns.tsx#L11) | - | | | [columns.tsx#L50](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/network/components/network_top_countries_table/columns.tsx#L50) | - | | | [columns.tsx#L164](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/network/components/network_top_countries_table/columns.tsx#L164) | - | -| | [events_viewer.tsx#L35](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/events_viewer/events_viewer.tsx#L35) | - | -| | [events_viewer.tsx#L122](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/events_viewer/events_viewer.tsx#L122) | - | +| | [events_viewer.tsx#L36](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/events_viewer/events_viewer.tsx#L36) | - | +| | [events_viewer.tsx#L126](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/events_viewer/events_viewer.tsx#L126) | - | | | [index.tsx#L28](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/overview/components/events_by_dataset/index.tsx#L28) | - | | | [index.tsx#L48](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/overview/components/events_by_dataset/index.tsx#L48) | - | | | [top_n.tsx#L17](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/top_n/top_n.tsx#L17) | - | | | [top_n.tsx#L55](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/top_n/top_n.tsx#L55) | - | | | [index.tsx#L18](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/top_n/index.tsx#L18) | - | | | [index.tsx#L79](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/top_n/index.tsx#L79) | - | +| | [middleware.ts#L55](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#L55) | - | +| | [middleware.ts#L77](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#L77) | - | +| | [middleware.ts#L82](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#L82) | - | +| | [types.ts#L13](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/url_state/types.ts#L13) | - | +| | [types.ts#L128](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/url_state/types.ts#L128) | - | +| | [types.ts#L168](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/url_state/types.ts#L168) | - | | | [index.tsx#L18](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/search_bar/index.tsx#L18) | - | | | [index.tsx#L51](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/search_bar/index.tsx#L51) | - | | | [types.ts#L8](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/network/pages/details/types.ts#L8) | - | | | [types.ts#L41](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/network/pages/details/types.ts#L41) | - | | | [index.tsx#L12](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/network/components/network_top_countries_table/index.tsx#L12) | - | | | [index.tsx#L34](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/network/components/network_top_countries_table/index.tsx#L34) | - | -| | [middleware.ts#L44](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#L44) | - | -| | [middleware.ts#L60](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#L60) | - | -| | [middleware.ts#L65](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#L65) | - | -| | [types.ts#L12](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/rules/description_step/types.ts#L12) | - | -| | [types.ts#L28](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/rules/description_step/types.ts#L28) | - | -| | [index.tsx#L15](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/rules/description_step/index.tsx#L15) | - | -| | [index.tsx#L58](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/rules/description_step/index.tsx#L58) | - | -| | [index.tsx#L132](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/rules/description_step/index.tsx#L132) | - | -| | [index.tsx#L164](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/rules/description_step/index.tsx#L164) | - | | | [types.ts#L9](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/hosts/pages/details/types.ts#L9) | - | | | [types.ts#L65](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/hosts/pages/details/types.ts#L65) | - | | | [index.tsx#L20](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/overview/components/alerts_by_category/index.tsx#L20) | - | | | [index.tsx#L44](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/overview/components/alerts_by_category/index.tsx#L44) | - | | | [index.tsx#L21](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/overview/components/event_counts/index.tsx#L21) | - | | | [index.tsx#L33](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/overview/components/event_counts/index.tsx#L33) | - | +| | [types.ts#L12](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/rules/description_step/types.ts#L12) | - | +| | [types.ts#L28](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/rules/description_step/types.ts#L28) | - | +| | [index.tsx#L15](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/rules/description_step/index.tsx#L15) | - | +| | [index.tsx#L58](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/rules/description_step/index.tsx#L58) | - | +| | [index.tsx#L132](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/rules/description_step/index.tsx#L132) | - | +| | [index.tsx#L164](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/rules/description_step/index.tsx#L164) | - | | | [index.d.ts#L1](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/target/types/common/search_strategy/index_fields/index.d.ts#L1) | - | | | [index.d.ts#L66](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/target/types/common/search_strategy/index_fields/index.d.ts#L66) | - | | | [index.d.ts#L1](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/target/types/public/common/containers/source/index.d.ts#L1) | - | @@ -1826,20 +1746,20 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | | [index.d.ts#L10](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/target/types/public/network/components/network_top_countries_table/index.d.ts#L10) | - | | | [types.d.ts#L1](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/target/types/public/network/pages/details/types.d.ts#L1) | - | | | [types.d.ts#L25](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/target/types/public/network/pages/details/types.d.ts#L25) | - | -| | [types.ts#L9](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/network/pages/navigation/types.ts#L9) | - | -| | [types.ts#L35](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/network/pages/navigation/types.ts#L35) | - | -| | [types.ts#L53](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/network/pages/navigation/types.ts#L53) | - | -| | [get_query_filter.ts#L16](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/detection_engine/get_query_filter.ts#L16) | - | -| | [get_query_filter.ts#L31](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/detection_engine/get_query_filter.ts#L31) | - | -| | [helpers.tsx#L39](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/exceptions/helpers.tsx#L39) | - | -| | [helpers.tsx#L49](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/exceptions/helpers.tsx#L49) | - | -| | [helpers.tsx#L52](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/exceptions/helpers.tsx#L52) | - | -| | [helpers.tsx#L485](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/exceptions/helpers.tsx#L485) | - | | | [index_pattern.ts#L9](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/models/index_pattern.ts#L9) | - | | | [index_pattern.ts#L12](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/models/index_pattern.ts#L12) | - | | | [index_pattern.ts#L12](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/models/index_pattern.ts#L12) | - | | | [index_pattern.ts#L12](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/models/index_pattern.ts#L12) | - | | | [index_pattern.ts#L13](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/models/index_pattern.ts#L13) | - | +| | [get_query_filter.ts#L16](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/detection_engine/get_query_filter.ts#L16) | - | +| | [get_query_filter.ts#L31](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/detection_engine/get_query_filter.ts#L31) | - | +| | [helpers.tsx#L39](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/exceptions/helpers.tsx#L39) | - | +| | [helpers.tsx#L49](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/exceptions/helpers.tsx#L49) | - | +| | [helpers.tsx#L52](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/exceptions/helpers.tsx#L52) | - | +| | [helpers.tsx#L504](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/exceptions/helpers.tsx#L504) | - | +| | [types.ts#L9](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/network/pages/navigation/types.ts#L9) | - | +| | [types.ts#L35](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/network/pages/navigation/types.ts#L35) | - | +| | [types.ts#L52](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/network/pages/navigation/types.ts#L52) | - | | | [field.tsx#L11](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/autocomplete/field.tsx#L11) | - | | | [field.tsx#L18](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/autocomplete/field.tsx#L18) | - | | | [field.tsx#L93](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/autocomplete/field.tsx#L93) | - | @@ -1849,6 +1769,8 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | | [use_field_value_autocomplete.ts#L31](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/autocomplete/hooks/use_field_value_autocomplete.ts#L31) | - | | | [field_value_match.tsx#L19](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/autocomplete/field_value_match.tsx#L19) | - | | | [field_value_match.tsx#L30](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/autocomplete/field_value_match.tsx#L30) | - | +| | [query.ts#L13](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/lib/detection_engine/reference_rules/query.ts#L13) | - | +| | [query.ts#L53](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/lib/detection_engine/reference_rules/query.ts#L53) | - | | | [model.ts#L8](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/sourcerer/model.ts#L8) | - | | | [model.ts#L30](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/sourcerer/model.ts#L30) | - | | | [index.tsx#L33](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/rules/severity_mapping/index.tsx#L33) | - | @@ -1913,18 +1835,22 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | | [index.tsx#L242](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/rules/risk_score_mapping/index.tsx#L242) | - | | | [index.tsx#L12](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/rules/autocomplete_field/index.tsx#L12) | - | | | [index.tsx#L35](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/rules/autocomplete_field/index.tsx#L35) | - | -| | [index.tsx#L14](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/components/flyout/index.tsx#L14) | - | -| | [index.tsx#L30](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/components/flyout/index.tsx#L30) | - | -| | [index.tsx#L27](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/app/home/index.tsx#L27) | - | -| | [index.tsx#L44](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/app/home/index.tsx#L44) | - | +| | [index.tsx#L13](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/components/flyout/index.tsx#L13) | - | +| | [index.tsx#L23](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/components/flyout/index.tsx#L23) | - | +| | [index.tsx#L13](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/app/home/template_wrapper/bottom_bar/index.tsx#L13) | - | +| | [index.tsx#L25](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/app/home/template_wrapper/bottom_bar/index.tsx#L25) | - | +| | [index.tsx#L12](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/app/home/template_wrapper/index.tsx#L12) | - | +| | [index.tsx#L66](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/app/home/template_wrapper/index.tsx#L66) | - | +| | [index.tsx#L12](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/app/home/index.tsx#L12) | - | +| | [index.tsx#L26](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/app/home/index.tsx#L26) | - | | | [routes.tsx#L13](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/app/routes.tsx#L13) | - | | | [routes.tsx#L23](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/app/routes.tsx#L23) | - | | | [app.tsx#L14](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/app/app.tsx#L14) | - | -| | [app.tsx#L33](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/app/app.tsx#L33) | - | -| | [app.tsx#L73](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/app/app.tsx#L73) | - | +| | [app.tsx#L32](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/app/app.tsx#L32) | - | +| | [app.tsx#L81](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/app/app.tsx#L81) | - | | | [sender.ts#L10](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/lib/telemetry/sender.ts#L10) | 7.16 | -| | [sender.ts#L457](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/lib/telemetry/sender.ts#L457) | 7.16 | -| | [sender.ts#L476](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/lib/telemetry/sender.ts#L476) | 7.16 | +| | [sender.ts#L462](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/lib/telemetry/sender.ts#L462) | 7.16 | +| | [sender.ts#L481](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/lib/telemetry/sender.ts#L481) | 7.16 | | | [types.ts#L55](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/lib/detection_engine/types.ts#L55) | 7.16 | | | [types.ts#L111](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/lib/detection_engine/types.ts#L111) | 7.16 | @@ -1964,7 +1890,8 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | | [entity_index_expression.tsx#L87](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/entity_index_expression.tsx#L87) | - | | | [entity_by_expression.tsx#L15](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/entity_by_expression.tsx#L15) | - | | | [entity_by_expression.tsx#L21](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/entity_by_expression.tsx#L21) | - | -| | [entity_by_expression.tsx#L45](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/entity_by_expression.tsx#L45) | - | +| | [entity_by_expression.tsx#L26](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/entity_by_expression.tsx#L26) | - | +| | [entity_by_expression.tsx#L26](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/entity_by_expression.tsx#L26) | - | | | [entity_by_expression.tsx#L52](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/entity_by_expression.tsx#L52) | - | | | [boundary_index_expression.tsx#L19](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/boundary_index_expression.tsx#L19) | - | | | [boundary_index_expression.tsx#L53](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/boundary_index_expression.tsx#L53) | - | @@ -1989,7 +1916,8 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | | [entity_index_expression.tsx#L87](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/entity_index_expression.tsx#L87) | - | | | [entity_by_expression.tsx#L15](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/entity_by_expression.tsx#L15) | - | | | [entity_by_expression.tsx#L21](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/entity_by_expression.tsx#L21) | - | -| | [entity_by_expression.tsx#L45](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/entity_by_expression.tsx#L45) | - | +| | [entity_by_expression.tsx#L26](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/entity_by_expression.tsx#L26) | - | +| | [entity_by_expression.tsx#L26](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/entity_by_expression.tsx#L26) | - | | | [entity_by_expression.tsx#L52](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/entity_by_expression.tsx#L52) | - | | | [boundary_index_expression.tsx#L19](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/boundary_index_expression.tsx#L19) | - | | | [boundary_index_expression.tsx#L53](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/boundary_index_expression.tsx#L53) | - | @@ -2027,7 +1955,8 @@ warning: This document is auto-generated and is meant to be viewed inside our ex | | [entity_index_expression.tsx#L87](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/entity_index_expression.tsx#L87) | - | | | [entity_by_expression.tsx#L15](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/entity_by_expression.tsx#L15) | - | | | [entity_by_expression.tsx#L21](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/entity_by_expression.tsx#L21) | - | -| | [entity_by_expression.tsx#L45](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/entity_by_expression.tsx#L45) | - | +| | [entity_by_expression.tsx#L26](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/entity_by_expression.tsx#L26) | - | +| | [entity_by_expression.tsx#L26](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/entity_by_expression.tsx#L26) | - | | | [entity_by_expression.tsx#L52](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/entity_by_expression.tsx#L52) | - | | | [boundary_index_expression.tsx#L19](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/boundary_index_expression.tsx#L19) | - | | | [boundary_index_expression.tsx#L53](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/boundary_index_expression.tsx#L53) | - | @@ -2038,6 +1967,41 @@ warning: This document is auto-generated and is meant to be viewed inside our ex +## timelines + +| Deprecated API | Reference location | Remove By | +| ---------------|-----------|-----------| +| | [index.ts#L8](https://github.com/elastic/kibana/tree/master/x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts#L8) | - | +| | [index.ts#L86](https://github.com/elastic/kibana/tree/master/x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts#L86) | - | +| | [index.ts#L17](https://github.com/elastic/kibana/tree/master/x-pack/plugins/timelines/public/components/utils/keury/index.ts#L17) | - | +| | [index.ts#L22](https://github.com/elastic/kibana/tree/master/x-pack/plugins/timelines/public/components/utils/keury/index.ts#L22) | - | +| | [index.ts#L37](https://github.com/elastic/kibana/tree/master/x-pack/plugins/timelines/public/components/utils/keury/index.ts#L37) | - | +| | [index.ts#L80](https://github.com/elastic/kibana/tree/master/x-pack/plugins/timelines/public/components/utils/keury/index.ts#L80) | - | +| | [helpers.tsx#L20](https://github.com/elastic/kibana/tree/master/x-pack/plugins/timelines/public/components/t_grid/helpers.tsx#L20) | - | +| | [helpers.tsx#L153](https://github.com/elastic/kibana/tree/master/x-pack/plugins/timelines/public/components/t_grid/helpers.tsx#L153) | - | +| | [index.tsx#L31](https://github.com/elastic/kibana/tree/master/x-pack/plugins/timelines/public/components/t_grid/integrated/index.tsx#L31) | - | +| | [index.tsx#L121](https://github.com/elastic/kibana/tree/master/x-pack/plugins/timelines/public/components/t_grid/integrated/index.tsx#L121) | - | +| | [index_pattern.ts#L8](https://github.com/elastic/kibana/tree/master/x-pack/plugins/timelines/public/mock/index_pattern.ts#L8) | - | +| | [index_pattern.ts#L10](https://github.com/elastic/kibana/tree/master/x-pack/plugins/timelines/public/mock/index_pattern.ts#L10) | - | +| | [index.d.ts#L1](https://github.com/elastic/kibana/tree/master/x-pack/plugins/timelines/target/types/common/search_strategy/index_fields/index.d.ts#L1) | - | +| | [index.d.ts#L66](https://github.com/elastic/kibana/tree/master/x-pack/plugins/timelines/target/types/common/search_strategy/index_fields/index.d.ts#L66) | - | +| | [index.ts#L8](https://github.com/elastic/kibana/tree/master/x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts#L8) | - | +| | [index.ts#L86](https://github.com/elastic/kibana/tree/master/x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts#L86) | - | +| | [index.ts#L17](https://github.com/elastic/kibana/tree/master/x-pack/plugins/timelines/public/components/utils/keury/index.ts#L17) | - | +| | [index.ts#L22](https://github.com/elastic/kibana/tree/master/x-pack/plugins/timelines/public/components/utils/keury/index.ts#L22) | - | +| | [index.ts#L37](https://github.com/elastic/kibana/tree/master/x-pack/plugins/timelines/public/components/utils/keury/index.ts#L37) | - | +| | [index.ts#L80](https://github.com/elastic/kibana/tree/master/x-pack/plugins/timelines/public/components/utils/keury/index.ts#L80) | - | +| | [helpers.tsx#L20](https://github.com/elastic/kibana/tree/master/x-pack/plugins/timelines/public/components/t_grid/helpers.tsx#L20) | - | +| | [helpers.tsx#L153](https://github.com/elastic/kibana/tree/master/x-pack/plugins/timelines/public/components/t_grid/helpers.tsx#L153) | - | +| | [index.tsx#L31](https://github.com/elastic/kibana/tree/master/x-pack/plugins/timelines/public/components/t_grid/integrated/index.tsx#L31) | - | +| | [index.tsx#L121](https://github.com/elastic/kibana/tree/master/x-pack/plugins/timelines/public/components/t_grid/integrated/index.tsx#L121) | - | +| | [index_pattern.ts#L8](https://github.com/elastic/kibana/tree/master/x-pack/plugins/timelines/public/mock/index_pattern.ts#L8) | - | +| | [index_pattern.ts#L10](https://github.com/elastic/kibana/tree/master/x-pack/plugins/timelines/public/mock/index_pattern.ts#L10) | - | +| | [index.d.ts#L1](https://github.com/elastic/kibana/tree/master/x-pack/plugins/timelines/target/types/common/search_strategy/index_fields/index.d.ts#L1) | - | +| | [index.d.ts#L66](https://github.com/elastic/kibana/tree/master/x-pack/plugins/timelines/target/types/common/search_strategy/index_fields/index.d.ts#L66) | - | + + + ## transform | Deprecated API | Reference location | Remove By | diff --git a/api_docs/dev_tools.mdx b/api_docs/dev_tools.mdx index 89d67f54866f2..5d58ee25d5c32 100644 --- a/api_docs/dev_tools.mdx +++ b/api_docs/dev_tools.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'devTools'] warning: 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. --- - import devToolsObj from './dev_tools.json'; diff --git a/api_docs/discover.json b/api_docs/discover.json index 48ed4d51abc67..e6a83719f5b88 100644 --- a/api_docs/discover.json +++ b/api_docs/discover.json @@ -70,6 +70,300 @@ } ], "interfaces": [ + { + "parentPluginId": "discover", + "id": "def-public.DiscoverAppLocatorParams", + "type": "Interface", + "tags": [], + "label": "DiscoverAppLocatorParams", + "description": [], + "signature": [ + { + "pluginId": "discover", + "scope": "public", + "docId": "kibDiscoverPluginApi", + "section": "def-public.DiscoverAppLocatorParams", + "text": "DiscoverAppLocatorParams" + }, + " extends ", + { + "pluginId": "kibanaUtils", + "scope": "common", + "docId": "kibKibanaUtilsPluginApi", + "section": "def-common.SerializableState", + "text": "SerializableState" + } + ], + "source": { + "path": "src/plugins/discover/public/locator.ts", + "lineNumber": 17 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "discover", + "id": "def-public.DiscoverAppLocatorParams.savedSearchId", + "type": "string", + "tags": [], + "label": "savedSearchId", + "description": [ + "\nOptionally set saved search ID." + ], + "signature": [ + "string | undefined" + ], + "source": { + "path": "src/plugins/discover/public/locator.ts", + "lineNumber": 21 + }, + "deprecated": false + }, + { + "parentPluginId": "discover", + "id": "def-public.DiscoverAppLocatorParams.indexPatternId", + "type": "string", + "tags": [], + "label": "indexPatternId", + "description": [ + "\nOptionally set index pattern ID." + ], + "signature": [ + "string | undefined" + ], + "source": { + "path": "src/plugins/discover/public/locator.ts", + "lineNumber": 26 + }, + "deprecated": false + }, + { + "parentPluginId": "discover", + "id": "def-public.DiscoverAppLocatorParams.timeRange", + "type": "Object", + "tags": [], + "label": "timeRange", + "description": [ + "\nOptionally set the time range in the time picker." + ], + "signature": [ + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataQueryPluginApi", + "section": "def-common.TimeRange", + "text": "TimeRange" + }, + " | undefined" + ], + "source": { + "path": "src/plugins/discover/public/locator.ts", + "lineNumber": 31 + }, + "deprecated": false + }, + { + "parentPluginId": "discover", + "id": "def-public.DiscoverAppLocatorParams.refreshInterval", + "type": "CompoundType", + "tags": [], + "label": "refreshInterval", + "description": [ + "\nOptionally set the refresh interval." + ], + "signature": [ + "(", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataQueryPluginApi", + "section": "def-common.RefreshInterval", + "text": "RefreshInterval" + }, + " & ", + { + "pluginId": "kibanaUtils", + "scope": "common", + "docId": "kibKibanaUtilsPluginApi", + "section": "def-common.SerializableState", + "text": "SerializableState" + }, + ") | undefined" + ], + "source": { + "path": "src/plugins/discover/public/locator.ts", + "lineNumber": 36 + }, + "deprecated": false + }, + { + "parentPluginId": "discover", + "id": "def-public.DiscoverAppLocatorParams.filters", + "type": "Array", + "tags": [], + "label": "filters", + "description": [ + "\nOptionally apply filters." + ], + "signature": [ + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataPluginApi", + "section": "def-common.Filter", + "text": "Filter" + }, + "[] | undefined" + ], + "source": { + "path": "src/plugins/discover/public/locator.ts", + "lineNumber": 41 + }, + "deprecated": false + }, + { + "parentPluginId": "discover", + "id": "def-public.DiscoverAppLocatorParams.query", + "type": "Object", + "tags": [], + "label": "query", + "description": [ + "\nOptionally set a query." + ], + "signature": [ + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataQueryPluginApi", + "section": "def-common.Query", + "text": "Query" + }, + " | undefined" + ], + "source": { + "path": "src/plugins/discover/public/locator.ts", + "lineNumber": 46 + }, + "deprecated": false + }, + { + "parentPluginId": "discover", + "id": "def-public.DiscoverAppLocatorParams.useHash", + "type": "CompoundType", + "tags": [], + "label": "useHash", + "description": [ + "\nIf not given, will use the uiSettings configuration for `storeInSessionStorage`. useHash determines\nwhether to hash the data in the url to avoid url length issues." + ], + "signature": [ + "boolean | undefined" + ], + "source": { + "path": "src/plugins/discover/public/locator.ts", + "lineNumber": 52 + }, + "deprecated": false + }, + { + "parentPluginId": "discover", + "id": "def-public.DiscoverAppLocatorParams.searchSessionId", + "type": "string", + "tags": [], + "label": "searchSessionId", + "description": [ + "\nBackground search session id" + ], + "signature": [ + "string | undefined" + ], + "source": { + "path": "src/plugins/discover/public/locator.ts", + "lineNumber": 57 + }, + "deprecated": false + }, + { + "parentPluginId": "discover", + "id": "def-public.DiscoverAppLocatorParams.columns", + "type": "Array", + "tags": [], + "label": "columns", + "description": [ + "\nColumns displayed in the table" + ], + "signature": [ + "string[] | undefined" + ], + "source": { + "path": "src/plugins/discover/public/locator.ts", + "lineNumber": 62 + }, + "deprecated": false + }, + { + "parentPluginId": "discover", + "id": "def-public.DiscoverAppLocatorParams.interval", + "type": "string", + "tags": [], + "label": "interval", + "description": [ + "\nUsed interval of the histogram" + ], + "signature": [ + "string | undefined" + ], + "source": { + "path": "src/plugins/discover/public/locator.ts", + "lineNumber": 67 + }, + "deprecated": false + }, + { + "parentPluginId": "discover", + "id": "def-public.DiscoverAppLocatorParams.sort", + "type": "CompoundType", + "tags": [], + "label": "sort", + "description": [ + "\nArray of the used sorting [[field,direction],...]" + ], + "signature": [ + "(string[][] & ", + { + "pluginId": "kibanaUtils", + "scope": "common", + "docId": "kibKibanaUtilsPluginApi", + "section": "def-common.SerializableState", + "text": "SerializableState" + }, + ") | undefined" + ], + "source": { + "path": "src/plugins/discover/public/locator.ts", + "lineNumber": 72 + }, + "deprecated": false + }, + { + "parentPluginId": "discover", + "id": "def-public.DiscoverAppLocatorParams.savedQuery", + "type": "string", + "tags": [], + "label": "savedQuery", + "description": [ + "\nid of the used saved query" + ], + "signature": [ + "string | undefined" + ], + "source": { + "path": "src/plugins/discover/public/locator.ts", + "lineNumber": 77 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, { "parentPluginId": "discover", "id": "def-public.DiscoverUrlGeneratorState", @@ -895,6 +1189,38 @@ "deprecated": false, "initialIsOpen": false }, + { + "parentPluginId": "discover", + "id": "def-public.DiscoverAppLocator", + "type": "Type", + "tags": [], + "label": "DiscoverAppLocator", + "description": [], + "signature": [ + { + "pluginId": "share", + "scope": "common", + "docId": "kibSharePluginApi", + "section": "def-common.LocatorPublic", + "text": "LocatorPublic" + }, + "<", + { + "pluginId": "discover", + "scope": "public", + "docId": "kibDiscoverPluginApi", + "section": "def-public.DiscoverAppLocatorParams", + "text": "DiscoverAppLocatorParams" + }, + ">" + ], + "source": { + "path": "src/plugins/discover/public/locator.ts", + "lineNumber": 80 + }, + "deprecated": false, + "initialIsOpen": false + }, { "parentPluginId": "discover", "id": "def-public.SEARCH_EMBEDDABLE_TYPE", @@ -923,7 +1249,7 @@ "description": [], "source": { "path": "src/plugins/discover/public/plugin.tsx", - "lineNumber": 76 + "lineNumber": 78 }, "deprecated": false, "children": [ @@ -943,7 +1269,32 @@ ], "source": { "path": "src/plugins/discover/public/plugin.tsx", - "lineNumber": 77 + "lineNumber": 79 + }, + "deprecated": false + }, + { + "parentPluginId": "discover", + "id": "def-public.DiscoverSetup.locator", + "type": "Object", + "tags": [], + "label": "locator", + "description": [ + "\n`share` plugin URL locator for Discover app. Use it to generate links into\nDiscover application, for example, navigate:\n\n```ts\nawait plugins.discover.locator.navigate({\n savedSearchId: '571aaf70-4c88-11e8-b3d7-01146121b73d',\n indexPatternId: 'c367b774-a4c2-11ea-bb37-0242ac130002',\n timeRange: {\n to: 'now',\n from: 'now-15m',\n mode: 'relative',\n },\n});\n```\n\nGenerate a location:\n\n```ts\nconst location = await plugins.discover.locator.getLocation({\n savedSearchId: '571aaf70-4c88-11e8-b3d7-01146121b73d',\n indexPatternId: 'c367b774-a4c2-11ea-bb37-0242ac130002',\n timeRange: {\n to: 'now',\n from: 'now-15m',\n mode: 'relative',\n },\n});\n```" + ], + "signature": [ + { + "pluginId": "discover", + "scope": "public", + "docId": "kibDiscoverPluginApi", + "section": "def-public.DiscoverAppLocator", + "text": "DiscoverAppLocator" + }, + " | undefined" + ], + "source": { + "path": "src/plugins/discover/public/plugin.tsx", + "lineNumber": 118 }, "deprecated": false } @@ -960,7 +1311,7 @@ "description": [], "source": { "path": "src/plugins/discover/public/plugin.tsx", - "lineNumber": 87 + "lineNumber": 121 }, "deprecated": false, "children": [ @@ -982,7 +1333,7 @@ ], "source": { "path": "src/plugins/discover/public/plugin.tsx", - "lineNumber": 88 + "lineNumber": 122 }, "deprecated": false }, @@ -990,11 +1341,11 @@ "parentPluginId": "discover", "id": "def-public.DiscoverStart.urlGenerator", "type": "Object", - "tags": [], - "label": "urlGenerator", - "description": [ - "\n`share` plugin URL generator for Discover app. Use it to generate links into\nDiscover application, example:\n\n```ts\nconst url = await plugins.discover.urlGenerator.createUrl({\n savedSearchId: '571aaf70-4c88-11e8-b3d7-01146121b73d',\n indexPatternId: 'c367b774-a4c2-11ea-bb37-0242ac130002',\n timeRange: {\n to: 'now',\n from: 'now-15m',\n mode: 'relative',\n },\n});\n```" + "tags": [ + "deprecated" ], + "label": "urlGenerator", + "description": [], "signature": [ { "pluginId": "share", @@ -1007,7 +1358,48 @@ ], "source": { "path": "src/plugins/discover/public/plugin.tsx", - "lineNumber": 106 + "lineNumber": 127 + }, + "deprecated": true, + "references": [ + { + "plugin": "osquery", + "link": { + "path": "x-pack/plugins/osquery/public/scheduled_query_groups/scheduled_query_group_queries_table.tsx", + "lineNumber": 224 + } + }, + { + "plugin": "osquery", + "link": { + "path": "x-pack/plugins/osquery/public/common/hooks/use_discover_link.tsx", + "lineNumber": 21 + } + } + ] + }, + { + "parentPluginId": "discover", + "id": "def-public.DiscoverStart.locator", + "type": "Object", + "tags": [], + "label": "locator", + "description": [ + "\n`share` plugin URL locator for Discover app. Use it to generate links into\nDiscover application, for example, navigate:\n\n```ts\nawait plugins.discover.locator.navigate({\n savedSearchId: '571aaf70-4c88-11e8-b3d7-01146121b73d',\n indexPatternId: 'c367b774-a4c2-11ea-bb37-0242ac130002',\n timeRange: {\n to: 'now',\n from: 'now-15m',\n mode: 'relative',\n },\n});\n```\n\nGenerate a location:\n\n```ts\nconst location = await plugins.discover.locator.getLocation({\n savedSearchId: '571aaf70-4c88-11e8-b3d7-01146121b73d',\n indexPatternId: 'c367b774-a4c2-11ea-bb37-0242ac130002',\n timeRange: {\n to: 'now',\n from: 'now-15m',\n mode: 'relative',\n },\n});\n```" + ], + "signature": [ + { + "pluginId": "discover", + "scope": "public", + "docId": "kibDiscoverPluginApi", + "section": "def-public.DiscoverAppLocator", + "text": "DiscoverAppLocator" + }, + " | undefined" + ], + "source": { + "path": "src/plugins/discover/public/plugin.tsx", + "lineNumber": 159 }, "deprecated": false } @@ -1234,6 +1626,23 @@ "deprecated": false, "initialIsOpen": false }, + { + "parentPluginId": "discover", + "id": "def-common.SHOW_MULTIFIELDS", + "type": "string", + "tags": [], + "label": "SHOW_MULTIFIELDS", + "description": [], + "signature": [ + "\"discover:showMultiFields\"" + ], + "source": { + "path": "src/plugins/discover/common/index.ts", + "lineNumber": 22 + }, + "deprecated": false, + "initialIsOpen": false + }, { "parentPluginId": "discover", "id": "def-common.SORT_DEFAULT_ORDER_SETTING", diff --git a/api_docs/discover.mdx b/api_docs/discover.mdx index d4720530b5848..610ec5d90f267 100644 --- a/api_docs/discover.mdx +++ b/api_docs/discover.mdx @@ -8,18 +8,17 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'discover'] warning: 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. --- - import discoverObj from './discover.json'; +This plugin contains the Discover application and the saved search embeddable. - - +Contact [Kibana App](https://github.com/orgs/elastic/teams/kibana-app) for questions regarding this plugin. **Code health stats** | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 64 | 0 | 51 | 6 | +| 81 | 0 | 55 | 6 | ## Client diff --git a/api_docs/discover_enhanced.json b/api_docs/discover_enhanced.json index e575671b5ef22..254ca8afc3fa0 100644 --- a/api_docs/discover_enhanced.json +++ b/api_docs/discover_enhanced.json @@ -441,23 +441,17 @@ }, { "parentPluginId": "discoverEnhanced", - "id": "def-public.ExploreDataChartAction.getUrl", + "id": "def-public.ExploreDataChartAction.getLocation", "type": "Function", "tags": [], - "label": "getUrl", + "label": "getLocation", "description": [], "signature": [ "(context: ", "ExploreDataChartActionContext", ") => Promise<", - { - "pluginId": "share", - "scope": "public", - "docId": "kibSharePluginApi", - "section": "def-public.KibanaURL", - "text": "KibanaURL" - }, - ">" + "KibanaLocation", + ">" ], "source": { "path": "x-pack/plugins/discover_enhanced/public/actions/explore_data/explore_data_chart_action.ts", @@ -467,7 +461,7 @@ "children": [ { "parentPluginId": "discoverEnhanced", - "id": "def-public.ExploreDataChartAction.getUrl.$1", + "id": "def-public.ExploreDataChartAction.getLocation.$1", "type": "Object", "tags": [], "label": "context", @@ -573,21 +567,15 @@ }, { "parentPluginId": "discoverEnhanced", - "id": "def-public.ExploreDataContextMenuAction.getUrl", + "id": "def-public.ExploreDataContextMenuAction.getLocation", "type": "Function", "tags": [], - "label": "getUrl", + "label": "getLocation", "description": [], "signature": [ "(context: EmbeddableQueryContext) => Promise<", - { - "pluginId": "share", - "scope": "public", - "docId": "kibSharePluginApi", - "section": "def-public.KibanaURL", - "text": "KibanaURL" - }, - ">" + "KibanaLocation", + ">" ], "source": { "path": "x-pack/plugins/discover_enhanced/public/actions/explore_data/explore_data_context_menu_action.ts", @@ -597,7 +585,7 @@ "children": [ { "parentPluginId": "discoverEnhanced", - "id": "def-public.ExploreDataContextMenuAction.getUrl.$1", + "id": "def-public.ExploreDataContextMenuAction.getLocation.$1", "type": "Object", "tags": [], "label": "context", @@ -607,7 +595,7 @@ ], "source": { "path": "x-pack/plugins/discover_enhanced/public/actions/explore_data/explore_data_context_menu_action.ts", - "lineNumber": 43 + "lineNumber": 44 }, "deprecated": false, "isRequired": true diff --git a/api_docs/discover_enhanced.mdx b/api_docs/discover_enhanced.mdx index fb8842cd56bfe..3f9ab4d4068a7 100644 --- a/api_docs/discover_enhanced.mdx +++ b/api_docs/discover_enhanced.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'discoverEnhanced'] warning: 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. --- - import discoverEnhancedObj from './discover_enhanced.json'; diff --git a/api_docs/embeddable.json b/api_docs/embeddable.json index d560148f35b13..cc8977dbff87d 100644 --- a/api_docs/embeddable.json +++ b/api_docs/embeddable.json @@ -29,7 +29,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", - "lineNumber": 23 + "lineNumber": 24 }, "deprecated": false, "children": [ @@ -45,7 +45,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", - "lineNumber": 24 + "lineNumber": 25 }, "deprecated": false }, @@ -61,7 +61,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", - "lineNumber": 25 + "lineNumber": 26 }, "deprecated": false }, @@ -77,7 +77,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", - "lineNumber": 27 + "lineNumber": 28 }, "deprecated": false, "children": [ @@ -151,7 +151,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", - "lineNumber": 28 + "lineNumber": 29 }, "deprecated": false, "isRequired": true @@ -218,7 +218,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", - "lineNumber": 29 + "lineNumber": 30 }, "deprecated": false, "isRequired": true @@ -241,7 +241,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", - "lineNumber": 30 + "lineNumber": 31 }, "deprecated": false, "isRequired": true @@ -264,7 +264,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", - "lineNumber": 31 + "lineNumber": 32 }, "deprecated": false, "isRequired": true @@ -281,10 +281,29 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", - "lineNumber": 32 + "lineNumber": 33 }, "deprecated": false, "isRequired": true + }, + { + "parentPluginId": "embeddable", + "id": "def-public.AddPanelAction.Unnamed.$6", + "type": "Function", + "tags": [], + "label": "reportUiCounter", + "description": [], + "signature": [ + "((appName: string, type: ", + "UiCounterMetricType", + ", eventNames: string | string[], count?: number | undefined) => void) | undefined" + ], + "source": { + "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", + "lineNumber": 34 + }, + "deprecated": false, + "isRequired": false } ], "returnComment": [] @@ -301,7 +320,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", - "lineNumber": 35 + "lineNumber": 37 }, "deprecated": false, "children": [], @@ -319,7 +338,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", - "lineNumber": 41 + "lineNumber": 43 }, "deprecated": false, "children": [], @@ -345,7 +364,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", - "lineNumber": 45 + "lineNumber": 47 }, "deprecated": false, "children": [ @@ -368,7 +387,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", - "lineNumber": 45 + "lineNumber": 47 }, "deprecated": false, "isRequired": true @@ -396,7 +415,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", - "lineNumber": 50 + "lineNumber": 52 }, "deprecated": false, "children": [ @@ -419,7 +438,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", - "lineNumber": 50 + "lineNumber": 52 }, "deprecated": false, "isRequired": true @@ -3309,7 +3328,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/embeddable_panel.tsx", - "lineNumber": 89 + "lineNumber": 108 }, "deprecated": false, "children": [ @@ -3325,7 +3344,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/embeddable_panel.tsx", - "lineNumber": 96 + "lineNumber": 115 }, "deprecated": false, "children": [ @@ -3341,7 +3360,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/embeddable_panel.tsx", - "lineNumber": 96 + "lineNumber": 115 }, "deprecated": false, "isRequired": true @@ -3361,7 +3380,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/embeddable_panel.tsx", - "lineNumber": 153 + "lineNumber": 182 }, "deprecated": false, "children": [], @@ -3379,7 +3398,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/embeddable_panel.tsx", - "lineNumber": 187 + "lineNumber": 216 }, "deprecated": false, "children": [], @@ -3397,7 +3416,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/embeddable_panel.tsx", - "lineNumber": 199 + "lineNumber": 228 }, "deprecated": false, "children": [ @@ -3413,7 +3432,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/embeddable_panel.tsx", - "lineNumber": 199 + "lineNumber": 228 }, "deprecated": false, "isRequired": true @@ -3433,7 +3452,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/embeddable_panel.tsx", - "lineNumber": 203 + "lineNumber": 232 }, "deprecated": false, "children": [ @@ -3449,7 +3468,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/embeddable_panel.tsx", - "lineNumber": 203 + "lineNumber": 232 }, "deprecated": false, "isRequired": true @@ -3469,7 +3488,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/embeddable_panel.tsx", - "lineNumber": 209 + "lineNumber": 238 }, "deprecated": false, "children": [], @@ -3487,7 +3506,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/embeddable_panel.tsx", - "lineNumber": 251 + "lineNumber": 285 }, "deprecated": false, "children": [], @@ -3505,7 +3524,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/embeddable_panel.tsx", - "lineNumber": 274 + "lineNumber": 308 }, "deprecated": false, "children": [], @@ -4708,7 +4727,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_renderer.tsx", - "lineNumber": 82 + "lineNumber": 142 }, "deprecated": false, "children": [ @@ -4733,7 +4752,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_renderer.tsx", - "lineNumber": 83 + "lineNumber": 143 }, "deprecated": false, "isRequired": true @@ -5555,7 +5574,9 @@ "section": "def-public.NotificationsStart", "text": "NotificationsStart" }, - "; SavedObjectFinder: React.ComponentType; showCreateNewMenu?: boolean | undefined; }) => ", + "; SavedObjectFinder: React.ComponentType; showCreateNewMenu?: boolean | undefined; reportUiCounter?: ((appName: string, type: ", + "UiCounterMetricType", + ", eventNames: string | string[], count?: number | undefined) => void) | undefined; }) => ", { "pluginId": "core", "scope": "public", @@ -5566,7 +5587,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/open_add_panel_flyout.tsx", - "lineNumber": 16 + "lineNumber": 17 }, "deprecated": false, "children": [ @@ -5579,7 +5600,7 @@ "description": [], "source": { "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/open_add_panel_flyout.tsx", - "lineNumber": 16 + "lineNumber": 17 }, "deprecated": false, "children": [ @@ -5618,7 +5639,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/open_add_panel_flyout.tsx", - "lineNumber": 17 + "lineNumber": 18 }, "deprecated": false }, @@ -5692,7 +5713,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/open_add_panel_flyout.tsx", - "lineNumber": 18 + "lineNumber": 19 }, "deprecated": false, "returnComment": [], @@ -5774,7 +5795,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/open_add_panel_flyout.tsx", - "lineNumber": 19 + "lineNumber": 20 }, "deprecated": false, "returnComment": [], @@ -5798,7 +5819,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/open_add_panel_flyout.tsx", - "lineNumber": 20 + "lineNumber": 21 }, "deprecated": false }, @@ -5820,7 +5841,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/open_add_panel_flyout.tsx", - "lineNumber": 21 + "lineNumber": 22 }, "deprecated": false }, @@ -5836,7 +5857,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/open_add_panel_flyout.tsx", - "lineNumber": 22 + "lineNumber": 23 }, "deprecated": false }, @@ -5852,7 +5873,25 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/open_add_panel_flyout.tsx", - "lineNumber": 23 + "lineNumber": 24 + }, + "deprecated": false + }, + { + "parentPluginId": "embeddable", + "id": "def-public.openAddPanelFlyout.$1.options.reportUiCounter", + "type": "Function", + "tags": [], + "label": "reportUiCounter", + "description": [], + "signature": [ + "((appName: string, type: ", + "UiCounterMetricType", + ", eventNames: string | string[], count?: number | undefined) => void) | undefined" + ], + "source": { + "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/open_add_panel_flyout.tsx", + "lineNumber": 25 }, "deprecated": false } @@ -5862,6 +5901,67 @@ "returnComment": [], "initialIsOpen": false }, + { + "parentPluginId": "embeddable", + "id": "def-public.useEmbeddableFactory", + "type": "Function", + "tags": [], + "label": "useEmbeddableFactory", + "description": [], + "signature": [ + "({\n input,\n factory,\n onInputUpdated,\n}: EmbeddableRendererWithFactory) => readonly [", + { + "pluginId": "embeddable", + "scope": "public", + "docId": "kibEmbeddablePluginApi", + "section": "def-public.ErrorEmbeddable", + "text": "ErrorEmbeddable" + }, + " | ", + { + "pluginId": "embeddable", + "scope": "public", + "docId": "kibEmbeddablePluginApi", + "section": "def-public.IEmbeddable", + "text": "IEmbeddable" + }, + " | undefined, boolean, string | undefined]" + ], + "source": { + "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_renderer.tsx", + "lineNumber": 43 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "embeddable", + "id": "def-public.useEmbeddableFactory.$1", + "type": "Object", + "tags": [], + "label": "{\n input,\n factory,\n onInputUpdated,\n}", + "description": [], + "signature": [ + "EmbeddableRendererWithFactory" + ], + "source": { + "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_renderer.tsx", + "lineNumber": 43 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, { "parentPluginId": "embeddable", "id": "def-public.withEmbeddableSubscription", @@ -8923,7 +9023,7 @@ ], "source": { "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", - "lineNumber": 17 + "lineNumber": 18 }, "deprecated": false, "initialIsOpen": false diff --git a/api_docs/embeddable.mdx b/api_docs/embeddable.mdx index 46a877be6ac24..28ae1645b7073 100644 --- a/api_docs/embeddable.mdx +++ b/api_docs/embeddable.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'embeddable'] warning: 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. --- - import embeddableObj from './embeddable.json'; @@ -19,7 +18,7 @@ import embeddableObj from './embeddable.json'; | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 449 | 4 | 379 | 3 | +| 453 | 4 | 383 | 3 | ## Client diff --git a/api_docs/embeddable_enhanced.mdx b/api_docs/embeddable_enhanced.mdx index 8680c6807bbca..cbd087908e007 100644 --- a/api_docs/embeddable_enhanced.mdx +++ b/api_docs/embeddable_enhanced.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'embeddableEnhanced'] warning: 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. --- - import embeddableEnhancedObj from './embeddable_enhanced.json'; diff --git a/api_docs/encrypted_saved_objects.mdx b/api_docs/encrypted_saved_objects.mdx index e152ec4aec9a8..02cbf225c355d 100644 --- a/api_docs/encrypted_saved_objects.mdx +++ b/api_docs/encrypted_saved_objects.mdx @@ -8,12 +8,11 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'encryptedSavedObjects'] warning: 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. --- - import encryptedSavedObjectsObj from './encrypted_saved_objects.json'; +This plugin provides encryption and decryption utilities for saved objects containing sensitive information. - - +Contact [Platform Security](https://github.com/orgs/elastic/teams/kibana-security) for questions regarding this plugin. **Code health stats** diff --git a/api_docs/enterprise_search.mdx b/api_docs/enterprise_search.mdx index 8156918dcefe4..7be4954e1e416 100644 --- a/api_docs/enterprise_search.mdx +++ b/api_docs/enterprise_search.mdx @@ -8,12 +8,11 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'enterpriseSearch'] warning: 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. --- - import enterpriseSearchObj from './enterprise_search.json'; +Adds dashboards for discovering and managing Enterprise Search products - - +Contact [Enterprise Search](https://github.com/orgs/elastic/teams/enterprise-search-frontend) for questions regarding this plugin. **Code health stats** diff --git a/api_docs/es_ui_shared.json b/api_docs/es_ui_shared.json index e7117e6be62a0..73cc06d346e97 100644 --- a/api_docs/es_ui_shared.json +++ b/api_docs/es_ui_shared.json @@ -278,7 +278,7 @@ ], "source": { "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/authorization_provider.tsx", - "lineNumber": 49 + "lineNumber": 47 }, "deprecated": false, "children": [ @@ -294,7 +294,7 @@ ], "source": { "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/authorization_provider.tsx", - "lineNumber": 49 + "lineNumber": 47 }, "deprecated": false, "isRequired": true @@ -415,6 +415,80 @@ "returnComment": [], "initialIsOpen": false }, + { + "parentPluginId": "esUiShared", + "id": "def-public.PageError", + "type": "Function", + "tags": [], + "label": "PageError", + "description": [], + "signature": [ + "({ title, error, actions, isCentered, ...rest }: React.PropsWithChildren) => JSX.Element" + ], + "source": { + "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/page_error.tsx", + "lineNumber": 28 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "esUiShared", + "id": "def-public.PageError.$1", + "type": "CompoundType", + "tags": [], + "label": "{\n title,\n error,\n actions,\n isCentered,\n ...rest\n}", + "description": [], + "signature": [ + "React.PropsWithChildren" + ], + "source": { + "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/page_error.tsx", + "lineNumber": 28 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "esUiShared", + "id": "def-public.PageLoading", + "type": "Function", + "tags": [], + "label": "PageLoading", + "description": [], + "signature": [ + "({ children }: { children?: React.ReactNode; }) => JSX.Element" + ], + "source": { + "path": "src/plugins/es_ui_shared/public/components/page_loading/page_loading.tsx", + "lineNumber": 12 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "esUiShared", + "id": "def-public.PageLoading.$1", + "type": "Object", + "tags": [], + "label": "{ children }", + "description": [], + "signature": [ + "{ children?: React.ReactNode; }" + ], + "source": { + "path": "src/plugins/es_ui_shared/public/components/page_loading/page_loading.tsx", + "lineNumber": 12 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, { "parentPluginId": "esUiShared", "id": "def-public.SectionError", @@ -427,7 +501,7 @@ ], "source": { "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/section_error.tsx", - "lineNumber": 24 + "lineNumber": 19 }, "deprecated": false, "children": [ @@ -443,7 +517,7 @@ ], "source": { "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/section_error.tsx", - "lineNumber": 24 + "lineNumber": 19 }, "deprecated": false, "isRequired": true @@ -591,7 +665,7 @@ ], "source": { "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/authorization_provider.tsx", - "lineNumber": 35 + "lineNumber": 33 }, "deprecated": false, "children": [], @@ -735,8 +809,8 @@ "label": "Error", "description": [], "source": { - "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/section_error.tsx", - "lineNumber": 12 + "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/types.ts", + "lineNumber": 18 }, "deprecated": false, "children": [ @@ -748,8 +822,8 @@ "label": "error", "description": [], "source": { - "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/section_error.tsx", - "lineNumber": 13 + "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/types.ts", + "lineNumber": 19 }, "deprecated": false }, @@ -764,8 +838,8 @@ "string[] | undefined" ], "source": { - "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/section_error.tsx", - "lineNumber": 14 + "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/types.ts", + "lineNumber": 20 }, "deprecated": false }, @@ -780,8 +854,8 @@ "string | undefined" ], "source": { - "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/section_error.tsx", - "lineNumber": 15 + "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/types.ts", + "lineNumber": 21 }, "deprecated": false } @@ -1349,7 +1423,7 @@ ], "source": { "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/authorization_provider.tsx", - "lineNumber": 33 + "lineNumber": 31 }, "deprecated": false, "initialIsOpen": false diff --git a/api_docs/es_ui_shared.mdx b/api_docs/es_ui_shared.mdx index e317299f0b48a..0db5869f46abf 100644 --- a/api_docs/es_ui_shared.mdx +++ b/api_docs/es_ui_shared.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'esUiShared'] warning: 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. --- - import esUiSharedObj from './es_ui_shared.json'; @@ -19,7 +18,7 @@ import esUiSharedObj from './es_ui_shared.json'; | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 88 | 4 | 86 | 1 | +| 92 | 4 | 90 | 1 | ## Client diff --git a/api_docs/event_log.json b/api_docs/event_log.json index 1d5605105c7c1..c36b74d949093 100644 --- a/api_docs/event_log.json +++ b/api_docs/event_log.json @@ -687,7 +687,7 @@ "label": "logEvent", "description": [], "signature": [ - "(properties: DeepPartial[] | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; tags?: string[] | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; url?: string | undefined; end?: string | undefined; category?: string[] | undefined; code?: string | undefined; action?: string | undefined; kind?: string | undefined; original?: string | undefined; severity?: number | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; outcome?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ description?: string | undefined; id?: 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; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined) => void" + "(properties: DeepPartial[] | 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<{ scheduled?: string | undefined; schedule_delay?: number | undefined; } & {}> | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; tags?: string[] | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; url?: string | undefined; end?: string | undefined; category?: string[] | undefined; code?: string | undefined; action?: string | undefined; kind?: string | undefined; original?: string | undefined; severity?: number | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; outcome?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ description?: string | undefined; id?: 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; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined) => void" ], "source": { "path": "x-pack/plugins/event_log/server/types.ts", @@ -703,7 +703,7 @@ "label": "properties", "description": [], "signature": [ - "DeepPartial[] | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; tags?: string[] | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; url?: string | undefined; end?: string | undefined; category?: string[] | undefined; code?: string | undefined; action?: string | undefined; kind?: string | undefined; original?: string | undefined; severity?: number | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; outcome?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ description?: string | undefined; id?: 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; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined" + "DeepPartial[] | 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<{ scheduled?: string | undefined; schedule_delay?: number | undefined; } & {}> | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; tags?: string[] | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; url?: string | undefined; end?: string | undefined; category?: string[] | undefined; code?: string | undefined; action?: string | undefined; kind?: string | undefined; original?: string | undefined; severity?: number | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; outcome?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ description?: string | undefined; id?: 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; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined" ], "source": { "path": "x-pack/plugins/event_log/server/types.ts", @@ -723,7 +723,7 @@ "label": "startTiming", "description": [], "signature": [ - "(event: DeepPartial[] | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; tags?: string[] | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; url?: string | undefined; end?: string | undefined; category?: string[] | undefined; code?: string | undefined; action?: string | undefined; kind?: string | undefined; original?: string | undefined; severity?: number | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; outcome?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ description?: string | undefined; id?: 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; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined) => void" + "(event: DeepPartial[] | 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<{ scheduled?: string | undefined; schedule_delay?: number | undefined; } & {}> | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; tags?: string[] | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; url?: string | undefined; end?: string | undefined; category?: string[] | undefined; code?: string | undefined; action?: string | undefined; kind?: string | undefined; original?: string | undefined; severity?: number | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; outcome?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ description?: string | undefined; id?: 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; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined) => void" ], "source": { "path": "x-pack/plugins/event_log/server/types.ts", @@ -739,7 +739,7 @@ "label": "event", "description": [], "signature": [ - "DeepPartial[] | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; tags?: string[] | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; url?: string | undefined; end?: string | undefined; category?: string[] | undefined; code?: string | undefined; action?: string | undefined; kind?: string | undefined; original?: string | undefined; severity?: number | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; outcome?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ description?: string | undefined; id?: 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; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined" + "DeepPartial[] | 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<{ scheduled?: string | undefined; schedule_delay?: number | undefined; } & {}> | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; tags?: string[] | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; url?: string | undefined; end?: string | undefined; category?: string[] | undefined; code?: string | undefined; action?: string | undefined; kind?: string | undefined; original?: string | undefined; severity?: number | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; outcome?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ description?: string | undefined; id?: 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; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined" ], "source": { "path": "x-pack/plugins/event_log/server/types.ts", @@ -759,7 +759,7 @@ "label": "stopTiming", "description": [], "signature": [ - "(event: DeepPartial[] | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; tags?: string[] | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; url?: string | undefined; end?: string | undefined; category?: string[] | undefined; code?: string | undefined; action?: string | undefined; kind?: string | undefined; original?: string | undefined; severity?: number | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; outcome?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ description?: string | undefined; id?: 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; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined) => void" + "(event: DeepPartial[] | 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<{ scheduled?: string | undefined; schedule_delay?: number | undefined; } & {}> | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; tags?: string[] | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; url?: string | undefined; end?: string | undefined; category?: string[] | undefined; code?: string | undefined; action?: string | undefined; kind?: string | undefined; original?: string | undefined; severity?: number | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; outcome?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ description?: string | undefined; id?: 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; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined) => void" ], "source": { "path": "x-pack/plugins/event_log/server/types.ts", @@ -775,7 +775,7 @@ "label": "event", "description": [], "signature": [ - "DeepPartial[] | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; tags?: string[] | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; url?: string | undefined; end?: string | undefined; category?: string[] | undefined; code?: string | undefined; action?: string | undefined; kind?: string | undefined; original?: string | undefined; severity?: number | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; outcome?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ description?: string | undefined; id?: 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; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined" + "DeepPartial[] | 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<{ scheduled?: string | undefined; schedule_delay?: number | undefined; } & {}> | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; tags?: string[] | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; url?: string | undefined; end?: string | undefined; category?: string[] | undefined; code?: string | undefined; action?: string | undefined; kind?: string | undefined; original?: string | undefined; severity?: number | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; outcome?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ description?: string | undefined; id?: 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; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined" ], "source": { "path": "x-pack/plugins/event_log/server/types.ts", @@ -850,7 +850,7 @@ "label": "data", "description": [], "signature": [ - "(Readonly<{ kibana?: Readonly<{ saved_objects?: Readonly<{ type?: string | undefined; id?: string | undefined; rel?: string | undefined; namespace?: string | undefined; type_id?: string | undefined; } & {}>[] | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; tags?: string[] | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; url?: string | undefined; end?: string | undefined; category?: string[] | undefined; code?: string | undefined; action?: string | undefined; kind?: string | undefined; original?: string | undefined; severity?: number | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; outcome?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ description?: string | undefined; id?: 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; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}> | undefined)[]" + "(Readonly<{ kibana?: Readonly<{ saved_objects?: Readonly<{ type?: string | undefined; id?: string | undefined; rel?: string | undefined; namespace?: string | undefined; type_id?: string | undefined; } & {}>[] | 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<{ scheduled?: string | undefined; schedule_delay?: number | undefined; } & {}> | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; tags?: string[] | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; url?: string | undefined; end?: string | undefined; category?: string[] | undefined; code?: string | undefined; action?: string | undefined; kind?: string | undefined; original?: string | undefined; severity?: number | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; outcome?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ description?: string | undefined; id?: 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; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}> | undefined)[]" ], "source": { "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", @@ -872,7 +872,7 @@ "label": "IEvent", "description": [], "signature": [ - "DeepPartial[] | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; tags?: string[] | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; url?: string | undefined; end?: string | undefined; category?: string[] | undefined; code?: string | undefined; action?: string | undefined; kind?: string | undefined; original?: string | undefined; severity?: number | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; outcome?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ description?: string | undefined; id?: 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; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined" + "DeepPartial[] | 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<{ scheduled?: string | undefined; schedule_delay?: number | undefined; } & {}> | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; tags?: string[] | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; url?: string | undefined; end?: string | undefined; category?: string[] | undefined; code?: string | undefined; action?: string | undefined; kind?: string | undefined; original?: string | undefined; severity?: number | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; outcome?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ description?: string | undefined; id?: 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; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined" ], "source": { "path": "x-pack/plugins/event_log/generated/schemas.ts", @@ -889,7 +889,7 @@ "label": "IValidatedEvent", "description": [], "signature": [ - "Readonly<{ kibana?: Readonly<{ saved_objects?: Readonly<{ type?: string | undefined; id?: string | undefined; rel?: string | undefined; namespace?: string | undefined; type_id?: string | undefined; } & {}>[] | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; tags?: string[] | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; url?: string | undefined; end?: string | undefined; category?: string[] | undefined; code?: string | undefined; action?: string | undefined; kind?: string | undefined; original?: string | undefined; severity?: number | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; outcome?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ description?: string | undefined; id?: 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; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}> | undefined" + "Readonly<{ kibana?: Readonly<{ saved_objects?: Readonly<{ type?: string | undefined; id?: string | undefined; rel?: string | undefined; namespace?: string | undefined; type_id?: string | undefined; } & {}>[] | 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<{ scheduled?: string | undefined; schedule_delay?: number | undefined; } & {}> | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; tags?: string[] | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; url?: string | undefined; end?: string | undefined; category?: string[] | undefined; code?: string | undefined; action?: string | undefined; kind?: string | undefined; original?: string | undefined; severity?: number | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; outcome?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ description?: string | undefined; id?: 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; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}> | undefined" ], "source": { "path": "x-pack/plugins/event_log/generated/schemas.ts", @@ -1171,7 +1171,7 @@ "label": "getLogger", "description": [], "signature": [ - "(properties: DeepPartial[] | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; tags?: string[] | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; url?: string | undefined; end?: string | undefined; category?: string[] | undefined; code?: string | undefined; action?: string | undefined; kind?: string | undefined; original?: string | undefined; severity?: number | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; outcome?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ description?: string | undefined; id?: 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; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined) => ", + "(properties: DeepPartial[] | 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<{ scheduled?: string | undefined; schedule_delay?: number | undefined; } & {}> | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; tags?: string[] | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; url?: string | undefined; end?: string | undefined; category?: string[] | undefined; code?: string | undefined; action?: string | undefined; kind?: string | undefined; original?: string | undefined; severity?: number | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; outcome?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ description?: string | undefined; id?: 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; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined) => ", { "pluginId": "eventLog", "scope": "server", @@ -1194,7 +1194,7 @@ "label": "properties", "description": [], "signature": [ - "DeepPartial[] | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; tags?: string[] | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; url?: string | undefined; end?: string | undefined; category?: string[] | undefined; code?: string | undefined; action?: string | undefined; kind?: string | undefined; original?: string | undefined; severity?: number | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; outcome?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ description?: string | undefined; id?: 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; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined" + "DeepPartial[] | 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<{ scheduled?: string | undefined; schedule_delay?: number | undefined; } & {}> | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; tags?: string[] | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; url?: string | undefined; end?: string | undefined; category?: string[] | undefined; code?: string | undefined; action?: string | undefined; kind?: string | undefined; original?: string | undefined; severity?: number | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; outcome?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ description?: string | undefined; id?: 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; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined" ], "source": { "path": "x-pack/plugins/event_log/server/types.ts", diff --git a/api_docs/event_log.mdx b/api_docs/event_log.mdx index 409d6ad6d21c2..8929e1f586ebe 100644 --- a/api_docs/event_log.mdx +++ b/api_docs/event_log.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'eventLog'] warning: 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. --- - import eventLogObj from './event_log.json'; diff --git a/api_docs/expressions.json b/api_docs/expressions.json index 79a9d016df071..1fbdfe4dc8f0b 100644 --- a/api_docs/expressions.json +++ b/api_docs/expressions.json @@ -999,7 +999,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 81 + "lineNumber": 80 }, "deprecated": false, "children": [ @@ -1031,7 +1031,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 83 + "lineNumber": 82 }, "deprecated": false, "children": [ @@ -1054,7 +1054,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 84 + "lineNumber": 83 }, "deprecated": false, "isRequired": false @@ -1105,7 +1105,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 92 + "lineNumber": 91 }, "deprecated": false }, @@ -1129,7 +1129,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 97 + "lineNumber": 96 }, "deprecated": true, "references": [] @@ -1154,7 +1154,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 102 + "lineNumber": 101 }, "deprecated": true, "references": [] @@ -1171,7 +1171,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 104 + "lineNumber": 103 }, "deprecated": false, "children": [ @@ -1194,7 +1194,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 104 + "lineNumber": 103 }, "deprecated": false, "isRequired": false @@ -1230,7 +1230,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 110 + "lineNumber": 109 }, "deprecated": false, "children": [ @@ -1261,7 +1261,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 111 + "lineNumber": 110 }, "deprecated": false, "isRequired": true @@ -1289,7 +1289,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 119 + "lineNumber": 118 }, "deprecated": false, "children": [ @@ -1305,7 +1305,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 119 + "lineNumber": 118 }, "deprecated": false, "isRequired": true @@ -1333,7 +1333,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 123 + "lineNumber": 122 }, "deprecated": false, "children": [], @@ -1367,7 +1367,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 127 + "lineNumber": 126 }, "deprecated": false, "children": [ @@ -1398,7 +1398,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 128 + "lineNumber": 127 }, "deprecated": false, "isRequired": true @@ -1426,7 +1426,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 136 + "lineNumber": 135 }, "deprecated": false, "children": [ @@ -1442,7 +1442,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 136 + "lineNumber": 135 }, "deprecated": false, "isRequired": true @@ -1470,7 +1470,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 140 + "lineNumber": 139 }, "deprecated": false, "children": [], @@ -1488,7 +1488,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 144 + "lineNumber": 143 }, "deprecated": false, "children": [ @@ -1504,7 +1504,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 144 + "lineNumber": 143 }, "deprecated": false, "isRequired": true @@ -1524,7 +1524,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 148 + "lineNumber": 147 }, "deprecated": false }, @@ -1584,7 +1584,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 160 + "lineNumber": 159 }, "deprecated": false, "children": [ @@ -1609,7 +1609,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 161 + "lineNumber": 160 }, "deprecated": false, "isRequired": true @@ -1628,7 +1628,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 162 + "lineNumber": 161 }, "deprecated": false, "isRequired": true @@ -1651,7 +1651,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 163 + "lineNumber": 162 }, "deprecated": false, "isRequired": true @@ -1703,7 +1703,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 168 + "lineNumber": 167 }, "deprecated": false, "children": [ @@ -1726,7 +1726,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 169 + "lineNumber": 168 }, "deprecated": false, "isRequired": true @@ -1749,7 +1749,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 170 + "lineNumber": 169 }, "deprecated": false, "isRequired": true @@ -1786,7 +1786,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 216 + "lineNumber": 215 }, "deprecated": false, "children": [ @@ -1808,7 +1808,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 216 + "lineNumber": 215 }, "deprecated": false, "isRequired": true @@ -1826,7 +1826,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 216 + "lineNumber": 215 }, "deprecated": false, "isRequired": true @@ -1864,7 +1864,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 229 + "lineNumber": 228 }, "deprecated": false, "children": [ @@ -1886,7 +1886,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 229 + "lineNumber": 228 }, "deprecated": false, "isRequired": true @@ -1914,7 +1914,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 240 + "lineNumber": 239 }, "deprecated": false, "children": [ @@ -1936,7 +1936,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 240 + "lineNumber": 239 }, "deprecated": false, "isRequired": true @@ -1953,7 +1953,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 240 + "lineNumber": 239 }, "deprecated": false, "isRequired": true @@ -1988,7 +1988,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 248 + "lineNumber": 247 }, "deprecated": false, "children": [ @@ -2010,7 +2010,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 248 + "lineNumber": 247 }, "deprecated": false, "isRequired": true @@ -2027,7 +2027,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 248 + "lineNumber": 247 }, "deprecated": false, "isRequired": true @@ -2055,7 +2055,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 257 + "lineNumber": 256 }, "deprecated": false, "children": [], @@ -3655,7 +3655,7 @@ ], "source": { "path": "src/plugins/expressions/public/plugin.ts", - "lineNumber": 32 + "lineNumber": 38 }, "deprecated": false, "children": [ @@ -3671,7 +3671,7 @@ ], "source": { "path": "src/plugins/expressions/public/plugin.ts", - "lineNumber": 35 + "lineNumber": 41 }, "deprecated": false, "children": [ @@ -3694,7 +3694,7 @@ ], "source": { "path": "src/plugins/expressions/public/plugin.ts", - "lineNumber": 35 + "lineNumber": 41 }, "deprecated": false, "isRequired": true @@ -3730,7 +3730,7 @@ ], "source": { "path": "src/plugins/expressions/public/plugin.ts", - "lineNumber": 45 + "lineNumber": 51 }, "deprecated": false, "children": [ @@ -3753,7 +3753,7 @@ ], "source": { "path": "src/plugins/expressions/public/plugin.ts", - "lineNumber": 45 + "lineNumber": 51 }, "deprecated": false, "isRequired": true @@ -3788,7 +3788,7 @@ ], "source": { "path": "src/plugins/expressions/public/plugin.ts", - "lineNumber": 59 + "lineNumber": 65 }, "deprecated": false, "children": [ @@ -3810,7 +3810,7 @@ ], "source": { "path": "src/plugins/expressions/public/plugin.ts", - "lineNumber": 59 + "lineNumber": 65 }, "deprecated": false, "isRequired": true @@ -3830,7 +3830,7 @@ ], "source": { "path": "src/plugins/expressions/public/plugin.ts", - "lineNumber": 75 + "lineNumber": 81 }, "deprecated": false, "children": [], @@ -3882,7 +3882,7 @@ ], "source": { "path": "src/plugins/expressions/public/plugin.ts", - "lineNumber": 32 + "lineNumber": 38 }, "deprecated": false, "children": [ @@ -3898,7 +3898,7 @@ ], "source": { "path": "src/plugins/expressions/public/plugin.ts", - "lineNumber": 35 + "lineNumber": 41 }, "deprecated": false, "children": [ @@ -3921,7 +3921,7 @@ ], "source": { "path": "src/plugins/expressions/public/plugin.ts", - "lineNumber": 35 + "lineNumber": 41 }, "deprecated": false, "isRequired": true @@ -3957,7 +3957,7 @@ ], "source": { "path": "src/plugins/expressions/public/plugin.ts", - "lineNumber": 45 + "lineNumber": 51 }, "deprecated": false, "children": [ @@ -3980,7 +3980,7 @@ ], "source": { "path": "src/plugins/expressions/public/plugin.ts", - "lineNumber": 45 + "lineNumber": 51 }, "deprecated": false, "isRequired": true @@ -4015,7 +4015,7 @@ ], "source": { "path": "src/plugins/expressions/public/plugin.ts", - "lineNumber": 59 + "lineNumber": 65 }, "deprecated": false, "children": [ @@ -4037,7 +4037,7 @@ ], "source": { "path": "src/plugins/expressions/public/plugin.ts", - "lineNumber": 59 + "lineNumber": 65 }, "deprecated": false, "isRequired": true @@ -4057,7 +4057,7 @@ ], "source": { "path": "src/plugins/expressions/public/plugin.ts", - "lineNumber": 75 + "lineNumber": 81 }, "deprecated": false, "children": [], @@ -4103,7 +4103,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 175 + "lineNumber": 189 }, "deprecated": false, "children": [ @@ -4126,7 +4126,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 176 + "lineNumber": 190 }, "deprecated": false }, @@ -4148,7 +4148,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 177 + "lineNumber": 191 }, "deprecated": false }, @@ -4164,7 +4164,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 179 + "lineNumber": 193 }, "deprecated": false, "children": [ @@ -4186,7 +4186,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 179 + "lineNumber": 193 }, "deprecated": false, "isRequired": true @@ -4224,7 +4224,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 219 + "lineNumber": 233 }, "deprecated": false, "children": [ @@ -4255,7 +4255,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 220 + "lineNumber": 234 }, "deprecated": false, "isRequired": true @@ -4291,7 +4291,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 223 + "lineNumber": 237 }, "deprecated": false, "children": [ @@ -4322,7 +4322,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 224 + "lineNumber": 238 }, "deprecated": false, "isRequired": true @@ -4358,7 +4358,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 227 + "lineNumber": 241 }, "deprecated": false, "children": [ @@ -4389,7 +4389,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 228 + "lineNumber": 242 }, "deprecated": false, "isRequired": true @@ -4425,7 +4425,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 231 + "lineNumber": 245 }, "deprecated": false, "children": [ @@ -4448,7 +4448,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 231 + "lineNumber": 245 }, "deprecated": false, "isRequired": true @@ -4465,7 +4465,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 231 + "lineNumber": 245 }, "deprecated": false, "isRequired": true @@ -4489,7 +4489,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 231 + "lineNumber": 245 }, "deprecated": false, "isRequired": false @@ -4517,7 +4517,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 234 + "lineNumber": 248 }, "deprecated": false, "children": [ @@ -4533,7 +4533,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 234 + "lineNumber": 248 }, "deprecated": false, "isRequired": true @@ -4563,7 +4563,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 241 + "lineNumber": 255 }, "deprecated": false, "children": [], @@ -4589,7 +4589,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 244 + "lineNumber": 258 }, "deprecated": false, "children": [ @@ -4605,7 +4605,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 244 + "lineNumber": 258 }, "deprecated": false, "isRequired": true @@ -4635,7 +4635,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 251 + "lineNumber": 265 }, "deprecated": false, "children": [], @@ -4661,7 +4661,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 254 + "lineNumber": 268 }, "deprecated": false, "children": [ @@ -4677,7 +4677,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 254 + "lineNumber": 268 }, "deprecated": false, "isRequired": true @@ -4707,7 +4707,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 261 + "lineNumber": 275 }, "deprecated": false, "children": [], @@ -4749,7 +4749,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 263 + "lineNumber": 277 }, "deprecated": false, "returnComment": [], @@ -4773,7 +4773,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 133 + "lineNumber": 147 }, "deprecated": false }, @@ -4789,7 +4789,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 135 + "lineNumber": 149 }, "deprecated": false }, @@ -4812,7 +4812,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 136 + "lineNumber": 150 }, "deprecated": false } @@ -4837,7 +4837,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 269 + "lineNumber": 283 }, "deprecated": false, "children": [], @@ -4865,7 +4865,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 281 + "lineNumber": 295 }, "deprecated": false, "children": [ @@ -4889,7 +4889,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 282 + "lineNumber": 296 }, "deprecated": false, "isRequired": true @@ -4906,7 +4906,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 283 + "lineNumber": 297 }, "deprecated": false, "isRequired": true @@ -4946,7 +4946,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 293 + "lineNumber": 307 }, "deprecated": false, "children": [ @@ -4970,7 +4970,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 293 + "lineNumber": 307 }, "deprecated": false, "isRequired": true @@ -5011,7 +5011,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 303 + "lineNumber": 317 }, "deprecated": false, "children": [ @@ -5035,7 +5035,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 303 + "lineNumber": 317 }, "deprecated": false, "isRequired": true @@ -5055,7 +5055,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 303 + "lineNumber": 317 }, "deprecated": false, "isRequired": true @@ -5094,7 +5094,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 313 + "lineNumber": 327 }, "deprecated": false, "children": [ @@ -5118,7 +5118,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 313 + "lineNumber": 327 }, "deprecated": false, "isRequired": true @@ -5137,7 +5137,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 313 + "lineNumber": 327 }, "deprecated": false, "isRequired": true @@ -5157,7 +5157,7 @@ "\nReturns Kibana Platform *setup* life-cycle contract. Useful to return the\nsame contract on server-side and browser-side." ], "signature": [ - "() => Pick<", + "(...args: unknown[]) => Pick<", { "pluginId": "expressions", "scope": "common", @@ -5169,10 +5169,28 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 321 + "lineNumber": 335 }, "deprecated": false, - "children": [], + "children": [ + { + "parentPluginId": "expressions", + "id": "def-public.ExpressionsService.setup.$1", + "type": "Array", + "tags": [], + "label": "args", + "description": [], + "signature": [ + "unknown[]" + ], + "source": { + "path": "src/plugins/expressions/common/service/expressions_services.ts", + "lineNumber": 335 + }, + "deprecated": false, + "isRequired": true + } + ], "returnComment": [] }, { @@ -5185,7 +5203,7 @@ "\nReturns Kibana Platform *start* life-cycle contract. Useful to return the\nsame contract on server-side and browser-side." ], "signature": [ - "() => ", + "(...args: unknown[]) => ", { "pluginId": "expressions", "scope": "common", @@ -5196,10 +5214,28 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 329 + "lineNumber": 360 }, "deprecated": false, - "children": [], + "children": [ + { + "parentPluginId": "expressions", + "id": "def-public.ExpressionsService.start.$1", + "type": "Array", + "tags": [], + "label": "args", + "description": [], + "signature": [ + "unknown[]" + ], + "source": { + "path": "src/plugins/expressions/common/service/expressions_services.ts", + "lineNumber": 360 + }, + "deprecated": false, + "isRequired": true + } + ], "returnComment": [] }, { @@ -5214,7 +5250,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 333 + "lineNumber": 364 }, "deprecated": false, "children": [], @@ -5746,7 +5782,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 59 + "lineNumber": 58 }, "deprecated": false, "children": [ @@ -5762,7 +5798,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 60 + "lineNumber": 59 }, "deprecated": false, "children": [ @@ -5785,7 +5821,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 60 + "lineNumber": 59 }, "deprecated": false, "isRequired": true @@ -5821,7 +5857,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 62 + "lineNumber": 61 }, "deprecated": false, "children": [ @@ -5852,7 +5888,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 63 + "lineNumber": 62 }, "deprecated": false, "isRequired": true @@ -5880,7 +5916,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 68 + "lineNumber": 67 }, "deprecated": false, "children": [ @@ -5896,7 +5932,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 68 + "lineNumber": 67 }, "deprecated": false, "isRequired": true @@ -5924,7 +5960,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 72 + "lineNumber": 71 }, "deprecated": false, "children": [], @@ -5950,7 +5986,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 76 + "lineNumber": 75 }, "deprecated": false, "children": [], @@ -6111,7 +6147,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 37 + "lineNumber": 36 }, "deprecated": false, "children": [ @@ -6127,7 +6163,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 38 + "lineNumber": 37 }, "deprecated": false, "children": [ @@ -6150,7 +6186,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 38 + "lineNumber": 37 }, "deprecated": false, "isRequired": true @@ -6186,7 +6222,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 40 + "lineNumber": 39 }, "deprecated": false, "children": [ @@ -6217,7 +6253,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 41 + "lineNumber": 40 }, "deprecated": false, "isRequired": true @@ -6245,7 +6281,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 46 + "lineNumber": 45 }, "deprecated": false, "children": [ @@ -6261,7 +6297,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 46 + "lineNumber": 45 }, "deprecated": false, "isRequired": true @@ -6289,7 +6325,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 50 + "lineNumber": 49 }, "deprecated": false, "children": [], @@ -6315,7 +6351,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 54 + "lineNumber": 53 }, "deprecated": false, "children": [], @@ -8241,7 +8277,11 @@ "section": "def-common.KnownTypeToString", "text": "KnownTypeToString" }, - "<", + " ? ", + "UnwrapObservable", + " : ", "UnwrapPromiseOrReturn", "> | undefined" ], @@ -8479,27 +8519,6 @@ "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/server/demodata/index.ts", "lineNumber": 32 } - }, - { - "plugin": "canvas", - "link": { - "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/server/escount.ts", - "lineNumber": 33 - } - }, - { - "plugin": "canvas", - "link": { - "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/server/esdocs.ts", - "lineNumber": 36 - } - }, - { - "plugin": "canvas", - "link": { - "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/server/essql.ts", - "lineNumber": 32 - } } ] } @@ -8799,6 +8818,71 @@ }, "deprecated": false }, + { + "parentPluginId": "expressions", + "id": "def-public.ExpressionFunctionDefinitions.overall_metric", + "type": "Object", + "tags": [], + "label": "overall_metric", + "description": [], + "signature": [ + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.ExpressionFunctionDefinition", + "text": "ExpressionFunctionDefinition" + }, + "<\"overall_metric\", ", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.Datatable", + "text": "Datatable" + }, + ", ", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.OverallMetricArgs", + "text": "OverallMetricArgs" + }, + ", ", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.Datatable", + "text": "Datatable" + }, + ", ", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.ExecutionContext", + "text": "ExecutionContext" + }, + "<", + { + "pluginId": "inspector", + "scope": "common", + "docId": "kibInspectorPluginApi", + "section": "def-common.Adapters", + "text": "Adapters" + }, + ", ", + "SerializableState", + ">>" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/types.ts", + "lineNumber": 123 + }, + "deprecated": false + }, { "parentPluginId": "expressions", "id": "def-public.ExpressionFunctionDefinitions.derivative", @@ -8860,7 +8944,7 @@ ], "source": { "path": "src/plugins/expressions/common/expression_functions/types.ts", - "lineNumber": 123 + "lineNumber": 124 }, "deprecated": false }, @@ -8925,7 +9009,7 @@ ], "source": { "path": "src/plugins/expressions/common/expression_functions/types.ts", - "lineNumber": 124 + "lineNumber": 125 }, "deprecated": false } @@ -9297,7 +9381,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 72 + "lineNumber": 86 }, "deprecated": false, "children": [ @@ -9323,7 +9407,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 79 + "lineNumber": 93 }, "deprecated": false, "returnComment": [], @@ -9337,7 +9421,7 @@ "description": [], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 79 + "lineNumber": 93 }, "deprecated": false } @@ -9365,7 +9449,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 87 + "lineNumber": 101 }, "deprecated": false, "returnComment": [], @@ -9379,7 +9463,7 @@ "description": [], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 87 + "lineNumber": 101 }, "deprecated": false } @@ -9407,7 +9491,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 95 + "lineNumber": 109 }, "deprecated": false, "returnComment": [], @@ -9421,7 +9505,7 @@ "description": [], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 95 + "lineNumber": 109 }, "deprecated": false } @@ -9457,7 +9541,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 121 + "lineNumber": 135 }, "deprecated": false, "returnComment": [], @@ -9481,7 +9565,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 122 + "lineNumber": 136 }, "deprecated": false }, @@ -9497,7 +9581,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 123 + "lineNumber": 137 }, "deprecated": false }, @@ -9520,7 +9604,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 124 + "lineNumber": 138 }, "deprecated": false } @@ -9564,7 +9648,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 132 + "lineNumber": 146 }, "deprecated": false, "returnComment": [], @@ -9588,7 +9672,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 133 + "lineNumber": 147 }, "deprecated": false }, @@ -9604,7 +9688,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 135 + "lineNumber": 149 }, "deprecated": false }, @@ -9627,7 +9711,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 136 + "lineNumber": 150 }, "deprecated": false } @@ -9654,7 +9738,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 148 + "lineNumber": 162 }, "deprecated": false, "returnComment": [], @@ -11370,16 +11454,16 @@ "pluginId": "expressions", "scope": "common", "docId": "kibExpressionsPluginApi", - "section": "def-common.ExpressionAstFunction", - "text": "ExpressionAstFunction" + "section": "def-common.ExpressionAstExpression", + "text": "ExpressionAstExpression" }, " | ", { "pluginId": "expressions", "scope": "common", "docId": "kibExpressionsPluginApi", - "section": "def-common.ExpressionAstExpression", - "text": "ExpressionAstExpression" + "section": "def-common.ExpressionAstFunction", + "text": "ExpressionAstFunction" } ], "source": { @@ -12081,7 +12165,7 @@ ], "source": { "path": "src/plugins/expressions/public/plugin.ts", - "lineNumber": 19 + "lineNumber": 25 }, "deprecated": false, "lifecycle": "setup", @@ -12115,7 +12199,7 @@ ], "source": { "path": "src/plugins/expressions/public/plugin.ts", - "lineNumber": 24 + "lineNumber": 30 }, "deprecated": false, "children": [ @@ -12132,7 +12216,7 @@ ], "source": { "path": "src/plugins/expressions/public/plugin.ts", - "lineNumber": 25 + "lineNumber": 31 }, "deprecated": false }, @@ -12155,7 +12239,7 @@ ], "source": { "path": "src/plugins/expressions/public/plugin.ts", - "lineNumber": 26 + "lineNumber": 32 }, "deprecated": false }, @@ -12188,7 +12272,7 @@ ], "source": { "path": "src/plugins/expressions/public/plugin.ts", - "lineNumber": 27 + "lineNumber": 33 }, "deprecated": false, "returnComment": [], @@ -12276,7 +12360,7 @@ ], "source": { "path": "src/plugins/expressions/public/plugin.ts", - "lineNumber": 28 + "lineNumber": 34 }, "deprecated": false, "returnComment": [], @@ -12326,7 +12410,7 @@ ], "source": { "path": "src/plugins/expressions/public/plugin.ts", - "lineNumber": 29 + "lineNumber": 35 }, "deprecated": false, "returnComment": [], @@ -13171,7 +13255,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 81 + "lineNumber": 80 }, "deprecated": false, "children": [ @@ -13203,7 +13287,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 83 + "lineNumber": 82 }, "deprecated": false, "children": [ @@ -13226,7 +13310,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 84 + "lineNumber": 83 }, "deprecated": false, "isRequired": false @@ -13277,7 +13361,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 92 + "lineNumber": 91 }, "deprecated": false }, @@ -13301,7 +13385,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 97 + "lineNumber": 96 }, "deprecated": true, "references": [] @@ -13326,7 +13410,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 102 + "lineNumber": 101 }, "deprecated": true, "references": [] @@ -13343,7 +13427,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 104 + "lineNumber": 103 }, "deprecated": false, "children": [ @@ -13366,7 +13450,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 104 + "lineNumber": 103 }, "deprecated": false, "isRequired": false @@ -13402,7 +13486,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 110 + "lineNumber": 109 }, "deprecated": false, "children": [ @@ -13433,7 +13517,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 111 + "lineNumber": 110 }, "deprecated": false, "isRequired": true @@ -13461,7 +13545,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 119 + "lineNumber": 118 }, "deprecated": false, "children": [ @@ -13477,7 +13561,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 119 + "lineNumber": 118 }, "deprecated": false, "isRequired": true @@ -13505,7 +13589,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 123 + "lineNumber": 122 }, "deprecated": false, "children": [], @@ -13539,7 +13623,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 127 + "lineNumber": 126 }, "deprecated": false, "children": [ @@ -13570,7 +13654,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 128 + "lineNumber": 127 }, "deprecated": false, "isRequired": true @@ -13598,7 +13682,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 136 + "lineNumber": 135 }, "deprecated": false, "children": [ @@ -13614,7 +13698,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 136 + "lineNumber": 135 }, "deprecated": false, "isRequired": true @@ -13642,7 +13726,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 140 + "lineNumber": 139 }, "deprecated": false, "children": [], @@ -13660,7 +13744,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 144 + "lineNumber": 143 }, "deprecated": false, "children": [ @@ -13676,7 +13760,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 144 + "lineNumber": 143 }, "deprecated": false, "isRequired": true @@ -13696,7 +13780,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 148 + "lineNumber": 147 }, "deprecated": false }, @@ -13756,7 +13840,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 160 + "lineNumber": 159 }, "deprecated": false, "children": [ @@ -13781,7 +13865,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 161 + "lineNumber": 160 }, "deprecated": false, "isRequired": true @@ -13800,7 +13884,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 162 + "lineNumber": 161 }, "deprecated": false, "isRequired": true @@ -13823,7 +13907,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 163 + "lineNumber": 162 }, "deprecated": false, "isRequired": true @@ -13875,7 +13959,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 168 + "lineNumber": 167 }, "deprecated": false, "children": [ @@ -13898,7 +13982,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 169 + "lineNumber": 168 }, "deprecated": false, "isRequired": true @@ -13921,7 +14005,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 170 + "lineNumber": 169 }, "deprecated": false, "isRequired": true @@ -13958,7 +14042,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 216 + "lineNumber": 215 }, "deprecated": false, "children": [ @@ -13980,7 +14064,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 216 + "lineNumber": 215 }, "deprecated": false, "isRequired": true @@ -13998,7 +14082,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 216 + "lineNumber": 215 }, "deprecated": false, "isRequired": true @@ -14036,7 +14120,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 229 + "lineNumber": 228 }, "deprecated": false, "children": [ @@ -14058,7 +14142,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 229 + "lineNumber": 228 }, "deprecated": false, "isRequired": true @@ -14086,7 +14170,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 240 + "lineNumber": 239 }, "deprecated": false, "children": [ @@ -14108,7 +14192,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 240 + "lineNumber": 239 }, "deprecated": false, "isRequired": true @@ -14125,7 +14209,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 240 + "lineNumber": 239 }, "deprecated": false, "isRequired": true @@ -14160,7 +14244,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 248 + "lineNumber": 247 }, "deprecated": false, "children": [ @@ -14182,7 +14266,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 248 + "lineNumber": 247 }, "deprecated": false, "isRequired": true @@ -14199,7 +14283,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 248 + "lineNumber": 247 }, "deprecated": false, "isRequired": true @@ -14227,7 +14311,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 257 + "lineNumber": 256 }, "deprecated": false, "children": [], @@ -15482,7 +15566,7 @@ ], "source": { "path": "src/plugins/expressions/server/plugin.ts", - "lineNumber": 16 + "lineNumber": 17 }, "deprecated": false, "children": [ @@ -15504,7 +15588,7 @@ ], "source": { "path": "src/plugins/expressions/server/plugin.ts", - "lineNumber": 18 + "lineNumber": 19 }, "deprecated": false }, @@ -15520,7 +15604,7 @@ ], "source": { "path": "src/plugins/expressions/server/plugin.ts", - "lineNumber": 20 + "lineNumber": 21 }, "deprecated": false, "children": [ @@ -15543,7 +15627,7 @@ ], "source": { "path": "src/plugins/expressions/server/plugin.ts", - "lineNumber": 20 + "lineNumber": 21 }, "deprecated": false, "isRequired": true @@ -15579,7 +15663,7 @@ ], "source": { "path": "src/plugins/expressions/server/plugin.ts", - "lineNumber": 22 + "lineNumber": 23 }, "deprecated": false, "children": [ @@ -15602,7 +15686,7 @@ ], "source": { "path": "src/plugins/expressions/server/plugin.ts", - "lineNumber": 22 + "lineNumber": 23 }, "deprecated": false, "isRequired": true @@ -15637,7 +15721,7 @@ ], "source": { "path": "src/plugins/expressions/server/plugin.ts", - "lineNumber": 32 + "lineNumber": 33 }, "deprecated": false, "children": [ @@ -15659,7 +15743,7 @@ ], "source": { "path": "src/plugins/expressions/server/plugin.ts", - "lineNumber": 32 + "lineNumber": 33 }, "deprecated": false, "isRequired": true @@ -15679,7 +15763,7 @@ ], "source": { "path": "src/plugins/expressions/server/plugin.ts", - "lineNumber": 38 + "lineNumber": 39 }, "deprecated": false, "children": [], @@ -15731,7 +15815,7 @@ ], "source": { "path": "src/plugins/expressions/server/plugin.ts", - "lineNumber": 16 + "lineNumber": 17 }, "deprecated": false, "children": [ @@ -15753,7 +15837,7 @@ ], "source": { "path": "src/plugins/expressions/server/plugin.ts", - "lineNumber": 18 + "lineNumber": 19 }, "deprecated": false }, @@ -15769,7 +15853,7 @@ ], "source": { "path": "src/plugins/expressions/server/plugin.ts", - "lineNumber": 20 + "lineNumber": 21 }, "deprecated": false, "children": [ @@ -15792,7 +15876,7 @@ ], "source": { "path": "src/plugins/expressions/server/plugin.ts", - "lineNumber": 20 + "lineNumber": 21 }, "deprecated": false, "isRequired": true @@ -15828,7 +15912,7 @@ ], "source": { "path": "src/plugins/expressions/server/plugin.ts", - "lineNumber": 22 + "lineNumber": 23 }, "deprecated": false, "children": [ @@ -15851,7 +15935,7 @@ ], "source": { "path": "src/plugins/expressions/server/plugin.ts", - "lineNumber": 22 + "lineNumber": 23 }, "deprecated": false, "isRequired": true @@ -15886,7 +15970,7 @@ ], "source": { "path": "src/plugins/expressions/server/plugin.ts", - "lineNumber": 32 + "lineNumber": 33 }, "deprecated": false, "children": [ @@ -15908,7 +15992,7 @@ ], "source": { "path": "src/plugins/expressions/server/plugin.ts", - "lineNumber": 32 + "lineNumber": 33 }, "deprecated": false, "isRequired": true @@ -15928,7 +16012,7 @@ ], "source": { "path": "src/plugins/expressions/server/plugin.ts", - "lineNumber": 38 + "lineNumber": 39 }, "deprecated": false, "children": [], @@ -16460,7 +16544,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 59 + "lineNumber": 58 }, "deprecated": false, "children": [ @@ -16476,7 +16560,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 60 + "lineNumber": 59 }, "deprecated": false, "children": [ @@ -16499,7 +16583,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 60 + "lineNumber": 59 }, "deprecated": false, "isRequired": true @@ -16535,7 +16619,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 62 + "lineNumber": 61 }, "deprecated": false, "children": [ @@ -16566,7 +16650,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 63 + "lineNumber": 62 }, "deprecated": false, "isRequired": true @@ -16594,7 +16678,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 68 + "lineNumber": 67 }, "deprecated": false, "children": [ @@ -16610,7 +16694,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 68 + "lineNumber": 67 }, "deprecated": false, "isRequired": true @@ -16638,7 +16722,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 72 + "lineNumber": 71 }, "deprecated": false, "children": [], @@ -16664,7 +16748,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 76 + "lineNumber": 75 }, "deprecated": false, "children": [], @@ -16708,7 +16792,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 37 + "lineNumber": 36 }, "deprecated": false, "children": [ @@ -16724,7 +16808,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 38 + "lineNumber": 37 }, "deprecated": false, "children": [ @@ -16747,7 +16831,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 38 + "lineNumber": 37 }, "deprecated": false, "isRequired": true @@ -16783,7 +16867,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 40 + "lineNumber": 39 }, "deprecated": false, "children": [ @@ -16814,7 +16898,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 41 + "lineNumber": 40 }, "deprecated": false, "isRequired": true @@ -16842,7 +16926,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 46 + "lineNumber": 45 }, "deprecated": false, "children": [ @@ -16858,7 +16942,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 46 + "lineNumber": 45 }, "deprecated": false, "isRequired": true @@ -16886,7 +16970,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 50 + "lineNumber": 49 }, "deprecated": false, "children": [], @@ -16912,7 +16996,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 54 + "lineNumber": 53 }, "deprecated": false, "children": [], @@ -18752,7 +18836,11 @@ "section": "def-common.KnownTypeToString", "text": "KnownTypeToString" }, - "<", + " ? ", + "UnwrapObservable", + " : ", "UnwrapPromiseOrReturn", "> | undefined" ], @@ -18990,27 +19078,6 @@ "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/server/demodata/index.ts", "lineNumber": 32 } - }, - { - "plugin": "canvas", - "link": { - "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/server/escount.ts", - "lineNumber": 33 - } - }, - { - "plugin": "canvas", - "link": { - "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/server/esdocs.ts", - "lineNumber": 36 - } - }, - { - "plugin": "canvas", - "link": { - "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/server/essql.ts", - "lineNumber": 32 - } } ] } @@ -19310,6 +19377,71 @@ }, "deprecated": false }, + { + "parentPluginId": "expressions", + "id": "def-server.ExpressionFunctionDefinitions.overall_metric", + "type": "Object", + "tags": [], + "label": "overall_metric", + "description": [], + "signature": [ + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.ExpressionFunctionDefinition", + "text": "ExpressionFunctionDefinition" + }, + "<\"overall_metric\", ", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.Datatable", + "text": "Datatable" + }, + ", ", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.OverallMetricArgs", + "text": "OverallMetricArgs" + }, + ", ", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.Datatable", + "text": "Datatable" + }, + ", ", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.ExecutionContext", + "text": "ExecutionContext" + }, + "<", + { + "pluginId": "inspector", + "scope": "common", + "docId": "kibInspectorPluginApi", + "section": "def-common.Adapters", + "text": "Adapters" + }, + ", ", + "SerializableState", + ">>" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/types.ts", + "lineNumber": 123 + }, + "deprecated": false + }, { "parentPluginId": "expressions", "id": "def-server.ExpressionFunctionDefinitions.derivative", @@ -19371,7 +19503,7 @@ ], "source": { "path": "src/plugins/expressions/common/expression_functions/types.ts", - "lineNumber": 123 + "lineNumber": 124 }, "deprecated": false }, @@ -19436,7 +19568,7 @@ ], "source": { "path": "src/plugins/expressions/common/expression_functions/types.ts", - "lineNumber": 124 + "lineNumber": 125 }, "deprecated": false } @@ -20941,16 +21073,16 @@ "pluginId": "expressions", "scope": "common", "docId": "kibExpressionsPluginApi", - "section": "def-common.ExpressionAstFunction", - "text": "ExpressionAstFunction" + "section": "def-common.ExpressionAstExpression", + "text": "ExpressionAstExpression" }, " | ", { "pluginId": "expressions", "scope": "common", "docId": "kibExpressionsPluginApi", - "section": "def-common.ExpressionAstExpression", - "text": "ExpressionAstExpression" + "section": "def-common.ExpressionAstFunction", + "text": "ExpressionAstFunction" } ], "source": { @@ -21592,7 +21724,7 @@ ], "source": { "path": "src/plugins/expressions/server/plugin.ts", - "lineNumber": 12 + "lineNumber": 13 }, "deprecated": false, "lifecycle": "setup", @@ -21616,7 +21748,7 @@ ], "source": { "path": "src/plugins/expressions/server/plugin.ts", - "lineNumber": 14 + "lineNumber": 15 }, "deprecated": false, "lifecycle": "start", @@ -22622,7 +22754,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 81 + "lineNumber": 80 }, "deprecated": false, "children": [ @@ -22654,7 +22786,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 83 + "lineNumber": 82 }, "deprecated": false, "children": [ @@ -22677,7 +22809,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 84 + "lineNumber": 83 }, "deprecated": false, "isRequired": false @@ -22728,7 +22860,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 92 + "lineNumber": 91 }, "deprecated": false }, @@ -22752,7 +22884,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 97 + "lineNumber": 96 }, "deprecated": true, "references": [] @@ -22777,7 +22909,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 102 + "lineNumber": 101 }, "deprecated": true, "references": [] @@ -22794,7 +22926,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 104 + "lineNumber": 103 }, "deprecated": false, "children": [ @@ -22817,7 +22949,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 104 + "lineNumber": 103 }, "deprecated": false, "isRequired": false @@ -22853,7 +22985,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 110 + "lineNumber": 109 }, "deprecated": false, "children": [ @@ -22884,7 +23016,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 111 + "lineNumber": 110 }, "deprecated": false, "isRequired": true @@ -22912,7 +23044,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 119 + "lineNumber": 118 }, "deprecated": false, "children": [ @@ -22928,7 +23060,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 119 + "lineNumber": 118 }, "deprecated": false, "isRequired": true @@ -22956,7 +23088,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 123 + "lineNumber": 122 }, "deprecated": false, "children": [], @@ -22990,7 +23122,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 127 + "lineNumber": 126 }, "deprecated": false, "children": [ @@ -23021,7 +23153,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 128 + "lineNumber": 127 }, "deprecated": false, "isRequired": true @@ -23049,7 +23181,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 136 + "lineNumber": 135 }, "deprecated": false, "children": [ @@ -23065,7 +23197,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 136 + "lineNumber": 135 }, "deprecated": false, "isRequired": true @@ -23093,7 +23225,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 140 + "lineNumber": 139 }, "deprecated": false, "children": [], @@ -23111,7 +23243,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 144 + "lineNumber": 143 }, "deprecated": false, "children": [ @@ -23127,7 +23259,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 144 + "lineNumber": 143 }, "deprecated": false, "isRequired": true @@ -23147,7 +23279,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 148 + "lineNumber": 147 }, "deprecated": false }, @@ -23207,7 +23339,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 160 + "lineNumber": 159 }, "deprecated": false, "children": [ @@ -23232,7 +23364,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 161 + "lineNumber": 160 }, "deprecated": false, "isRequired": true @@ -23251,7 +23383,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 162 + "lineNumber": 161 }, "deprecated": false, "isRequired": true @@ -23274,7 +23406,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 163 + "lineNumber": 162 }, "deprecated": false, "isRequired": true @@ -23326,7 +23458,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 168 + "lineNumber": 167 }, "deprecated": false, "children": [ @@ -23349,7 +23481,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 169 + "lineNumber": 168 }, "deprecated": false, "isRequired": true @@ -23372,7 +23504,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 170 + "lineNumber": 169 }, "deprecated": false, "isRequired": true @@ -23409,7 +23541,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 216 + "lineNumber": 215 }, "deprecated": false, "children": [ @@ -23431,7 +23563,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 216 + "lineNumber": 215 }, "deprecated": false, "isRequired": true @@ -23449,7 +23581,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 216 + "lineNumber": 215 }, "deprecated": false, "isRequired": true @@ -23487,7 +23619,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 229 + "lineNumber": 228 }, "deprecated": false, "children": [ @@ -23509,7 +23641,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 229 + "lineNumber": 228 }, "deprecated": false, "isRequired": true @@ -23537,7 +23669,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 240 + "lineNumber": 239 }, "deprecated": false, "children": [ @@ -23559,7 +23691,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 240 + "lineNumber": 239 }, "deprecated": false, "isRequired": true @@ -23576,7 +23708,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 240 + "lineNumber": 239 }, "deprecated": false, "isRequired": true @@ -23611,7 +23743,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 248 + "lineNumber": 247 }, "deprecated": false, "children": [ @@ -23633,7 +23765,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 248 + "lineNumber": 247 }, "deprecated": false, "isRequired": true @@ -23650,7 +23782,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 248 + "lineNumber": 247 }, "deprecated": false, "isRequired": true @@ -23678,7 +23810,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 257 + "lineNumber": 256 }, "deprecated": false, "children": [], @@ -25005,7 +25137,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 175 + "lineNumber": 189 }, "deprecated": false, "children": [ @@ -25028,7 +25160,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 176 + "lineNumber": 190 }, "deprecated": false }, @@ -25050,7 +25182,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 177 + "lineNumber": 191 }, "deprecated": false }, @@ -25066,7 +25198,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 179 + "lineNumber": 193 }, "deprecated": false, "children": [ @@ -25088,7 +25220,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 179 + "lineNumber": 193 }, "deprecated": false, "isRequired": true @@ -25126,7 +25258,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 219 + "lineNumber": 233 }, "deprecated": false, "children": [ @@ -25157,7 +25289,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 220 + "lineNumber": 234 }, "deprecated": false, "isRequired": true @@ -25193,7 +25325,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 223 + "lineNumber": 237 }, "deprecated": false, "children": [ @@ -25224,7 +25356,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 224 + "lineNumber": 238 }, "deprecated": false, "isRequired": true @@ -25260,7 +25392,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 227 + "lineNumber": 241 }, "deprecated": false, "children": [ @@ -25291,7 +25423,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 228 + "lineNumber": 242 }, "deprecated": false, "isRequired": true @@ -25327,7 +25459,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 231 + "lineNumber": 245 }, "deprecated": false, "children": [ @@ -25350,7 +25482,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 231 + "lineNumber": 245 }, "deprecated": false, "isRequired": true @@ -25367,7 +25499,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 231 + "lineNumber": 245 }, "deprecated": false, "isRequired": true @@ -25391,7 +25523,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 231 + "lineNumber": 245 }, "deprecated": false, "isRequired": false @@ -25419,7 +25551,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 234 + "lineNumber": 248 }, "deprecated": false, "children": [ @@ -25435,7 +25567,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 234 + "lineNumber": 248 }, "deprecated": false, "isRequired": true @@ -25465,7 +25597,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 241 + "lineNumber": 255 }, "deprecated": false, "children": [], @@ -25491,7 +25623,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 244 + "lineNumber": 258 }, "deprecated": false, "children": [ @@ -25507,7 +25639,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 244 + "lineNumber": 258 }, "deprecated": false, "isRequired": true @@ -25537,7 +25669,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 251 + "lineNumber": 265 }, "deprecated": false, "children": [], @@ -25563,7 +25695,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 254 + "lineNumber": 268 }, "deprecated": false, "children": [ @@ -25579,7 +25711,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 254 + "lineNumber": 268 }, "deprecated": false, "isRequired": true @@ -25609,7 +25741,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 261 + "lineNumber": 275 }, "deprecated": false, "children": [], @@ -25651,7 +25783,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 263 + "lineNumber": 277 }, "deprecated": false, "returnComment": [], @@ -25675,7 +25807,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 133 + "lineNumber": 147 }, "deprecated": false }, @@ -25691,7 +25823,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 135 + "lineNumber": 149 }, "deprecated": false }, @@ -25714,7 +25846,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 136 + "lineNumber": 150 }, "deprecated": false } @@ -25739,7 +25871,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 269 + "lineNumber": 283 }, "deprecated": false, "children": [], @@ -25767,7 +25899,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 281 + "lineNumber": 295 }, "deprecated": false, "children": [ @@ -25791,7 +25923,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 282 + "lineNumber": 296 }, "deprecated": false, "isRequired": true @@ -25808,7 +25940,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 283 + "lineNumber": 297 }, "deprecated": false, "isRequired": true @@ -25848,7 +25980,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 293 + "lineNumber": 307 }, "deprecated": false, "children": [ @@ -25872,7 +26004,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 293 + "lineNumber": 307 }, "deprecated": false, "isRequired": true @@ -25913,7 +26045,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 303 + "lineNumber": 317 }, "deprecated": false, "children": [ @@ -25937,7 +26069,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 303 + "lineNumber": 317 }, "deprecated": false, "isRequired": true @@ -25957,7 +26089,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 303 + "lineNumber": 317 }, "deprecated": false, "isRequired": true @@ -25996,7 +26128,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 313 + "lineNumber": 327 }, "deprecated": false, "children": [ @@ -26020,7 +26152,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 313 + "lineNumber": 327 }, "deprecated": false, "isRequired": true @@ -26039,7 +26171,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 313 + "lineNumber": 327 }, "deprecated": false, "isRequired": true @@ -26059,7 +26191,7 @@ "\nReturns Kibana Platform *setup* life-cycle contract. Useful to return the\nsame contract on server-side and browser-side." ], "signature": [ - "() => Pick<", + "(...args: unknown[]) => Pick<", { "pluginId": "expressions", "scope": "common", @@ -26071,10 +26203,28 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 321 + "lineNumber": 335 }, "deprecated": false, - "children": [], + "children": [ + { + "parentPluginId": "expressions", + "id": "def-common.ExpressionsService.setup.$1", + "type": "Array", + "tags": [], + "label": "args", + "description": [], + "signature": [ + "unknown[]" + ], + "source": { + "path": "src/plugins/expressions/common/service/expressions_services.ts", + "lineNumber": 335 + }, + "deprecated": false, + "isRequired": true + } + ], "returnComment": [] }, { @@ -26087,7 +26237,7 @@ "\nReturns Kibana Platform *start* life-cycle contract. Useful to return the\nsame contract on server-side and browser-side." ], "signature": [ - "() => ", + "(...args: unknown[]) => ", { "pluginId": "expressions", "scope": "common", @@ -26098,10 +26248,28 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 329 + "lineNumber": 360 }, "deprecated": false, - "children": [], + "children": [ + { + "parentPluginId": "expressions", + "id": "def-common.ExpressionsService.start.$1", + "type": "Array", + "tags": [], + "label": "args", + "description": [], + "signature": [ + "unknown[]" + ], + "source": { + "path": "src/plugins/expressions/common/service/expressions_services.ts", + "lineNumber": 360 + }, + "deprecated": false, + "isRequired": true + } + ], "returnComment": [] }, { @@ -26116,7 +26284,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 333 + "lineNumber": 364 }, "deprecated": false, "children": [], @@ -26648,7 +26816,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 59 + "lineNumber": 58 }, "deprecated": false, "children": [ @@ -26664,7 +26832,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 60 + "lineNumber": 59 }, "deprecated": false, "children": [ @@ -26687,7 +26855,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 60 + "lineNumber": 59 }, "deprecated": false, "isRequired": true @@ -26723,7 +26891,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 62 + "lineNumber": 61 }, "deprecated": false, "children": [ @@ -26754,7 +26922,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 63 + "lineNumber": 62 }, "deprecated": false, "isRequired": true @@ -26782,7 +26950,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 68 + "lineNumber": 67 }, "deprecated": false, "children": [ @@ -26798,7 +26966,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 68 + "lineNumber": 67 }, "deprecated": false, "isRequired": true @@ -26826,7 +26994,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 72 + "lineNumber": 71 }, "deprecated": false, "children": [], @@ -26852,7 +27020,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 76 + "lineNumber": 75 }, "deprecated": false, "children": [], @@ -27013,7 +27181,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 37 + "lineNumber": 36 }, "deprecated": false, "children": [ @@ -27029,7 +27197,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 38 + "lineNumber": 37 }, "deprecated": false, "children": [ @@ -27052,7 +27220,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 38 + "lineNumber": 37 }, "deprecated": false, "isRequired": true @@ -27088,7 +27256,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 40 + "lineNumber": 39 }, "deprecated": false, "children": [ @@ -27119,7 +27287,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 41 + "lineNumber": 40 }, "deprecated": false, "isRequired": true @@ -27147,7 +27315,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 46 + "lineNumber": 45 }, "deprecated": false, "children": [ @@ -27163,7 +27331,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 46 + "lineNumber": 45 }, "deprecated": false, "isRequired": true @@ -27191,7 +27359,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 50 + "lineNumber": 49 }, "deprecated": false, "children": [], @@ -27217,7 +27385,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 54 + "lineNumber": 53 }, "deprecated": false, "children": [], @@ -28102,6 +28270,50 @@ "returnComment": [], "initialIsOpen": false }, + { + "parentPluginId": "expressions", + "id": "def-common.getUiSettingFn", + "type": "Function", + "tags": [], + "label": "getUiSettingFn", + "description": [], + "signature": [ + "({\n getStartDependencies,\n}: UiSettingFnArguments) => ", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.ExpressionFunctionUiSetting", + "text": "ExpressionFunctionUiSetting" + } + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/ui_setting.ts", + "lineNumber": 39 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "expressions", + "id": "def-common.getUiSettingFn.$1", + "type": "Object", + "tags": [], + "label": "{\n getStartDependencies,\n}", + "description": [], + "signature": [ + "UiSettingFnArguments" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/ui_setting.ts", + "lineNumber": 39 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, { "parentPluginId": "expressions", "id": "def-common.isDatatable", @@ -31030,7 +31242,7 @@ "description": [], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 28 + "lineNumber": 27 }, "deprecated": false, "children": [ @@ -31048,7 +31260,7 @@ ], "source": { "path": "src/plugins/expressions/common/executor/executor.ts", - "lineNumber": 34 + "lineNumber": 33 }, "deprecated": false } @@ -31064,7 +31276,7 @@ "description": [], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 42 + "lineNumber": 56 }, "deprecated": false, "children": [ @@ -31087,7 +31299,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 43 + "lineNumber": 57 }, "deprecated": false }, @@ -31103,7 +31315,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 45 + "lineNumber": 59 }, "deprecated": false }, @@ -31121,7 +31333,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 52 + "lineNumber": 66 }, "deprecated": false }, @@ -31146,7 +31358,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 59 + "lineNumber": 73 }, "deprecated": false }, @@ -31162,7 +31374,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 61 + "lineNumber": 75 }, "deprecated": false }, @@ -31178,7 +31390,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 63 + "lineNumber": 77 }, "deprecated": false }, @@ -31201,7 +31413,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 65 + "lineNumber": 79 }, "deprecated": false } @@ -31303,7 +31515,11 @@ "section": "def-common.KnownTypeToString", "text": "KnownTypeToString" }, - "<", + " ? ", + "UnwrapObservable", + " : ", "UnwrapPromiseOrReturn", "> | undefined" ], @@ -31541,27 +31757,6 @@ "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/server/demodata/index.ts", "lineNumber": 32 } - }, - { - "plugin": "canvas", - "link": { - "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/server/escount.ts", - "lineNumber": 33 - } - }, - { - "plugin": "canvas", - "link": { - "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/server/esdocs.ts", - "lineNumber": 36 - } - }, - { - "plugin": "canvas", - "link": { - "path": "x-pack/plugins/canvas/canvas_plugin_src/functions/server/essql.ts", - "lineNumber": 32 - } } ] } @@ -31861,6 +32056,71 @@ }, "deprecated": false }, + { + "parentPluginId": "expressions", + "id": "def-common.ExpressionFunctionDefinitions.overall_metric", + "type": "Object", + "tags": [], + "label": "overall_metric", + "description": [], + "signature": [ + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.ExpressionFunctionDefinition", + "text": "ExpressionFunctionDefinition" + }, + "<\"overall_metric\", ", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.Datatable", + "text": "Datatable" + }, + ", ", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.OverallMetricArgs", + "text": "OverallMetricArgs" + }, + ", ", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.Datatable", + "text": "Datatable" + }, + ", ", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.ExecutionContext", + "text": "ExecutionContext" + }, + "<", + { + "pluginId": "inspector", + "scope": "common", + "docId": "kibInspectorPluginApi", + "section": "def-common.Adapters", + "text": "Adapters" + }, + ", ", + "SerializableState", + ">>" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/types.ts", + "lineNumber": 123 + }, + "deprecated": false + }, { "parentPluginId": "expressions", "id": "def-common.ExpressionFunctionDefinitions.derivative", @@ -31922,7 +32182,7 @@ ], "source": { "path": "src/plugins/expressions/common/expression_functions/types.ts", - "lineNumber": 123 + "lineNumber": 124 }, "deprecated": false }, @@ -31987,7 +32247,7 @@ ], "source": { "path": "src/plugins/expressions/common/expression_functions/types.ts", - "lineNumber": 124 + "lineNumber": 125 }, "deprecated": false } @@ -32254,7 +32514,7 @@ "description": [], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 151 + "lineNumber": 165 }, "deprecated": false, "children": [ @@ -32277,7 +32537,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 152 + "lineNumber": 166 }, "deprecated": false }, @@ -32300,7 +32560,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 153 + "lineNumber": 167 }, "deprecated": false } @@ -32318,7 +32578,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 72 + "lineNumber": 86 }, "deprecated": false, "children": [ @@ -32344,7 +32604,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 79 + "lineNumber": 93 }, "deprecated": false, "returnComment": [], @@ -32358,7 +32618,7 @@ "description": [], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 79 + "lineNumber": 93 }, "deprecated": false } @@ -32386,7 +32646,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 87 + "lineNumber": 101 }, "deprecated": false, "returnComment": [], @@ -32400,7 +32660,7 @@ "description": [], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 87 + "lineNumber": 101 }, "deprecated": false } @@ -32428,7 +32688,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 95 + "lineNumber": 109 }, "deprecated": false, "returnComment": [], @@ -32442,7 +32702,7 @@ "description": [], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 95 + "lineNumber": 109 }, "deprecated": false } @@ -32478,7 +32738,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 121 + "lineNumber": 135 }, "deprecated": false, "returnComment": [], @@ -32502,7 +32762,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 122 + "lineNumber": 136 }, "deprecated": false }, @@ -32518,7 +32778,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 123 + "lineNumber": 137 }, "deprecated": false }, @@ -32541,7 +32801,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 124 + "lineNumber": 138 }, "deprecated": false } @@ -32585,7 +32845,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 132 + "lineNumber": 146 }, "deprecated": false, "returnComment": [], @@ -32609,7 +32869,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 133 + "lineNumber": 147 }, "deprecated": false }, @@ -32625,7 +32885,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 135 + "lineNumber": 149 }, "deprecated": false }, @@ -32648,7 +32908,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 136 + "lineNumber": 150 }, "deprecated": false } @@ -32675,7 +32935,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 148 + "lineNumber": 162 }, "deprecated": false, "returnComment": [], @@ -33343,7 +33603,7 @@ "label": "expression", "description": [], "signature": [ - "((datatable: ", + "(datatable: ", { "pluginId": "expressions", "scope": "common", @@ -33353,7 +33613,7 @@ }, ") => ", "Observable", - ") | undefined" + "" ], "source": { "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", @@ -33493,6 +33753,96 @@ ], "initialIsOpen": false }, + { + "parentPluginId": "expressions", + "id": "def-common.OverallMetricArgs", + "type": "Interface", + "tags": [], + "label": "OverallMetricArgs", + "description": [], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 14 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "expressions", + "id": "def-common.OverallMetricArgs.by", + "type": "Array", + "tags": [], + "label": "by", + "description": [], + "signature": [ + "string[] | undefined" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 15 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.OverallMetricArgs.inputColumnId", + "type": "string", + "tags": [], + "label": "inputColumnId", + "description": [], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 16 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.OverallMetricArgs.outputColumnId", + "type": "string", + "tags": [], + "label": "outputColumnId", + "description": [], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 17 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.OverallMetricArgs.outputColumnName", + "type": "string", + "tags": [], + "label": "outputColumnName", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 18 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.OverallMetricArgs.metric", + "type": "CompoundType", + "tags": [], + "label": "metric", + "description": [], + "signature": [ + "\"max\" | \"min\" | \"sum\" | \"average\"" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 19 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, { "parentPluginId": "expressions", "id": "def-common.PointSeriesColumn", @@ -33738,6 +34088,51 @@ } ], "initialIsOpen": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.UiSettingArguments", + "type": "Interface", + "tags": [], + "label": "UiSettingArguments", + "description": [], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/ui_setting.ts", + "lineNumber": 27 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "expressions", + "id": "def-common.UiSettingArguments.default", + "type": "Unknown", + "tags": [], + "label": "default", + "description": [], + "signature": [ + "unknown" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/ui_setting.ts", + "lineNumber": 28 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.UiSettingArguments.parameter", + "type": "string", + "tags": [], + "label": "parameter", + "description": [], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/ui_setting.ts", + "lineNumber": 29 + }, + "deprecated": false + } + ], + "initialIsOpen": false } ], "enums": [ @@ -34260,16 +34655,16 @@ "pluginId": "expressions", "scope": "common", "docId": "kibExpressionsPluginApi", - "section": "def-common.ExpressionAstFunction", - "text": "ExpressionAstFunction" + "section": "def-common.ExpressionAstExpression", + "text": "ExpressionAstExpression" }, " | ", { "pluginId": "expressions", "scope": "common", "docId": "kibExpressionsPluginApi", - "section": "def-common.ExpressionAstExpression", - "text": "ExpressionAstExpression" + "section": "def-common.ExpressionAstFunction", + "text": "ExpressionAstFunction" } ], "source": { @@ -34569,6 +34964,72 @@ "deprecated": false, "initialIsOpen": false }, + { + "parentPluginId": "expressions", + "id": "def-common.ExpressionFunctionOverallMetric", + "type": "Type", + "tags": [], + "label": "ExpressionFunctionOverallMetric", + "description": [], + "signature": [ + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.ExpressionFunctionDefinition", + "text": "ExpressionFunctionDefinition" + }, + "<\"overall_metric\", ", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.Datatable", + "text": "Datatable" + }, + ", ", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.OverallMetricArgs", + "text": "OverallMetricArgs" + }, + ", ", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.Datatable", + "text": "Datatable" + }, + ", ", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.ExecutionContext", + "text": "ExecutionContext" + }, + "<", + { + "pluginId": "inspector", + "scope": "common", + "docId": "kibInspectorPluginApi", + "section": "def-common.Adapters", + "text": "Adapters" + }, + ", ", + "SerializableState", + ">>" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 22 + }, + "deprecated": false, + "initialIsOpen": false + }, { "parentPluginId": "expressions", "id": "def-common.ExpressionFunctionTheme", @@ -34611,6 +35072,64 @@ "deprecated": false, "initialIsOpen": false }, + { + "parentPluginId": "expressions", + "id": "def-common.ExpressionFunctionUiSetting", + "type": "Type", + "tags": [], + "label": "ExpressionFunctionUiSetting", + "description": [], + "signature": [ + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.ExpressionFunctionDefinition", + "text": "ExpressionFunctionDefinition" + }, + "<\"uiSetting\", unknown, ", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.UiSettingArguments", + "text": "UiSettingArguments" + }, + ", Promise<", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.ExpressionValueBoxed", + "text": "ExpressionValueBoxed" + }, + "<\"ui_setting\", { key: string; value: unknown; }>>, ", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.ExecutionContext", + "text": "ExecutionContext" + }, + "<", + { + "pluginId": "inspector", + "scope": "common", + "docId": "kibInspectorPluginApi", + "section": "def-common.Adapters", + "text": "Adapters" + }, + ", ", + "SerializableState", + ">>" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/ui_setting.ts", + "lineNumber": 32 + }, + "deprecated": false, + "initialIsOpen": false + }, { "parentPluginId": "expressions", "id": "def-common.ExpressionFunctionVar", @@ -34829,7 +35348,7 @@ ], "source": { "path": "src/plugins/expressions/common/service/expressions_services.ts", - "lineNumber": 27 + "lineNumber": 41 }, "deprecated": false, "initialIsOpen": false @@ -35055,30 +35574,6 @@ "deprecated": false, "initialIsOpen": false }, - { - "parentPluginId": "expressions", - "id": "def-common.functionSpecs", - "type": "Array", - "tags": [], - "label": "functionSpecs", - "description": [], - "signature": [ - { - "pluginId": "expressions", - "scope": "common", - "docId": "kibExpressionsPluginApi", - "section": "def-common.AnyExpressionFunctionDefinition", - "text": "AnyExpressionFunctionDefinition" - }, - "[]" - ], - "source": { - "path": "src/plugins/expressions/common/expression_functions/specs/index.ts", - "lineNumber": 21 - }, - "deprecated": false, - "initialIsOpen": false - }, { "parentPluginId": "expressions", "id": "def-common.InferFunctionDefinition", @@ -35176,6 +35671,30 @@ "deprecated": false, "initialIsOpen": false }, + { + "parentPluginId": "expressions", + "id": "def-common.MathColumnArguments", + "type": "Type", + "tags": [], + "label": "MathColumnArguments", + "description": [], + "signature": [ + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.MathArguments", + "text": "MathArguments" + }, + " & { id: string; name?: string | undefined; copyMetaFrom?: string | null | undefined; }" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", + "lineNumber": 14 + }, + "deprecated": false, + "initialIsOpen": false + }, { "parentPluginId": "expressions", "id": "def-common.MathInput", @@ -35572,7 +36091,7 @@ ], "source": { "path": "src/plugins/expressions/common/expression_types/specs/index.ts", - "lineNumber": 25 + "lineNumber": 26 }, "deprecated": false, "initialIsOpen": false @@ -35659,6 +36178,23 @@ "deprecated": false, "initialIsOpen": false }, + { + "parentPluginId": "expressions", + "id": "def-common.UiSetting", + "type": "Type", + "tags": [], + "label": "UiSetting", + "description": [], + "signature": [ + "{ type: \"ui_setting\"; } & { key: string; value: unknown; }" + ], + "source": { + "path": "src/plugins/expressions/common/expression_types/specs/ui_setting.ts", + "lineNumber": 31 + }, + "deprecated": false, + "initialIsOpen": false + }, { "parentPluginId": "expressions", "id": "def-common.UnmappedTypeStrings", @@ -39324,7 +39860,9 @@ "section": "def-common.MapColumnArguments", "text": "MapColumnArguments" }, - ") => Promise<", + ") => ", + "Observable", + "<", { "pluginId": "expressions", "scope": "common", @@ -39685,6 +40223,466 @@ ], "initialIsOpen": false }, + { + "parentPluginId": "expressions", + "id": "def-common.mathColumn", + "type": "Object", + "tags": [], + "label": "mathColumn", + "description": [], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", + "lineNumber": 20 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "expressions", + "id": "def-common.mathColumn.name", + "type": "string", + "tags": [], + "label": "name", + "description": [], + "signature": [ + "\"mathColumn\"" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", + "lineNumber": 26 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.mathColumn.type", + "type": "string", + "tags": [], + "label": "type", + "description": [], + "signature": [ + "\"datatable\"" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", + "lineNumber": 27 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.mathColumn.inputTypes", + "type": "Array", + "tags": [], + "label": "inputTypes", + "description": [], + "signature": [ + "\"datatable\"[]" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", + "lineNumber": 28 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.mathColumn.help", + "type": "string", + "tags": [], + "label": "help", + "description": [], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", + "lineNumber": 29 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.mathColumn.args", + "type": "Object", + "tags": [], + "label": "args", + "description": [], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", + "lineNumber": 39 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "expressions", + "id": "def-common.mathColumn.args.Unnamed", + "type": "Any", + "tags": [], + "label": "Unnamed", + "description": [], + "signature": [ + "any" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", + "lineNumber": 40 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.mathColumn.args.id", + "type": "Object", + "tags": [], + "label": "id", + "description": [], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", + "lineNumber": 41 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "expressions", + "id": "def-common.mathColumn.args.id.types", + "type": "Array", + "tags": [], + "label": "types", + "description": [], + "signature": [ + "\"string\"[]" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", + "lineNumber": 42 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.mathColumn.args.id.help", + "type": "string", + "tags": [], + "label": "help", + "description": [], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", + "lineNumber": 43 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.mathColumn.args.id.required", + "type": "boolean", + "tags": [], + "label": "required", + "description": [], + "signature": [ + "true" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", + "lineNumber": 46 + }, + "deprecated": false + } + ] + }, + { + "parentPluginId": "expressions", + "id": "def-common.mathColumn.args.name", + "type": "Object", + "tags": [], + "label": "name", + "description": [], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", + "lineNumber": 48 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "expressions", + "id": "def-common.mathColumn.args.name.types", + "type": "Array", + "tags": [], + "label": "types", + "description": [], + "signature": [ + "\"string\"[]" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", + "lineNumber": 49 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.mathColumn.args.name.aliases", + "type": "Array", + "tags": [], + "label": "aliases", + "description": [], + "signature": [ + "string[]" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", + "lineNumber": 50 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.mathColumn.args.name.help", + "type": "string", + "tags": [], + "label": "help", + "description": [], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", + "lineNumber": 51 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.mathColumn.args.name.required", + "type": "boolean", + "tags": [], + "label": "required", + "description": [], + "signature": [ + "true" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", + "lineNumber": 54 + }, + "deprecated": false + } + ] + }, + { + "parentPluginId": "expressions", + "id": "def-common.mathColumn.args.copyMetaFrom", + "type": "Object", + "tags": [], + "label": "copyMetaFrom", + "description": [], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", + "lineNumber": 56 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "expressions", + "id": "def-common.mathColumn.args.copyMetaFrom.types", + "type": "Array", + "tags": [], + "label": "types", + "description": [], + "signature": [ + "(\"string\" | \"null\")[]" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", + "lineNumber": 57 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.mathColumn.args.copyMetaFrom.help", + "type": "string", + "tags": [], + "label": "help", + "description": [], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", + "lineNumber": 58 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.mathColumn.args.copyMetaFrom.required", + "type": "boolean", + "tags": [], + "label": "required", + "description": [], + "signature": [ + "false" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", + "lineNumber": 62 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.mathColumn.args.copyMetaFrom.default", + "type": "Uncategorized", + "tags": [], + "label": "default", + "description": [], + "signature": [ + "null" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", + "lineNumber": 63 + }, + "deprecated": false + } + ] + } + ] + }, + { + "parentPluginId": "expressions", + "id": "def-common.mathColumn.fn", + "type": "Function", + "tags": [], + "label": "fn", + "description": [], + "signature": [ + "(input: ", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.Datatable", + "text": "Datatable" + }, + ", args: ", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.MathColumnArguments", + "text": "MathColumnArguments" + }, + ", context: ", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.ExecutionContext", + "text": "ExecutionContext" + }, + "<", + { + "pluginId": "inspector", + "scope": "common", + "docId": "kibInspectorPluginApi", + "section": "def-common.Adapters", + "text": "Adapters" + }, + ", ", + "SerializableState", + ">) => ", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.Datatable", + "text": "Datatable" + } + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", + "lineNumber": 66 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "expressions", + "id": "def-common.mathColumn.fn.$1", + "type": "Object", + "tags": [], + "label": "input", + "description": [], + "signature": [ + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.Datatable", + "text": "Datatable" + } + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", + "lineNumber": 66 + }, + "deprecated": false, + "isRequired": true + }, + { + "parentPluginId": "expressions", + "id": "def-common.mathColumn.fn.$2", + "type": "CompoundType", + "tags": [], + "label": "args", + "description": [], + "signature": [ + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.MathColumnArguments", + "text": "MathColumnArguments" + } + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", + "lineNumber": 66 + }, + "deprecated": false, + "isRequired": true + }, + { + "parentPluginId": "expressions", + "id": "def-common.mathColumn.fn.$3", + "type": "Object", + "tags": [], + "label": "context", + "description": [], + "signature": [ + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.ExecutionContext", + "text": "ExecutionContext" + }, + "<", + { + "pluginId": "inspector", + "scope": "common", + "docId": "kibInspectorPluginApi", + "section": "def-common.Adapters", + "text": "Adapters" + }, + ", ", + "SerializableState", + ">" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", + "lineNumber": 66 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [] + } + ], + "initialIsOpen": false + }, { "parentPluginId": "expressions", "id": "def-common.movingAverage", @@ -40840,6 +41838,504 @@ "deprecated": false, "initialIsOpen": false }, + { + "parentPluginId": "expressions", + "id": "def-common.overallMetric", + "type": "Object", + "tags": [], + "label": "overallMetric", + "description": [ + "\nCalculates the overall metric of a specified column in the data table.\n\nAlso supports multiple series in a single data table - use the `by` argument\nto specify the columns to split the calculation by.\nFor each unique combination of all `by` columns a separate overall metric will be calculated.\nThe order of rows won't be changed - this function is not modifying any existing columns, it's only\nadding the specified `outputColumnId` column to every row of the table without adding or removing rows.\n\nBehavior:\n* Will write the overall metric of `inputColumnId` into `outputColumnId`\n* If provided will use `outputColumnName` as name for the newly created column. Otherwise falls back to `outputColumnId`\n* Each cell will contain the calculated metric based on the values of all cells belonging to the current series.\n\nEdge cases:\n* Will return the input table if `inputColumnId` does not exist\n* Will throw an error if `outputColumnId` exists already in provided data table\n* If the row value contains `null` or `undefined`, it will be ignored and overwritten with the overall metric of\n all cells of the same series.\n* For all values besides `null` and `undefined`, the value will be cast to a number before it's added to the\n overall metric of the current series - if this results in `NaN` (like in case of objects), all cells of the\n current series will be set to `NaN`.\n* To determine separate series defined by the `by` columns, the values of these columns will be cast to strings\n before comparison. If the values are objects, the return value of their `toString` method will be used for comparison.\n Missing values (`null` and `undefined`) will be treated as empty strings." + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 63 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "expressions", + "id": "def-common.overallMetric.name", + "type": "string", + "tags": [], + "label": "name", + "description": [], + "signature": [ + "\"overall_metric\"" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 64 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.overallMetric.type", + "type": "string", + "tags": [], + "label": "type", + "description": [], + "signature": [ + "\"datatable\"" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 65 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.overallMetric.inputTypes", + "type": "Array", + "tags": [], + "label": "inputTypes", + "description": [], + "signature": [ + "\"datatable\"[]" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 67 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.overallMetric.help", + "type": "string", + "tags": [], + "label": "help", + "description": [], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 69 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.overallMetric.args", + "type": "Object", + "tags": [], + "label": "args", + "description": [], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 73 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "expressions", + "id": "def-common.overallMetric.args.by", + "type": "Object", + "tags": [], + "label": "by", + "description": [], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 74 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "expressions", + "id": "def-common.overallMetric.args.by.help", + "type": "string", + "tags": [], + "label": "help", + "description": [], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 75 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.overallMetric.args.by.multi", + "type": "boolean", + "tags": [], + "label": "multi", + "description": [], + "signature": [ + "true" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 78 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.overallMetric.args.by.types", + "type": "Array", + "tags": [], + "label": "types", + "description": [], + "signature": [ + "\"string\"[]" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 79 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.overallMetric.args.by.required", + "type": "boolean", + "tags": [], + "label": "required", + "description": [], + "signature": [ + "false" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 80 + }, + "deprecated": false + } + ] + }, + { + "parentPluginId": "expressions", + "id": "def-common.overallMetric.args.metric", + "type": "Object", + "tags": [], + "label": "metric", + "description": [], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 82 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "expressions", + "id": "def-common.overallMetric.args.metric.help", + "type": "string", + "tags": [], + "label": "help", + "description": [], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 83 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.overallMetric.args.metric.types", + "type": "Array", + "tags": [], + "label": "types", + "description": [], + "signature": [ + "\"string\"[]" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 86 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.overallMetric.args.metric.options", + "type": "Array", + "tags": [], + "label": "options", + "description": [], + "signature": [ + "(\"min\" | \"max\" | \"sum\" | \"average\")[]" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 87 + }, + "deprecated": false + } + ] + }, + { + "parentPluginId": "expressions", + "id": "def-common.overallMetric.args.inputColumnId", + "type": "Object", + "tags": [], + "label": "inputColumnId", + "description": [], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 89 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "expressions", + "id": "def-common.overallMetric.args.inputColumnId.help", + "type": "string", + "tags": [], + "label": "help", + "description": [], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 90 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.overallMetric.args.inputColumnId.types", + "type": "Array", + "tags": [], + "label": "types", + "description": [], + "signature": [ + "\"string\"[]" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 93 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.overallMetric.args.inputColumnId.required", + "type": "boolean", + "tags": [], + "label": "required", + "description": [], + "signature": [ + "true" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 94 + }, + "deprecated": false + } + ] + }, + { + "parentPluginId": "expressions", + "id": "def-common.overallMetric.args.outputColumnId", + "type": "Object", + "tags": [], + "label": "outputColumnId", + "description": [], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 96 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "expressions", + "id": "def-common.overallMetric.args.outputColumnId.help", + "type": "string", + "tags": [], + "label": "help", + "description": [], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 97 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.overallMetric.args.outputColumnId.types", + "type": "Array", + "tags": [], + "label": "types", + "description": [], + "signature": [ + "\"string\"[]" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 100 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.overallMetric.args.outputColumnId.required", + "type": "boolean", + "tags": [], + "label": "required", + "description": [], + "signature": [ + "true" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 101 + }, + "deprecated": false + } + ] + }, + { + "parentPluginId": "expressions", + "id": "def-common.overallMetric.args.outputColumnName", + "type": "Object", + "tags": [], + "label": "outputColumnName", + "description": [], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 103 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "expressions", + "id": "def-common.overallMetric.args.outputColumnName.help", + "type": "string", + "tags": [], + "label": "help", + "description": [], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 104 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.overallMetric.args.outputColumnName.types", + "type": "Array", + "tags": [], + "label": "types", + "description": [], + "signature": [ + "\"string\"[]" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 107 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.overallMetric.args.outputColumnName.required", + "type": "boolean", + "tags": [], + "label": "required", + "description": [], + "signature": [ + "false" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 108 + }, + "deprecated": false + } + ] + } + ] + }, + { + "parentPluginId": "expressions", + "id": "def-common.overallMetric.fn", + "type": "Function", + "tags": [], + "label": "fn", + "description": [], + "signature": [ + "(input: ", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.Datatable", + "text": "Datatable" + }, + ", { by, inputColumnId, outputColumnId, outputColumnName, metric }: ", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.OverallMetricArgs", + "text": "OverallMetricArgs" + }, + ") => ", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.Datatable", + "text": "Datatable" + } + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 112 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "expressions", + "id": "def-common.overallMetric.fn.$1", + "type": "Object", + "tags": [], + "label": "input", + "description": [], + "signature": [ + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.Datatable", + "text": "Datatable" + } + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 112 + }, + "deprecated": false, + "isRequired": true + }, + { + "parentPluginId": "expressions", + "id": "def-common.overallMetric.fn.$2", + "type": "Object", + "tags": [], + "label": "{ by, inputColumnId, outputColumnId, outputColumnName, metric }", + "description": [], + "signature": [ + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.OverallMetricArgs", + "text": "OverallMetricArgs" + } + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", + "lineNumber": 112 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [] + } + ], + "initialIsOpen": false + }, { "parentPluginId": "expressions", "id": "def-common.palatino", @@ -42400,6 +43896,323 @@ ], "initialIsOpen": false }, + { + "parentPluginId": "expressions", + "id": "def-common.uiSetting", + "type": "Object", + "tags": [], + "label": "uiSetting", + "description": [], + "source": { + "path": "src/plugins/expressions/common/expression_types/specs/ui_setting.ts", + "lineNumber": 33 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "expressions", + "id": "def-common.uiSetting.name", + "type": "string", + "tags": [], + "label": "name", + "description": [], + "signature": [ + "\"ui_setting\"" + ], + "source": { + "path": "src/plugins/expressions/common/expression_types/specs/ui_setting.ts", + "lineNumber": 34 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.uiSetting.to", + "type": "Object", + "tags": [], + "label": "to", + "description": [], + "source": { + "path": "src/plugins/expressions/common/expression_types/specs/ui_setting.ts", + "lineNumber": 35 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "expressions", + "id": "def-common.uiSetting.to.boolean", + "type": "Function", + "tags": [], + "label": "boolean", + "description": [], + "signature": [ + "({ value }: ", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.ExpressionValueBoxed", + "text": "ExpressionValueBoxed" + }, + "<\"ui_setting\", { key: string; value: unknown; }>) => boolean" + ], + "source": { + "path": "src/plugins/expressions/common/expression_types/specs/ui_setting.ts", + "lineNumber": 36 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "expressions", + "id": "def-common.uiSetting.to.boolean.$1", + "type": "CompoundType", + "tags": [], + "label": "{ value }", + "description": [], + "signature": [ + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.ExpressionValueBoxed", + "text": "ExpressionValueBoxed" + }, + "<\"ui_setting\", { key: string; value: unknown; }>" + ], + "source": { + "path": "src/plugins/expressions/common/expression_types/specs/ui_setting.ts", + "lineNumber": 36 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [] + }, + { + "parentPluginId": "expressions", + "id": "def-common.uiSetting.to.number", + "type": "Function", + "tags": [], + "label": "number", + "description": [], + "signature": [ + "({ value }: ", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.ExpressionValueBoxed", + "text": "ExpressionValueBoxed" + }, + "<\"ui_setting\", { key: string; value: unknown; }>) => number" + ], + "source": { + "path": "src/plugins/expressions/common/expression_types/specs/ui_setting.ts", + "lineNumber": 39 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "expressions", + "id": "def-common.uiSetting.to.number.$1", + "type": "CompoundType", + "tags": [], + "label": "{ value }", + "description": [], + "signature": [ + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.ExpressionValueBoxed", + "text": "ExpressionValueBoxed" + }, + "<\"ui_setting\", { key: string; value: unknown; }>" + ], + "source": { + "path": "src/plugins/expressions/common/expression_types/specs/ui_setting.ts", + "lineNumber": 39 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [] + }, + { + "parentPluginId": "expressions", + "id": "def-common.uiSetting.to.string", + "type": "Function", + "tags": [], + "label": "string", + "description": [], + "signature": [ + "({ value }: ", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.ExpressionValueBoxed", + "text": "ExpressionValueBoxed" + }, + "<\"ui_setting\", { key: string; value: unknown; }>) => string" + ], + "source": { + "path": "src/plugins/expressions/common/expression_types/specs/ui_setting.ts", + "lineNumber": 42 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "expressions", + "id": "def-common.uiSetting.to.string.$1", + "type": "CompoundType", + "tags": [], + "label": "{ value }", + "description": [], + "signature": [ + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.ExpressionValueBoxed", + "text": "ExpressionValueBoxed" + }, + "<\"ui_setting\", { key: string; value: unknown; }>" + ], + "source": { + "path": "src/plugins/expressions/common/expression_types/specs/ui_setting.ts", + "lineNumber": 42 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [] + }, + { + "parentPluginId": "expressions", + "id": "def-common.uiSetting.to.render", + "type": "Function", + "tags": [], + "label": "render", + "description": [], + "signature": [ + "({ value }: ", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.ExpressionValueBoxed", + "text": "ExpressionValueBoxed" + }, + "<\"ui_setting\", { key: string; value: unknown; }>) => ", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.ExpressionValueBoxed", + "text": "ExpressionValueBoxed" + }, + "<\"render\", { as: string; value: { text: string; }; }>" + ], + "source": { + "path": "src/plugins/expressions/common/expression_types/specs/ui_setting.ts", + "lineNumber": 45 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "expressions", + "id": "def-common.uiSetting.to.render.$1", + "type": "CompoundType", + "tags": [], + "label": "{ value }", + "description": [], + "signature": [ + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.ExpressionValueBoxed", + "text": "ExpressionValueBoxed" + }, + "<\"ui_setting\", { key: string; value: unknown; }>" + ], + "source": { + "path": "src/plugins/expressions/common/expression_types/specs/ui_setting.ts", + "lineNumber": 45 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [] + }, + { + "parentPluginId": "expressions", + "id": "def-common.uiSetting.to.datatable", + "type": "Function", + "tags": [], + "label": "datatable", + "description": [], + "signature": [ + "({ key, value }: ", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.ExpressionValueBoxed", + "text": "ExpressionValueBoxed" + }, + "<\"ui_setting\", { key: string; value: unknown; }>) => ", + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.Datatable", + "text": "Datatable" + } + ], + "source": { + "path": "src/plugins/expressions/common/expression_types/specs/ui_setting.ts", + "lineNumber": 57 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "expressions", + "id": "def-common.uiSetting.to.datatable.$1", + "type": "CompoundType", + "tags": [], + "label": "{ key, value }", + "description": [], + "signature": [ + { + "pluginId": "expressions", + "scope": "common", + "docId": "kibExpressionsPluginApi", + "section": "def-common.ExpressionValueBoxed", + "text": "ExpressionValueBoxed" + }, + "<\"ui_setting\", { key: string; value: unknown; }>" + ], + "source": { + "path": "src/plugins/expressions/common/expression_types/specs/ui_setting.ts", + "lineNumber": 57 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [] + } + ] + } + ], + "initialIsOpen": false + }, { "parentPluginId": "expressions", "id": "def-common.variable", @@ -42757,6 +44570,22 @@ }, "deprecated": false }, + { + "parentPluginId": "expressions", + "id": "def-common.variableSet.args.name.multi", + "type": "boolean", + "tags": [], + "label": "multi", + "description": [], + "signature": [ + "true" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/var_set.ts", + "lineNumber": 34 + }, + "deprecated": false + }, { "parentPluginId": "expressions", "id": "def-common.variableSet.args.name.help", @@ -42766,7 +44595,7 @@ "description": [], "source": { "path": "src/plugins/expressions/common/expression_functions/specs/var_set.ts", - "lineNumber": 34 + "lineNumber": 35 }, "deprecated": false } @@ -42781,7 +44610,7 @@ "description": [], "source": { "path": "src/plugins/expressions/common/expression_functions/specs/var_set.ts", - "lineNumber": 38 + "lineNumber": 39 }, "deprecated": false, "children": [ @@ -42797,7 +44626,23 @@ ], "source": { "path": "src/plugins/expressions/common/expression_functions/specs/var_set.ts", - "lineNumber": 39 + "lineNumber": 40 + }, + "deprecated": false + }, + { + "parentPluginId": "expressions", + "id": "def-common.variableSet.args.value.multi", + "type": "boolean", + "tags": [], + "label": "multi", + "description": [], + "signature": [ + "true" + ], + "source": { + "path": "src/plugins/expressions/common/expression_functions/specs/var_set.ts", + "lineNumber": 41 }, "deprecated": false }, @@ -42810,7 +44655,7 @@ "description": [], "source": { "path": "src/plugins/expressions/common/expression_functions/specs/var_set.ts", - "lineNumber": 40 + "lineNumber": 42 }, "deprecated": false } @@ -42848,7 +44693,7 @@ ], "source": { "path": "src/plugins/expressions/common/expression_functions/specs/var_set.ts", - "lineNumber": 46 + "lineNumber": 48 }, "deprecated": false, "children": [ @@ -42864,7 +44709,7 @@ ], "source": { "path": "src/plugins/expressions/common/expression_functions/specs/var_set.ts", - "lineNumber": 46 + "lineNumber": 48 }, "deprecated": false, "isRequired": true @@ -42881,7 +44726,7 @@ ], "source": { "path": "src/plugins/expressions/common/expression_functions/specs/var_set.ts", - "lineNumber": 46 + "lineNumber": 48 }, "deprecated": false, "isRequired": true @@ -42915,7 +44760,7 @@ ], "source": { "path": "src/plugins/expressions/common/expression_functions/specs/var_set.ts", - "lineNumber": 46 + "lineNumber": 48 }, "deprecated": false, "isRequired": true diff --git a/api_docs/expressions.mdx b/api_docs/expressions.mdx index e0544d866766e..3d9640a85709a 100644 --- a/api_docs/expressions.mdx +++ b/api_docs/expressions.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressions'] warning: 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. --- - import expressionsObj from './expressions.json'; @@ -19,7 +18,7 @@ import expressionsObj from './expressions.json'; | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 1871 | 57 | 1444 | 5 | +| 1962 | 58 | 1534 | 5 | ## Client diff --git a/api_docs/features.mdx b/api_docs/features.mdx index 377945d852ddd..6bead616a2913 100644 --- a/api_docs/features.mdx +++ b/api_docs/features.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'features'] warning: 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. --- - import featuresObj from './features.json'; diff --git a/api_docs/file_upload.mdx b/api_docs/file_upload.mdx index acd0ed52e4182..1905e3f2b9e2e 100644 --- a/api_docs/file_upload.mdx +++ b/api_docs/file_upload.mdx @@ -8,12 +8,11 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'fileUpload'] warning: 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. --- - import fileUploadObj from './file_upload.json'; +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. - - +Contact [Machine Learning UI](https://github.com/orgs/elastic/teams/ml-ui) for questions regarding this plugin. **Code health stats** diff --git a/api_docs/fleet.json b/api_docs/fleet.json index bb7e899062640..3d6ebe953944c 100644 --- a/api_docs/fleet.json +++ b/api_docs/fleet.json @@ -234,6 +234,37 @@ ], "initialIsOpen": false }, + { + "parentPluginId": "fleet", + "id": "def-public.IntegrationsAppBrowseRouteState", + "type": "Interface", + "tags": [], + "label": "IntegrationsAppBrowseRouteState", + "description": [], + "source": { + "path": "x-pack/plugins/fleet/public/types/intra_app_route_state.ts", + "lineNumber": 42 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "fleet", + "id": "def-public.IntegrationsAppBrowseRouteState.forAgentPolicyId", + "type": "string", + "tags": [], + "label": "forAgentPolicyId", + "description": [ + "The agent policy that we are browsing integrations for" + ], + "source": { + "path": "x-pack/plugins/fleet/public/types/intra_app_route_state.ts", + "lineNumber": 44 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, { "parentPluginId": "fleet", "id": "def-public.NewPackagePolicy", @@ -243,7 +274,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 52 + "lineNumber": 53 }, "deprecated": false, "children": [ @@ -256,7 +287,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 53 + "lineNumber": 54 }, "deprecated": false }, @@ -272,7 +303,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 54 + "lineNumber": 55 }, "deprecated": false }, @@ -285,7 +316,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 55 + "lineNumber": 56 }, "deprecated": false }, @@ -298,7 +329,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 56 + "lineNumber": 57 }, "deprecated": false }, @@ -311,7 +342,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 57 + "lineNumber": 58 }, "deprecated": false }, @@ -324,7 +355,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 58 + "lineNumber": 59 }, "deprecated": false }, @@ -347,7 +378,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 59 + "lineNumber": 60 }, "deprecated": false }, @@ -370,7 +401,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 60 + "lineNumber": 61 }, "deprecated": false }, @@ -394,7 +425,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 61 + "lineNumber": 62 }, "deprecated": false } @@ -1168,7 +1199,7 @@ ], "source": { "path": "x-pack/plugins/fleet/public/types/intra_app_route_state.ts", - "lineNumber": 45 + "lineNumber": 50 }, "deprecated": false, "initialIsOpen": false @@ -1357,7 +1388,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "lineNumber": 73 + "lineNumber": 79 }, "deprecated": false, "children": [ @@ -1373,7 +1404,7 @@ ], "source": { "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "lineNumber": 79 + "lineNumber": 85 }, "deprecated": false, "children": [], @@ -1391,7 +1422,7 @@ ], "source": { "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "lineNumber": 80 + "lineNumber": 86 }, "deprecated": false, "children": [], @@ -1409,7 +1440,7 @@ ], "source": { "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "lineNumber": 81 + "lineNumber": 87 }, "deprecated": false, "children": [], @@ -1427,7 +1458,7 @@ ], "source": { "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "lineNumber": 82 + "lineNumber": 88 }, "deprecated": false, "children": [], @@ -1445,7 +1476,7 @@ ], "source": { "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "lineNumber": 83 + "lineNumber": 89 }, "deprecated": false, "children": [], @@ -1465,7 +1496,7 @@ ], "source": { "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "lineNumber": 84 + "lineNumber": 90 }, "deprecated": false, "children": [ @@ -1481,7 +1512,7 @@ ], "source": { "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "lineNumber": 84 + "lineNumber": 90 }, "deprecated": false, "isRequired": true @@ -1497,13 +1528,13 @@ "label": "integration_details_policies", "description": [], "signature": [ - "({ pkgkey, integration }: ", + "({ pkgkey, integration, addAgentToPolicyId }: ", "DynamicPagePathValues", ") => [string, string]" ], "source": { "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "lineNumber": 88 + "lineNumber": 94 }, "deprecated": false, "children": [ @@ -1512,6 +1543,44 @@ "id": "def-public.pagePathGetters.integration_details_policies.$1", "type": "Object", "tags": [], + "label": "{ pkgkey, integration, addAgentToPolicyId }", + "description": [], + "signature": [ + "DynamicPagePathValues" + ], + "source": { + "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", + "lineNumber": 94 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [] + }, + { + "parentPluginId": "fleet", + "id": "def-public.pagePathGetters.integration_details_assets", + "type": "Function", + "tags": [], + "label": "integration_details_assets", + "description": [], + "signature": [ + "({ pkgkey, integration }: ", + "DynamicPagePathValues", + ") => [string, string]" + ], + "source": { + "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", + "lineNumber": 98 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "fleet", + "id": "def-public.pagePathGetters.integration_details_assets.$1", + "type": "Object", + "tags": [], "label": "{ pkgkey, integration }", "description": [], "signature": [ @@ -1519,7 +1588,7 @@ ], "source": { "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "lineNumber": 88 + "lineNumber": 98 }, "deprecated": false, "isRequired": true @@ -1541,7 +1610,7 @@ ], "source": { "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "lineNumber": 92 + "lineNumber": 102 }, "deprecated": false, "children": [ @@ -1557,7 +1626,7 @@ ], "source": { "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "lineNumber": 92 + "lineNumber": 102 }, "deprecated": false, "isRequired": true @@ -1579,7 +1648,7 @@ ], "source": { "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "lineNumber": 96 + "lineNumber": 106 }, "deprecated": false, "children": [ @@ -1595,7 +1664,7 @@ ], "source": { "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "lineNumber": 96 + "lineNumber": 106 }, "deprecated": false, "isRequired": true @@ -1617,7 +1686,7 @@ ], "source": { "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "lineNumber": 100 + "lineNumber": 110 }, "deprecated": false, "children": [ @@ -1633,7 +1702,7 @@ ], "source": { "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "lineNumber": 100 + "lineNumber": 110 }, "deprecated": false, "isRequired": true @@ -1653,7 +1722,7 @@ ], "source": { "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "lineNumber": 104 + "lineNumber": 114 }, "deprecated": false, "children": [], @@ -1671,7 +1740,7 @@ ], "source": { "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "lineNumber": 105 + "lineNumber": 115 }, "deprecated": false, "children": [], @@ -1691,7 +1760,7 @@ ], "source": { "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "lineNumber": 106 + "lineNumber": 116 }, "deprecated": false, "children": [ @@ -1707,7 +1776,7 @@ ], "source": { "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "lineNumber": 106 + "lineNumber": 116 }, "deprecated": false, "isRequired": true @@ -1721,7 +1790,9 @@ "type": "Function", "tags": [], "label": "add_integration_from_policy", - "description": [], + "description": [ + "// TODO: This might need to be removed because we do not have a way to pick an integration in line anymore" + ], "signature": [ "({ policyId }: ", "DynamicPagePathValues", @@ -1729,7 +1800,7 @@ ], "source": { "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "lineNumber": 110 + "lineNumber": 121 }, "deprecated": false, "children": [ @@ -1745,7 +1816,7 @@ ], "source": { "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "lineNumber": 110 + "lineNumber": 121 }, "deprecated": false, "isRequired": true @@ -1761,13 +1832,13 @@ "label": "add_integration_to_policy", "description": [], "signature": [ - "({ pkgkey, integration }: ", + "({ pkgkey, integration, agentPolicyId }: ", "DynamicPagePathValues", ") => [string, string]" ], "source": { "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "lineNumber": 114 + "lineNumber": 125 }, "deprecated": false, "children": [ @@ -1776,14 +1847,14 @@ "id": "def-public.pagePathGetters.add_integration_to_policy.$1", "type": "Object", "tags": [], - "label": "{ pkgkey, integration }", + "label": "{ pkgkey, integration, agentPolicyId }", "description": [], "signature": [ "DynamicPagePathValues" ], "source": { "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "lineNumber": 114 + "lineNumber": 125 }, "deprecated": false, "isRequired": true @@ -1805,7 +1876,7 @@ ], "source": { "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "lineNumber": 118 + "lineNumber": 130 }, "deprecated": false, "children": [ @@ -1821,7 +1892,7 @@ ], "source": { "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "lineNumber": 118 + "lineNumber": 130 }, "deprecated": false, "isRequired": true @@ -1831,53 +1902,73 @@ }, { "parentPluginId": "fleet", - "id": "def-public.pagePathGetters.fleet", + "id": "def-public.pagePathGetters.agent_list", "type": "Function", "tags": [], - "label": "fleet", + "label": "agent_list", "description": [], "signature": [ - "() => [string, string]" + "({ kuery }: ", + "DynamicPagePathValues", + ") => [string, string]" ], "source": { "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "lineNumber": 122 + "lineNumber": 134 }, "deprecated": false, - "children": [], + "children": [ + { + "parentPluginId": "fleet", + "id": "def-public.pagePathGetters.agent_list.$1", + "type": "Object", + "tags": [], + "label": "{ kuery }", + "description": [], + "signature": [ + "DynamicPagePathValues" + ], + "source": { + "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", + "lineNumber": 134 + }, + "deprecated": false, + "isRequired": true + } + ], "returnComment": [] }, { "parentPluginId": "fleet", - "id": "def-public.pagePathGetters.fleet_agent_list", + "id": "def-public.pagePathGetters.agent_details", "type": "Function", "tags": [], - "label": "fleet_agent_list", + "label": "agent_details", "description": [], "signature": [ - "({ kuery }: ", + "({ agentId, tabId, logQuery }: ", "DynamicPagePathValues", ") => [string, string]" ], "source": { "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "lineNumber": 123 + "lineNumber": 135 }, "deprecated": false, "children": [ { "parentPluginId": "fleet", - "id": "def-public.pagePathGetters.fleet_agent_list.$1", + "id": "def-public.pagePathGetters.agent_details.$1", "type": "Object", "tags": [], - "label": "{ kuery }", + "label": "{ agentId, tabId, logQuery }", "description": [], "signature": [ "DynamicPagePathValues" ], "source": { "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "lineNumber": 123 + "lineNumber": 135 }, "deprecated": false, "isRequired": true @@ -1887,35 +1978,35 @@ }, { "parentPluginId": "fleet", - "id": "def-public.pagePathGetters.fleet_agent_details", + "id": "def-public.pagePathGetters.agent_details_logs", "type": "Function", "tags": [], - "label": "fleet_agent_details", + "label": "agent_details_logs", "description": [], "signature": [ - "({ agentId, tabId, logQuery }: ", + "({ agentId }: ", "DynamicPagePathValues", ") => [string, string]" ], "source": { "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "lineNumber": 127 + "lineNumber": 139 }, "deprecated": false, "children": [ { "parentPluginId": "fleet", - "id": "def-public.pagePathGetters.fleet_agent_details.$1", + "id": "def-public.pagePathGetters.agent_details_logs.$1", "type": "Object", "tags": [], - "label": "{ agentId, tabId, logQuery }", + "label": "{ agentId }", "description": [], "signature": [ "DynamicPagePathValues" ], "source": { "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "lineNumber": 127 + "lineNumber": 139 }, "deprecated": false, "isRequired": true @@ -1925,17 +2016,17 @@ }, { "parentPluginId": "fleet", - "id": "def-public.pagePathGetters.fleet_enrollment_tokens", + "id": "def-public.pagePathGetters.enrollment_tokens", "type": "Function", "tags": [], - "label": "fleet_enrollment_tokens", + "label": "enrollment_tokens", "description": [], "signature": [ "() => [string, string]" ], "source": { "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "lineNumber": 131 + "lineNumber": 140 }, "deprecated": false, "children": [], @@ -1953,7 +2044,7 @@ ], "source": { "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "lineNumber": 132 + "lineNumber": 141 }, "deprecated": false, "children": [], @@ -1972,7 +2063,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/public/plugin.ts", - "lineNumber": 48 + "lineNumber": 52 }, "deprecated": false, "children": [], @@ -1990,7 +2081,7 @@ ], "source": { "path": "x-pack/plugins/fleet/public/plugin.ts", - "lineNumber": 53 + "lineNumber": 57 }, "deprecated": false, "children": [ @@ -2014,7 +2105,7 @@ ], "source": { "path": "x-pack/plugins/fleet/public/plugin.ts", - "lineNumber": 54 + "lineNumber": 58 }, "deprecated": false, "returnComment": [], @@ -2071,7 +2162,7 @@ ], "source": { "path": "x-pack/plugins/fleet/public/plugin.ts", - "lineNumber": 55 + "lineNumber": 59 }, "deprecated": false, "returnComment": [], @@ -2147,7 +2238,7 @@ "section": "def-server.Artifact", "text": "Artifact" }, - ", \"identifier\" | \"decodedSha256\">>({ identifier, decodedSha256, }: T) => string" + ", \"decodedSha256\" | \"identifier\">>({ identifier, decodedSha256, }: T) => string" ], "source": { "path": "x-pack/plugins/fleet/server/services/artifacts/mappings.ts", @@ -2536,7 +2627,7 @@ ], "source": { "path": "x-pack/plugins/fleet/server/services/agent_policy.ts", - "lineNumber": 263 + "lineNumber": 267 }, "deprecated": false }, @@ -2549,7 +2640,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/server/services/agent_policy.ts", - "lineNumber": 264 + "lineNumber": 268 }, "deprecated": false }, @@ -2562,7 +2653,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/server/services/agent_policy.ts", - "lineNumber": 265 + "lineNumber": 269 }, "deprecated": false } @@ -2913,7 +3004,7 @@ ], "source": { "path": "x-pack/plugins/fleet/server/services/agent_policy.ts", - "lineNumber": 305 + "lineNumber": 309 }, "deprecated": false }, @@ -2929,7 +3020,7 @@ ], "source": { "path": "x-pack/plugins/fleet/server/services/agent_policy.ts", - "lineNumber": 306 + "lineNumber": 310 }, "deprecated": false } @@ -3272,7 +3363,7 @@ ], "source": { "path": "x-pack/plugins/fleet/server/services/agent_policy.ts", - "lineNumber": 537 + "lineNumber": 541 }, "deprecated": false } @@ -3623,7 +3714,7 @@ ], "source": { "path": "x-pack/plugins/fleet/server/services/agent_policy.ts", - "lineNumber": 675 + "lineNumber": 680 }, "deprecated": false }, @@ -3636,7 +3727,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/server/services/agent_policy.ts", - "lineNumber": 676 + "lineNumber": 681 }, "deprecated": false }, @@ -3652,120 +3743,503 @@ ], "source": { "path": "x-pack/plugins/fleet/server/services/agent_policy.ts", - "lineNumber": 677 + "lineNumber": 682 }, "deprecated": false } ] - } - ], - "initialIsOpen": false - }, - { - "parentPluginId": "fleet", - "id": "def-server.AgentService", - "type": "Interface", - "tags": [], - "label": "AgentService", - "description": [ - "\nA service that provides exported functions that return information about an Agent" - ], - "source": { - "path": "x-pack/plugins/fleet/server/services/index.ts", - "lineNumber": 45 - }, - "deprecated": false, - "children": [ + }, { "parentPluginId": "fleet", - "id": "def-server.AgentService.getAgent", + "id": "def-server.AgentPolicyServiceInterface.getByIds", "type": "Function", "tags": [], - "label": "getAgent", - "description": [ - "\nGet an Agent by id" - ], + "label": "getByIds", + "description": [], "signature": [ - "(esClient: ", + "(soClient: Pick<", { "pluginId": "core", "scope": "server", - "docId": "kibCorePluginApi", - "section": "def-server.ElasticsearchClient", - "text": "ElasticsearchClient" + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsClient", + "text": "SavedObjectsClient" }, - ", agentId: string) => Promise<", + ", \"get\" | \"delete\" | \"create\" | \"bulkCreate\" | \"checkConflicts\" | \"find\" | \"bulkGet\" | \"resolve\" | \"update\" | \"collectMultiNamespaceReferences\" | \"updateObjectsSpaces\" | \"bulkUpdate\" | \"removeReferencesTo\" | \"openPointInTimeForType\" | \"closePointInTime\" | \"createPointInTimeFinder\" | \"errors\">, ids: string[], options?: { fields?: string[] | undefined; }) => Promise<", { "pluginId": "fleet", "scope": "common", "docId": "kibFleetPluginApi", - "section": "def-common.Agent", - "text": "Agent" + "section": "def-common.AgentPolicy", + "text": "AgentPolicy" }, - ">" + "[]>" ], "source": { "path": "x-pack/plugins/fleet/server/services/index.ts", - "lineNumber": 49 + "lineNumber": 72 }, "deprecated": false, "returnComment": [], "children": [ { "parentPluginId": "fleet", - "id": "def-server.esClient", - "type": "CompoundType", + "id": "def-server.soClient", + "type": "Object", "tags": [], - "label": "esClient", + "label": "soClient", "description": [], "signature": [ - "Pick<", - "KibanaClient", - ", \"get\" | \"delete\" | \"create\" | \"index\" | \"update\" | \"closePointInTime\" | \"helpers\" | \"count\" | \"search\" | \"security\" | \"eql\" | \"on\" | \"off\" | \"transform\" | \"emit\" | \"once\" | \"asyncSearch\" | \"autoscaling\" | \"bulk\" | \"cat\" | \"ccr\" | \"clearScroll\" | \"cluster\" | \"danglingIndices\" | \"dataFrameTransformDeprecated\" | \"deleteByQuery\" | \"deleteByQueryRethrottle\" | \"deleteScript\" | \"enrich\" | \"exists\" | \"existsSource\" | \"explain\" | \"features\" | \"fieldCaps\" | \"fleet\" | \"getScript\" | \"getScriptContext\" | \"getScriptLanguages\" | \"getSource\" | \"graph\" | \"ilm\" | \"indices\" | \"info\" | \"ingest\" | \"license\" | \"logstash\" | \"mget\" | \"migration\" | \"ml\" | \"monitoring\" | \"msearch\" | \"msearchTemplate\" | \"mtermvectors\" | \"nodes\" | \"openPointInTime\" | \"ping\" | \"putScript\" | \"rankEval\" | \"reindex\" | \"reindexRethrottle\" | \"renderSearchTemplate\" | \"rollup\" | \"scriptsPainlessExecute\" | \"scroll\" | \"searchShards\" | \"searchTemplate\" | \"searchableSnapshots\" | \"shutdown\" | \"slm\" | \"snapshot\" | \"sql\" | \"ssl\" | \"tasks\" | \"termsEnum\" | \"termvectors\" | \"textStructure\" | \"updateByQuery\" | \"updateByQueryRethrottle\" | \"watcher\" | \"xpack\"> & { transport: { request(params: ", - "TransportRequestParams", - ", options?: ", - "TransportRequestOptions", - " | undefined): ", - "TransportRequestPromise", - "<", - "ApiResponse", - ", unknown>>; }; }" - ], - "source": { - "path": "x-pack/plugins/fleet/server/services/agents/crud.ts", - "lineNumber": 191 - }, - "deprecated": false - }, - { - "parentPluginId": "fleet", - "id": "def-server.agentId", - "type": "string", - "tags": [], - "label": "agentId", - "description": [], - "source": { - "path": "x-pack/plugins/fleet/server/services/agents/crud.ts", - "lineNumber": 191 - }, - "deprecated": false - } - ] - }, - { - "parentPluginId": "fleet", - "id": "def-server.AgentService.authenticateAgentWithAccessToken", - "type": "Function", - "tags": [], - "label": "authenticateAgentWithAccessToken", - "description": [ - "\nAuthenticate an agent with access toekn" - ], - "signature": [ - "(esClient: ", - { - "pluginId": "core", - "scope": "server", + "{ get: (type: string, id: string, options?: ", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsBaseOptions", + "text": "SavedObjectsBaseOptions" + }, + ") => Promise<", + "SavedObject", + ">; delete: (type: string, id: string, options?: ", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsDeleteOptions", + "text": "SavedObjectsDeleteOptions" + }, + ") => Promise<{}>; create: (type: string, attributes: T, options?: ", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsCreateOptions", + "text": "SavedObjectsCreateOptions" + }, + " | undefined) => Promise<", + "SavedObject", + ">; bulkCreate: (objects: ", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsBulkCreateObject", + "text": "SavedObjectsBulkCreateObject" + }, + "[], options?: ", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsCreateOptions", + "text": "SavedObjectsCreateOptions" + }, + " | undefined) => Promise<", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsBulkResponse", + "text": "SavedObjectsBulkResponse" + }, + ">; checkConflicts: (objects?: ", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsCheckConflictsObject", + "text": "SavedObjectsCheckConflictsObject" + }, + "[], options?: ", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsBaseOptions", + "text": "SavedObjectsBaseOptions" + }, + ") => Promise<", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsCheckConflictsResponse", + "text": "SavedObjectsCheckConflictsResponse" + }, + ">; find: (options: ", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsFindOptions", + "text": "SavedObjectsFindOptions" + }, + ") => Promise<", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsFindResponse", + "text": "SavedObjectsFindResponse" + }, + ">; bulkGet: (objects?: ", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsBulkGetObject", + "text": "SavedObjectsBulkGetObject" + }, + "[], options?: ", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsBaseOptions", + "text": "SavedObjectsBaseOptions" + }, + ") => Promise<", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsBulkResponse", + "text": "SavedObjectsBulkResponse" + }, + ">; resolve: (type: string, id: string, options?: ", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsBaseOptions", + "text": "SavedObjectsBaseOptions" + }, + ") => Promise<", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsResolveResponse", + "text": "SavedObjectsResolveResponse" + }, + ">; update: (type: string, id: string, attributes: Partial, options?: ", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsUpdateOptions", + "text": "SavedObjectsUpdateOptions" + }, + ") => Promise<", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsUpdateResponse", + "text": "SavedObjectsUpdateResponse" + }, + ">; collectMultiNamespaceReferences: (objects: ", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsCollectMultiNamespaceReferencesObject", + "text": "SavedObjectsCollectMultiNamespaceReferencesObject" + }, + "[], options?: ", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsCollectMultiNamespaceReferencesOptions", + "text": "SavedObjectsCollectMultiNamespaceReferencesOptions" + }, + " | undefined) => Promise<", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsCollectMultiNamespaceReferencesResponse", + "text": "SavedObjectsCollectMultiNamespaceReferencesResponse" + }, + ">; updateObjectsSpaces: (objects: ", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsUpdateObjectsSpacesObject", + "text": "SavedObjectsUpdateObjectsSpacesObject" + }, + "[], spacesToAdd: string[], spacesToRemove: string[], options?: ", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsUpdateObjectsSpacesOptions", + "text": "SavedObjectsUpdateObjectsSpacesOptions" + }, + " | undefined) => Promise<", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsUpdateObjectsSpacesResponse", + "text": "SavedObjectsUpdateObjectsSpacesResponse" + }, + ">; bulkUpdate: (objects: ", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsBulkUpdateObject", + "text": "SavedObjectsBulkUpdateObject" + }, + "[], options?: ", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsBulkUpdateOptions", + "text": "SavedObjectsBulkUpdateOptions" + }, + " | undefined) => Promise<", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsBulkUpdateResponse", + "text": "SavedObjectsBulkUpdateResponse" + }, + ">; removeReferencesTo: (type: string, id: string, options?: ", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsRemoveReferencesToOptions", + "text": "SavedObjectsRemoveReferencesToOptions" + }, + " | undefined) => Promise<", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsRemoveReferencesToResponse", + "text": "SavedObjectsRemoveReferencesToResponse" + }, + ">; openPointInTimeForType: (type: string | string[], options?: ", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsOpenPointInTimeOptions", + "text": "SavedObjectsOpenPointInTimeOptions" + }, + ") => Promise<", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsOpenPointInTimeResponse", + "text": "SavedObjectsOpenPointInTimeResponse" + }, + ">; closePointInTime: (id: string, options?: ", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsBaseOptions", + "text": "SavedObjectsBaseOptions" + }, + " | undefined) => Promise<", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsClosePointInTimeResponse", + "text": "SavedObjectsClosePointInTimeResponse" + }, + ">; createPointInTimeFinder: (findOptions: Pick<", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsFindOptions", + "text": "SavedObjectsFindOptions" + }, + ", \"type\" | \"filter\" | \"aggs\" | \"fields\" | \"perPage\" | \"sortField\" | \"sortOrder\" | \"search\" | \"searchFields\" | \"rootSearchFields\" | \"hasReference\" | \"hasReferenceOperator\" | \"defaultSearchOperator\" | \"namespaces\" | \"typeToNamespacesMap\" | \"preference\">, dependencies?: ", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsCreatePointInTimeFinderDependencies", + "text": "SavedObjectsCreatePointInTimeFinderDependencies" + }, + " | undefined) => ", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.ISavedObjectsPointInTimeFinder", + "text": "ISavedObjectsPointInTimeFinder" + }, + "; errors: typeof ", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-server.SavedObjectsErrorHelpers", + "text": "SavedObjectsErrorHelpers" + }, + "; }" + ], + "source": { + "path": "x-pack/plugins/fleet/server/services/agent_policy.ts", + "lineNumber": 294 + }, + "deprecated": false + }, + { + "parentPluginId": "fleet", + "id": "def-server.ids", + "type": "Array", + "tags": [], + "label": "ids", + "description": [], + "signature": [ + "string[]" + ], + "source": { + "path": "x-pack/plugins/fleet/server/services/agent_policy.ts", + "lineNumber": 295 + }, + "deprecated": false + }, + { + "parentPluginId": "fleet", + "id": "def-server.options", + "type": "Object", + "tags": [], + "label": "options", + "description": [], + "signature": [ + "{ fields?: string[] | undefined; }" + ], + "source": { + "path": "x-pack/plugins/fleet/server/services/agent_policy.ts", + "lineNumber": 296 + }, + "deprecated": false + } + ] + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "fleet", + "id": "def-server.AgentService", + "type": "Interface", + "tags": [], + "label": "AgentService", + "description": [ + "\nA service that provides exported functions that return information about an Agent" + ], + "source": { + "path": "x-pack/plugins/fleet/server/services/index.ts", + "lineNumber": 45 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "fleet", + "id": "def-server.AgentService.getAgent", + "type": "Function", + "tags": [], + "label": "getAgent", + "description": [ + "\nGet an Agent by id" + ], + "signature": [ + "(esClient: ", + { + "pluginId": "core", + "scope": "server", + "docId": "kibCorePluginApi", + "section": "def-server.ElasticsearchClient", + "text": "ElasticsearchClient" + }, + ", agentId: string) => Promise<", + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.Agent", + "text": "Agent" + }, + ">" + ], + "source": { + "path": "x-pack/plugins/fleet/server/services/index.ts", + "lineNumber": 49 + }, + "deprecated": false, + "returnComment": [], + "children": [ + { + "parentPluginId": "fleet", + "id": "def-server.esClient", + "type": "CompoundType", + "tags": [], + "label": "esClient", + "description": [], + "signature": [ + "Pick<", + "KibanaClient", + ", \"get\" | \"delete\" | \"create\" | \"index\" | \"update\" | \"closePointInTime\" | \"helpers\" | \"count\" | \"search\" | \"security\" | \"eql\" | \"on\" | \"off\" | \"transform\" | \"emit\" | \"once\" | \"asyncSearch\" | \"autoscaling\" | \"bulk\" | \"cat\" | \"ccr\" | \"clearScroll\" | \"cluster\" | \"danglingIndices\" | \"dataFrameTransformDeprecated\" | \"deleteByQuery\" | \"deleteByQueryRethrottle\" | \"deleteScript\" | \"enrich\" | \"exists\" | \"existsSource\" | \"explain\" | \"features\" | \"fieldCaps\" | \"fleet\" | \"getScript\" | \"getScriptContext\" | \"getScriptLanguages\" | \"getSource\" | \"graph\" | \"ilm\" | \"indices\" | \"info\" | \"ingest\" | \"license\" | \"logstash\" | \"mget\" | \"migration\" | \"ml\" | \"monitoring\" | \"msearch\" | \"msearchTemplate\" | \"mtermvectors\" | \"nodes\" | \"openPointInTime\" | \"ping\" | \"putScript\" | \"rankEval\" | \"reindex\" | \"reindexRethrottle\" | \"renderSearchTemplate\" | \"rollup\" | \"scriptsPainlessExecute\" | \"scroll\" | \"searchShards\" | \"searchTemplate\" | \"searchableSnapshots\" | \"shutdown\" | \"slm\" | \"snapshot\" | \"sql\" | \"ssl\" | \"tasks\" | \"termsEnum\" | \"termvectors\" | \"textStructure\" | \"updateByQuery\" | \"updateByQueryRethrottle\" | \"watcher\" | \"xpack\"> & { transport: { request(params: ", + "TransportRequestParams", + ", options?: ", + "TransportRequestOptions", + " | undefined): ", + "TransportRequestPromise", + "<", + "ApiResponse", + ", unknown>>; }; }" + ], + "source": { + "path": "x-pack/plugins/fleet/server/services/agents/crud.ts", + "lineNumber": 191 + }, + "deprecated": false + }, + { + "parentPluginId": "fleet", + "id": "def-server.agentId", + "type": "string", + "tags": [], + "label": "agentId", + "description": [], + "source": { + "path": "x-pack/plugins/fleet/server/services/agents/crud.ts", + "lineNumber": 191 + }, + "deprecated": false + } + ] + }, + { + "parentPluginId": "fleet", + "id": "def-server.AgentService.authenticateAgentWithAccessToken", + "type": "Function", + "tags": [], + "label": "authenticateAgentWithAccessToken", + "description": [ + "\nAuthenticate an agent with access toekn" + ], + "signature": [ + "(esClient: ", + { + "pluginId": "core", + "scope": "server", "docId": "kibCorePluginApi", "section": "def-server.ElasticsearchClient", "text": "ElasticsearchClient" @@ -4268,7 +4742,7 @@ "section": "def-server.Artifact", "text": "Artifact" }, - ", \"body\" | \"decodedSha256\" | \"decodedSize\" | \"encodedSha256\" | \"encodedSize\" | \"compressionAlgorithm\">>" + ", \"body\" | \"compressionAlgorithm\" | \"decodedSha256\" | \"decodedSize\" | \"encodedSha256\" | \"encodedSize\">>" ], "source": { "path": "x-pack/plugins/fleet/server/services/artifacts/types.ts", @@ -4784,7 +5258,7 @@ ], "source": { "path": "x-pack/plugins/fleet/server/index.ts", - "lineNumber": 83 + "lineNumber": 84 }, "deprecated": false, "initialIsOpen": false @@ -4801,7 +5275,7 @@ ], "source": { "path": "x-pack/plugins/fleet/server/services/package_policy.ts", - "lineNumber": 656 + "lineNumber": 667 }, "deprecated": false, "initialIsOpen": false @@ -5125,203 +5599,721 @@ "path": "x-pack/plugins/fleet/server/plugin.ts", "lineNumber": 186 }, - "deprecated": false - } - ] - } - ], - "lifecycle": "start", - "initialIsOpen": true - } - }, - "common": { - "classes": [ + "deprecated": false + } + ] + } + ], + "lifecycle": "start", + "initialIsOpen": true + } + }, + "common": { + "classes": [ + { + "parentPluginId": "fleet", + "id": "def-common.LicenseService", + "type": "Class", + "tags": [], + "label": "LicenseService", + "description": [], + "source": { + "path": "x-pack/plugins/fleet/common/services/license.ts", + "lineNumber": 14 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "fleet", + "id": "def-common.LicenseService.start", + "type": "Function", + "tags": [], + "label": "start", + "description": [], + "signature": [ + "(license$: ", + "Observable", + "<", + "ILicense", + ">) => void" + ], + "source": { + "path": "x-pack/plugins/fleet/common/services/license.ts", + "lineNumber": 23 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "fleet", + "id": "def-common.LicenseService.start.$1", + "type": "Object", + "tags": [], + "label": "license$", + "description": [], + "signature": [ + "Observable", + "<", + "ILicense", + ">" + ], + "source": { + "path": "x-pack/plugins/fleet/common/services/license.ts", + "lineNumber": 23 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [] + }, + { + "parentPluginId": "fleet", + "id": "def-common.LicenseService.stop", + "type": "Function", + "tags": [], + "label": "stop", + "description": [], + "signature": [ + "() => void" + ], + "source": { + "path": "x-pack/plugins/fleet/common/services/license.ts", + "lineNumber": 28 + }, + "deprecated": false, + "children": [], + "returnComment": [] + }, + { + "parentPluginId": "fleet", + "id": "def-common.LicenseService.getLicenseInformation", + "type": "Function", + "tags": [], + "label": "getLicenseInformation", + "description": [], + "signature": [ + "() => ", + "ILicense", + " | null" + ], + "source": { + "path": "x-pack/plugins/fleet/common/services/license.ts", + "lineNumber": 34 + }, + "deprecated": false, + "children": [], + "returnComment": [] + }, + { + "parentPluginId": "fleet", + "id": "def-common.LicenseService.getLicenseInformation$", + "type": "Function", + "tags": [], + "label": "getLicenseInformation$", + "description": [], + "signature": [ + "() => ", + "Observable", + "<", + "ILicense", + "> | null" + ], + "source": { + "path": "x-pack/plugins/fleet/common/services/license.ts", + "lineNumber": 38 + }, + "deprecated": false, + "children": [], + "returnComment": [] + }, + { + "parentPluginId": "fleet", + "id": "def-common.LicenseService.isGoldPlus", + "type": "Function", + "tags": [], + "label": "isGoldPlus", + "description": [], + "signature": [ + "() => boolean | undefined" + ], + "source": { + "path": "x-pack/plugins/fleet/common/services/license.ts", + "lineNumber": 42 + }, + "deprecated": false, + "children": [], + "returnComment": [] + }, + { + "parentPluginId": "fleet", + "id": "def-common.LicenseService.isEnterprise", + "type": "Function", + "tags": [], + "label": "isEnterprise", + "description": [], + "signature": [ + "() => boolean | undefined" + ], + "source": { + "path": "x-pack/plugins/fleet/common/services/license.ts", + "lineNumber": 49 + }, + "deprecated": false, + "children": [], + "returnComment": [] + } + ], + "initialIsOpen": false + } + ], + "functions": [ + { + "parentPluginId": "fleet", + "id": "def-common.countValidationErrors", + "type": "Function", + "tags": [], + "label": "countValidationErrors", + "description": [], + "signature": [ + "(validationResults: ", + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.PackagePolicyConfigValidationResults", + "text": "PackagePolicyConfigValidationResults" + }, + " | ", + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.PackagePolicyValidationResults", + "text": "PackagePolicyValidationResults" + }, + " | ", + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.PackagePolicyInputValidationResults", + "text": "PackagePolicyInputValidationResults" + }, + ") => number" + ], + "source": { + "path": "x-pack/plugins/fleet/common/services/validate_package_policy.ts", + "lineNumber": 272 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "fleet", + "id": "def-common.countValidationErrors.$1", + "type": "CompoundType", + "tags": [], + "label": "validationResults", + "description": [], + "signature": [ + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.PackagePolicyConfigValidationResults", + "text": "PackagePolicyConfigValidationResults" + }, + " | ", + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.PackagePolicyValidationResults", + "text": "PackagePolicyValidationResults" + }, + " | ", + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.PackagePolicyInputValidationResults", + "text": "PackagePolicyInputValidationResults" + } + ], + "source": { + "path": "x-pack/plugins/fleet/common/services/validate_package_policy.ts", + "lineNumber": 273 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, { "parentPluginId": "fleet", - "id": "def-common.LicenseService", - "type": "Class", + "id": "def-common.decodeCloudId", + "type": "Function", "tags": [], - "label": "LicenseService", + "label": "decodeCloudId", "description": [], + "signature": [ + "(cid: string) => { host: string; defaultPort: string; elasticsearchUrl: string; kibanaUrl: string; } | undefined" + ], "source": { - "path": "x-pack/plugins/fleet/common/services/license.ts", - "lineNumber": 14 + "path": "x-pack/plugins/fleet/common/services/decode_cloud_id.ts", + "lineNumber": 9 }, "deprecated": false, "children": [ { "parentPluginId": "fleet", - "id": "def-common.LicenseService.start", - "type": "Function", + "id": "def-common.decodeCloudId.$1", + "type": "string", "tags": [], - "label": "start", + "label": "cid", "description": [], "signature": [ - "(license$: ", - "Observable", - "<", - "ILicense", - ">) => void" + "string" ], "source": { - "path": "x-pack/plugins/fleet/common/services/license.ts", - "lineNumber": 23 + "path": "x-pack/plugins/fleet/common/services/decode_cloud_id.ts", + "lineNumber": 10 }, "deprecated": false, - "children": [ + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "fleet", + "id": "def-common.doesAgentPolicyAlreadyIncludePackage", + "type": "Function", + "tags": [], + "label": "doesAgentPolicyAlreadyIncludePackage", + "description": [], + "signature": [ + "(agentPolicy: ", + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.AgentPolicy", + "text": "AgentPolicy" + }, + ", packageName: string) => boolean" + ], + "source": { + "path": "x-pack/plugins/fleet/common/services/limited_package.ts", + "lineNumber": 16 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "fleet", + "id": "def-common.doesAgentPolicyAlreadyIncludePackage.$1", + "type": "Object", + "tags": [], + "label": "agentPolicy", + "description": [], + "signature": [ { - "parentPluginId": "fleet", - "id": "def-common.LicenseService.start.$1", - "type": "Object", - "tags": [], - "label": "license$", - "description": [], - "signature": [ - "Observable", - "<", - "ILicense", - ">" - ], - "source": { - "path": "x-pack/plugins/fleet/common/services/license.ts", - "lineNumber": 23 - }, - "deprecated": false, - "isRequired": true + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.AgentPolicy", + "text": "AgentPolicy" } ], - "returnComment": [] + "source": { + "path": "x-pack/plugins/fleet/common/services/limited_package.ts", + "lineNumber": 17 + }, + "deprecated": false, + "isRequired": true + }, + { + "parentPluginId": "fleet", + "id": "def-common.doesAgentPolicyAlreadyIncludePackage.$2", + "type": "string", + "tags": [], + "label": "packageName", + "description": [], + "signature": [ + "string" + ], + "source": { + "path": "x-pack/plugins/fleet/common/services/limited_package.ts", + "lineNumber": 18 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "fleet", + "id": "def-common.doesPackageHaveIntegrations", + "type": "Function", + "tags": [], + "label": "doesPackageHaveIntegrations", + "description": [], + "signature": [ + "(pkgInfo: ", + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.Installed", + "text": "Installed" + }, + "> | ", + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.NotInstalled", + "text": "NotInstalled" + }, + "> | ", + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.Installed", + "text": "Installed" + }, + "> | ", + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.NotInstalled", + "text": "NotInstalled" }, + " void" - ], - "source": { - "path": "x-pack/plugins/fleet/common/services/license.ts", - "lineNumber": 28 - }, - "deprecated": false, - "children": [], - "returnComment": [] + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.ArchivePackage", + "text": "ArchivePackage" }, + ", ", { - "parentPluginId": "fleet", - "id": "def-common.LicenseService.getLicenseInformation", - "type": "Function", - "tags": [], - "label": "getLicenseInformation", - "description": [], - "signature": [ - "() => ", - "ILicense", - " | null" - ], - "source": { - "path": "x-pack/plugins/fleet/common/services/license.ts", - "lineNumber": 34 - }, - "deprecated": false, - "children": [], - "returnComment": [] + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.EpmPackageAdditions", + "text": "EpmPackageAdditions" }, + ">> | (Pick<", { - "parentPluginId": "fleet", - "id": "def-common.LicenseService.getLicenseInformation$", - "type": "Function", - "tags": [], - "label": "getLicenseInformation$", - "description": [], - "signature": [ - "() => ", - "Observable", - "<", - "ILicense", - "> | null" - ], - "source": { - "path": "x-pack/plugins/fleet/common/services/license.ts", - "lineNumber": 38 - }, - "deprecated": false, - "children": [], - "returnComment": [] + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.RegistryPackage", + "text": "RegistryPackage" + }, + ", \"type\" | \"description\" | \"title\" | \"name\" | \"version\" | \"download\" | \"path\" | \"internal\" | \"data_streams\" | \"release\" | \"icons\" | \"policy_templates\"> & { status: \"installed\"; savedObject: ", + "SavedObject", + "<", + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.Installation", + "text": "Installation" + }, + ">; } & { integration?: string | undefined; id: string; }) | (Pick<", + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.RegistryPackage", + "text": "RegistryPackage" }, + ", \"type\" | \"description\" | \"title\" | \"name\" | \"version\" | \"download\" | \"path\" | \"internal\" | \"data_streams\" | \"release\" | \"icons\" | \"policy_templates\"> & { status: \"not_installed\"; } & { integration?: string | undefined; id: string; })) => boolean" + ], + "source": { + "path": "x-pack/plugins/fleet/common/services/packages_with_integrations.ts", + "lineNumber": 9 + }, + "deprecated": false, + "children": [ { "parentPluginId": "fleet", - "id": "def-common.LicenseService.isGoldPlus", - "type": "Function", + "id": "def-common.doesPackageHaveIntegrations.$1", + "type": "CompoundType", "tags": [], - "label": "isGoldPlus", + "label": "pkgInfo", "description": [], "signature": [ - "() => boolean | undefined" + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.Installed", + "text": "Installed" + }, + "> | ", + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.NotInstalled", + "text": "NotInstalled" + }, + "> | ", + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.Installed", + "text": "Installed" + }, + "> | ", + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.NotInstalled", + "text": "NotInstalled" + }, + "> | (Pick<", + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.RegistryPackage", + "text": "RegistryPackage" + }, + ", \"type\" | \"description\" | \"title\" | \"name\" | \"version\" | \"download\" | \"path\" | \"internal\" | \"data_streams\" | \"release\" | \"icons\" | \"policy_templates\"> & { status: \"installed\"; savedObject: ", + "SavedObject", + "<", + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.Installation", + "text": "Installation" + }, + ">; } & { integration?: string | undefined; id: string; }) | (Pick<", + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.RegistryPackage", + "text": "RegistryPackage" + }, + ", \"type\" | \"description\" | \"title\" | \"name\" | \"version\" | \"download\" | \"path\" | \"internal\" | \"data_streams\" | \"release\" | \"icons\" | \"policy_templates\"> & { status: \"not_installed\"; } & { integration?: string | undefined; id: string; })" ], "source": { - "path": "x-pack/plugins/fleet/common/services/license.ts", - "lineNumber": 42 + "path": "x-pack/plugins/fleet/common/services/packages_with_integrations.ts", + "lineNumber": 9 }, "deprecated": false, - "children": [], - "returnComment": [] - }, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "fleet", + "id": "def-common.entries", + "type": "Function", + "tags": [], + "label": "entries", + "description": [], + "signature": [ + "(o: T) => [keyof T, T[keyof T]][]" + ], + "source": { + "path": "x-pack/plugins/fleet/common/types/index.ts", + "lineNumber": 36 + }, + "deprecated": false, + "returnComment": [], + "children": [ { "parentPluginId": "fleet", - "id": "def-common.LicenseService.isEnterprise", - "type": "Function", + "id": "def-common.o", + "type": "Uncategorized", "tags": [], - "label": "isEnterprise", + "label": "o", "description": [], "signature": [ - "() => boolean | undefined" + "T" ], "source": { - "path": "x-pack/plugins/fleet/common/services/license.ts", - "lineNumber": 49 + "path": "x-pack/plugins/fleet/common/types/index.ts", + "lineNumber": 36 }, - "deprecated": false, - "children": [], - "returnComment": [] + "deprecated": false } ], "initialIsOpen": false - } - ], - "functions": [ + }, { "parentPluginId": "fleet", - "id": "def-common.decodeCloudId", + "id": "def-common.fullAgentPolicyToYaml", "type": "Function", "tags": [], - "label": "decodeCloudId", + "label": "fullAgentPolicyToYaml", "description": [], "signature": [ - "(cid: string) => { host: string; defaultPort: string; elasticsearchUrl: string; kibanaUrl: string; } | undefined" + "(policy: ", + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.FullAgentPolicy", + "text": "FullAgentPolicy" + }, + ") => string" ], "source": { - "path": "x-pack/plugins/fleet/common/services/decode_cloud_id.ts", - "lineNumber": 9 + "path": "x-pack/plugins/fleet/common/services/full_agent_policy_to_yaml.ts", + "lineNumber": 28 }, "deprecated": false, "children": [ { "parentPluginId": "fleet", - "id": "def-common.decodeCloudId.$1", - "type": "string", + "id": "def-common.fullAgentPolicyToYaml.$1", + "type": "Object", "tags": [], - "label": "cid", + "label": "policy", "description": [], "signature": [ - "string" + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.FullAgentPolicy", + "text": "FullAgentPolicy" + } ], "source": { - "path": "x-pack/plugins/fleet/common/services/decode_cloud_id.ts", - "lineNumber": 10 + "path": "x-pack/plugins/fleet/common/services/full_agent_policy_to_yaml.ts", + "lineNumber": 28 }, "deprecated": false, "isRequired": true @@ -5332,64 +6324,89 @@ }, { "parentPluginId": "fleet", - "id": "def-common.doesAgentPolicyAlreadyIncludePackage", + "id": "def-common.getStreamsForInputType", "type": "Function", "tags": [], - "label": "doesAgentPolicyAlreadyIncludePackage", + "label": "getStreamsForInputType", "description": [], "signature": [ - "(agentPolicy: ", + "(inputType: string, packageInfo: ", { "pluginId": "fleet", "scope": "common", "docId": "kibFleetPluginApi", - "section": "def-common.AgentPolicy", - "text": "AgentPolicy" + "section": "def-common.PackageInfo", + "text": "PackageInfo" }, - ", packageName: string) => boolean" + ", dataStreamPaths?: string[]) => (", + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.RegistryStream", + "text": "RegistryStream" + }, + " & { data_stream: { type: string; dataset: string; }; })[]" ], "source": { - "path": "x-pack/plugins/fleet/common/services/limited_package.ts", - "lineNumber": 15 + "path": "x-pack/plugins/fleet/common/services/package_to_package_policy.ts", + "lineNumber": 22 }, "deprecated": false, "children": [ { "parentPluginId": "fleet", - "id": "def-common.doesAgentPolicyAlreadyIncludePackage.$1", - "type": "Object", + "id": "def-common.getStreamsForInputType.$1", + "type": "string", "tags": [], - "label": "agentPolicy", + "label": "inputType", + "description": [], + "signature": [ + "string" + ], + "source": { + "path": "x-pack/plugins/fleet/common/services/package_to_package_policy.ts", + "lineNumber": 23 + }, + "deprecated": false, + "isRequired": true + }, + { + "parentPluginId": "fleet", + "id": "def-common.getStreamsForInputType.$2", + "type": "CompoundType", + "tags": [], + "label": "packageInfo", "description": [], "signature": [ { "pluginId": "fleet", "scope": "common", "docId": "kibFleetPluginApi", - "section": "def-common.AgentPolicy", - "text": "AgentPolicy" + "section": "def-common.PackageInfo", + "text": "PackageInfo" } ], "source": { - "path": "x-pack/plugins/fleet/common/services/limited_package.ts", - "lineNumber": 16 + "path": "x-pack/plugins/fleet/common/services/package_to_package_policy.ts", + "lineNumber": 24 }, "deprecated": false, "isRequired": true }, { "parentPluginId": "fleet", - "id": "def-common.doesAgentPolicyAlreadyIncludePackage.$2", - "type": "string", + "id": "def-common.getStreamsForInputType.$3", + "type": "Array", "tags": [], - "label": "packageName", + "label": "dataStreamPaths", "description": [], "signature": [ - "string" + "string[]" ], "source": { - "path": "x-pack/plugins/fleet/common/services/limited_package.ts", - "lineNumber": 17 + "path": "x-pack/plugins/fleet/common/services/package_to_package_policy.ts", + "lineNumber": 25 }, "deprecated": false, "isRequired": true @@ -5400,275 +6417,100 @@ }, { "parentPluginId": "fleet", - "id": "def-common.doesPackageHaveIntegrations", + "id": "def-common.isAgentUpgradeable", "type": "Function", "tags": [], - "label": "doesPackageHaveIntegrations", + "label": "isAgentUpgradeable", "description": [], "signature": [ - "(pkgInfo: ", - { - "pluginId": "fleet", - "scope": "common", - "docId": "kibFleetPluginApi", - "section": "def-common.Installed", - "text": "Installed" - }, - "> | ", - { - "pluginId": "fleet", - "scope": "common", - "docId": "kibFleetPluginApi", - "section": "def-common.NotInstalled", - "text": "NotInstalled" - }, - "> | ", - { - "pluginId": "fleet", - "scope": "common", - "docId": "kibFleetPluginApi", - "section": "def-common.Installed", - "text": "Installed" - }, - "> | ", - { - "pluginId": "fleet", - "scope": "common", - "docId": "kibFleetPluginApi", - "section": "def-common.NotInstalled", - "text": "NotInstalled" - }, - "> | (Pick<", + "(agent: ", { "pluginId": "fleet", "scope": "common", "docId": "kibFleetPluginApi", - "section": "def-common.RegistryPackage", - "text": "RegistryPackage" + "section": "def-common.Agent", + "text": "Agent" }, - ", \"type\" | \"description\" | \"title\" | \"name\" | \"version\" | \"download\" | \"path\" | \"internal\" | \"data_streams\" | \"release\" | \"icons\" | \"policy_templates\"> & { status: \"installed\"; savedObject: ", - "SavedObject", - "<", + ", kibanaVersion: string) => boolean" + ], + "source": { + "path": "x-pack/plugins/fleet/common/services/is_agent_upgradeable.ts", + "lineNumber": 13 + }, + "deprecated": false, + "children": [ { - "pluginId": "fleet", - "scope": "common", - "docId": "kibFleetPluginApi", - "section": "def-common.Installation", - "text": "Installation" + "parentPluginId": "fleet", + "id": "def-common.isAgentUpgradeable.$1", + "type": "Object", + "tags": [], + "label": "agent", + "description": [], + "signature": [ + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.Agent", + "text": "Agent" + } + ], + "source": { + "path": "x-pack/plugins/fleet/common/services/is_agent_upgradeable.ts", + "lineNumber": 13 + }, + "deprecated": false, + "isRequired": true }, - ">; } & { integration?: string | undefined; id: string; }) | (Pick<", { - "pluginId": "fleet", - "scope": "common", - "docId": "kibFleetPluginApi", - "section": "def-common.RegistryPackage", - "text": "RegistryPackage" - }, - ", \"type\" | \"description\" | \"title\" | \"name\" | \"version\" | \"download\" | \"path\" | \"internal\" | \"data_streams\" | \"release\" | \"icons\" | \"policy_templates\"> & { status: \"not_installed\"; } & { integration?: string | undefined; id: string; })) => boolean" + "parentPluginId": "fleet", + "id": "def-common.isAgentUpgradeable.$2", + "type": "string", + "tags": [], + "label": "kibanaVersion", + "description": [], + "signature": [ + "string" + ], + "source": { + "path": "x-pack/plugins/fleet/common/services/is_agent_upgradeable.ts", + "lineNumber": 13 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "fleet", + "id": "def-common.isDiffPathProtocol", + "type": "Function", + "tags": [], + "label": "isDiffPathProtocol", + "description": [], + "signature": [ + "(kibanaUrls: string[]) => boolean" ], "source": { - "path": "x-pack/plugins/fleet/common/services/packages_with_integrations.ts", + "path": "x-pack/plugins/fleet/common/services/is_diff_path_protocol.ts", "lineNumber": 9 }, "deprecated": false, "children": [ { "parentPluginId": "fleet", - "id": "def-common.doesPackageHaveIntegrations.$1", - "type": "CompoundType", + "id": "def-common.isDiffPathProtocol.$1", + "type": "Array", "tags": [], - "label": "pkgInfo", + "label": "kibanaUrls", "description": [], "signature": [ - { - "pluginId": "fleet", - "scope": "common", - "docId": "kibFleetPluginApi", - "section": "def-common.Installed", - "text": "Installed" - }, - "> | ", - { - "pluginId": "fleet", - "scope": "common", - "docId": "kibFleetPluginApi", - "section": "def-common.NotInstalled", - "text": "NotInstalled" - }, - "> | ", - { - "pluginId": "fleet", - "scope": "common", - "docId": "kibFleetPluginApi", - "section": "def-common.Installed", - "text": "Installed" - }, - "> | ", - { - "pluginId": "fleet", - "scope": "common", - "docId": "kibFleetPluginApi", - "section": "def-common.NotInstalled", - "text": "NotInstalled" - }, - "> | (Pick<", - { - "pluginId": "fleet", - "scope": "common", - "docId": "kibFleetPluginApi", - "section": "def-common.RegistryPackage", - "text": "RegistryPackage" - }, - ", \"type\" | \"description\" | \"title\" | \"name\" | \"version\" | \"download\" | \"path\" | \"internal\" | \"data_streams\" | \"release\" | \"icons\" | \"policy_templates\"> & { status: \"installed\"; savedObject: ", - "SavedObject", - "<", - { - "pluginId": "fleet", - "scope": "common", - "docId": "kibFleetPluginApi", - "section": "def-common.Installation", - "text": "Installation" - }, - ">; } & { integration?: string | undefined; id: string; }) | (Pick<", - { - "pluginId": "fleet", - "scope": "common", - "docId": "kibFleetPluginApi", - "section": "def-common.RegistryPackage", - "text": "RegistryPackage" - }, - ", \"type\" | \"description\" | \"title\" | \"name\" | \"version\" | \"download\" | \"path\" | \"internal\" | \"data_streams\" | \"release\" | \"icons\" | \"policy_templates\"> & { status: \"not_installed\"; } & { integration?: string | undefined; id: string; })" + "string[]" ], "source": { - "path": "x-pack/plugins/fleet/common/services/packages_with_integrations.ts", + "path": "x-pack/plugins/fleet/common/services/is_diff_path_protocol.ts", "lineNumber": 9 }, "deprecated": false, @@ -5680,83 +6522,121 @@ }, { "parentPluginId": "fleet", - "id": "def-common.entries", + "id": "def-common.isPackageLimited", "type": "Function", "tags": [], - "label": "entries", + "label": "isPackageLimited", "description": [], "signature": [ - "(o: T) => [keyof T, T[keyof T]][]" + "(packageInfo: ", + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.PackageInfo", + "text": "PackageInfo" + }, + ") => boolean" ], "source": { - "path": "x-pack/plugins/fleet/common/types/index.ts", - "lineNumber": 35 + "path": "x-pack/plugins/fleet/common/services/limited_package.ts", + "lineNumber": 10 }, "deprecated": false, - "returnComment": [], "children": [ { "parentPluginId": "fleet", - "id": "def-common.o", - "type": "Uncategorized", + "id": "def-common.isPackageLimited.$1", + "type": "CompoundType", "tags": [], - "label": "o", + "label": "packageInfo", "description": [], "signature": [ - "T" + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.PackageInfo", + "text": "PackageInfo" + } ], "source": { - "path": "x-pack/plugins/fleet/common/types/index.ts", - "lineNumber": 35 + "path": "x-pack/plugins/fleet/common/services/limited_package.ts", + "lineNumber": 10 }, - "deprecated": false + "deprecated": false, + "isRequired": true } ], + "returnComment": [], "initialIsOpen": false }, { "parentPluginId": "fleet", - "id": "def-common.fullAgentPolicyToYaml", + "id": "def-common.isValidNamespace", "type": "Function", "tags": [], - "label": "fullAgentPolicyToYaml", + "label": "isValidNamespace", "description": [], "signature": [ - "(policy: ", + "(namespace: string) => { valid: boolean; error?: string | undefined; }" + ], + "source": { + "path": "x-pack/plugins/fleet/common/services/is_valid_namespace.ts", + "lineNumber": 13 + }, + "deprecated": false, + "children": [ { - "pluginId": "fleet", - "scope": "common", - "docId": "kibFleetPluginApi", - "section": "def-common.FullAgentPolicy", - "text": "FullAgentPolicy" - }, - ") => string" + "parentPluginId": "fleet", + "id": "def-common.isValidNamespace.$1", + "type": "string", + "tags": [], + "label": "namespace", + "description": [], + "signature": [ + "string" + ], + "source": { + "path": "x-pack/plugins/fleet/common/services/is_valid_namespace.ts", + "lineNumber": 13 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "fleet", + "id": "def-common.normalizeHostsForAgents", + "type": "Function", + "tags": [], + "label": "normalizeHostsForAgents", + "description": [], + "signature": [ + "(host: string) => string" ], "source": { - "path": "x-pack/plugins/fleet/common/services/full_agent_policy_to_yaml.ts", - "lineNumber": 28 + "path": "x-pack/plugins/fleet/common/services/hosts_utils.ts", + "lineNumber": 22 }, "deprecated": false, "children": [ { "parentPluginId": "fleet", - "id": "def-common.fullAgentPolicyToYaml.$1", - "type": "Object", + "id": "def-common.normalizeHostsForAgents.$1", + "type": "string", "tags": [], - "label": "policy", + "label": "host", "description": [], "signature": [ - { - "pluginId": "fleet", - "scope": "common", - "docId": "kibFleetPluginApi", - "section": "def-common.FullAgentPolicy", - "text": "FullAgentPolicy" - } + "string" ], "source": { - "path": "x-pack/plugins/fleet/common/services/full_agent_policy_to_yaml.ts", - "lineNumber": 28 + "path": "x-pack/plugins/fleet/common/services/hosts_utils.ts", + "lineNumber": 22 }, "deprecated": false, "isRequired": true @@ -5767,104 +6647,161 @@ }, { "parentPluginId": "fleet", - "id": "def-common.isAgentUpgradeable", + "id": "def-common.packageToPackagePolicy", "type": "Function", "tags": [], - "label": "isAgentUpgradeable", - "description": [], + "label": "packageToPackagePolicy", + "description": [ + "\nBuilds a `NewPackagePolicy` structure based on a package\n" + ], "signature": [ - "(agent: ", + "(packageInfo: ", { "pluginId": "fleet", "scope": "common", "docId": "kibFleetPluginApi", - "section": "def-common.Agent", - "text": "Agent" + "section": "def-common.PackageInfo", + "text": "PackageInfo" }, - ", kibanaVersion: string) => boolean" + ", agentPolicyId: string, outputId: string, namespace?: string, packagePolicyName?: string | undefined, description?: string | undefined, integrationToEnable?: string | undefined) => ", + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.NewPackagePolicy", + "text": "NewPackagePolicy" + } ], "source": { - "path": "x-pack/plugins/fleet/common/services/is_agent_upgradeable.ts", - "lineNumber": 13 + "path": "x-pack/plugins/fleet/common/services/package_to_package_policy.ts", + "lineNumber": 162 }, "deprecated": false, "children": [ { "parentPluginId": "fleet", - "id": "def-common.isAgentUpgradeable.$1", - "type": "Object", + "id": "def-common.packageToPackagePolicy.$1", + "type": "CompoundType", "tags": [], - "label": "agent", + "label": "packageInfo", "description": [], "signature": [ { "pluginId": "fleet", "scope": "common", "docId": "kibFleetPluginApi", - "section": "def-common.Agent", - "text": "Agent" + "section": "def-common.PackageInfo", + "text": "PackageInfo" } ], "source": { - "path": "x-pack/plugins/fleet/common/services/is_agent_upgradeable.ts", - "lineNumber": 13 + "path": "x-pack/plugins/fleet/common/services/package_to_package_policy.ts", + "lineNumber": 163 }, "deprecated": false, "isRequired": true }, { "parentPluginId": "fleet", - "id": "def-common.isAgentUpgradeable.$2", + "id": "def-common.packageToPackagePolicy.$2", "type": "string", "tags": [], - "label": "kibanaVersion", + "label": "agentPolicyId", "description": [], "signature": [ "string" ], "source": { - "path": "x-pack/plugins/fleet/common/services/is_agent_upgradeable.ts", - "lineNumber": 13 + "path": "x-pack/plugins/fleet/common/services/package_to_package_policy.ts", + "lineNumber": 164 }, "deprecated": false, "isRequired": true - } - ], - "returnComment": [], - "initialIsOpen": false - }, - { - "parentPluginId": "fleet", - "id": "def-common.isDiffPathProtocol", - "type": "Function", - "tags": [], - "label": "isDiffPathProtocol", - "description": [], - "signature": [ - "(kibanaUrls: string[]) => boolean" - ], - "source": { - "path": "x-pack/plugins/fleet/common/services/is_diff_path_protocol.ts", - "lineNumber": 9 - }, - "deprecated": false, - "children": [ + }, { "parentPluginId": "fleet", - "id": "def-common.isDiffPathProtocol.$1", - "type": "Array", + "id": "def-common.packageToPackagePolicy.$3", + "type": "string", "tags": [], - "label": "kibanaUrls", + "label": "outputId", "description": [], "signature": [ - "string[]" + "string" ], "source": { - "path": "x-pack/plugins/fleet/common/services/is_diff_path_protocol.ts", - "lineNumber": 9 + "path": "x-pack/plugins/fleet/common/services/package_to_package_policy.ts", + "lineNumber": 165 + }, + "deprecated": false, + "isRequired": true + }, + { + "parentPluginId": "fleet", + "id": "def-common.packageToPackagePolicy.$4", + "type": "string", + "tags": [], + "label": "namespace", + "description": [], + "signature": [ + "string" + ], + "source": { + "path": "x-pack/plugins/fleet/common/services/package_to_package_policy.ts", + "lineNumber": 166 }, "deprecated": false, "isRequired": true + }, + { + "parentPluginId": "fleet", + "id": "def-common.packageToPackagePolicy.$5", + "type": "string", + "tags": [], + "label": "packagePolicyName", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "x-pack/plugins/fleet/common/services/package_to_package_policy.ts", + "lineNumber": 167 + }, + "deprecated": false, + "isRequired": false + }, + { + "parentPluginId": "fleet", + "id": "def-common.packageToPackagePolicy.$6", + "type": "string", + "tags": [], + "label": "description", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "x-pack/plugins/fleet/common/services/package_to_package_policy.ts", + "lineNumber": 168 + }, + "deprecated": false, + "isRequired": false + }, + { + "parentPluginId": "fleet", + "id": "def-common.packageToPackagePolicy.$7", + "type": "string", + "tags": [], + "label": "integrationToEnable", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "x-pack/plugins/fleet/common/services/package_to_package_policy.ts", + "lineNumber": 169 + }, + "deprecated": false, + "isRequired": false } ], "returnComment": [], @@ -5872,10 +6809,10 @@ }, { "parentPluginId": "fleet", - "id": "def-common.isPackageLimited", + "id": "def-common.packageToPackagePolicyInputs", "type": "Function", "tags": [], - "label": "isPackageLimited", + "label": "packageToPackagePolicyInputs", "description": [], "signature": [ "(packageInfo: ", @@ -5886,17 +6823,25 @@ "section": "def-common.PackageInfo", "text": "PackageInfo" }, - ") => boolean" + ", integrationToEnable?: string | undefined) => ", + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.NewPackagePolicyInput", + "text": "NewPackagePolicyInput" + }, + "[]" ], "source": { - "path": "x-pack/plugins/fleet/common/services/limited_package.ts", - "lineNumber": 11 + "path": "x-pack/plugins/fleet/common/services/package_to_package_policy.ts", + "lineNumber": 68 }, "deprecated": false, "children": [ { "parentPluginId": "fleet", - "id": "def-common.isPackageLimited.$1", + "id": "def-common.packageToPackagePolicyInputs.$1", "type": "CompoundType", "tags": [], "label": "packageInfo", @@ -5911,11 +6856,28 @@ } ], "source": { - "path": "x-pack/plugins/fleet/common/services/limited_package.ts", - "lineNumber": 11 + "path": "x-pack/plugins/fleet/common/services/package_to_package_policy.ts", + "lineNumber": 69 }, "deprecated": false, "isRequired": true + }, + { + "parentPluginId": "fleet", + "id": "def-common.packageToPackagePolicyInputs.$2", + "type": "string", + "tags": [], + "label": "integrationToEnable", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "x-pack/plugins/fleet/common/services/package_to_package_policy.ts", + "lineNumber": 70 + }, + "deprecated": false, + "isRequired": false } ], "returnComment": [], @@ -5923,33 +6885,56 @@ }, { "parentPluginId": "fleet", - "id": "def-common.isValidNamespace", + "id": "def-common.storedPackagePoliciesToAgentInputs", "type": "Function", "tags": [], - "label": "isValidNamespace", + "label": "storedPackagePoliciesToAgentInputs", "description": [], "signature": [ - "(namespace: string) => { valid: boolean; error?: string | undefined; }" + "(packagePolicies: ", + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.PackagePolicy", + "text": "PackagePolicy" + }, + "[]) => ", + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.FullAgentPolicyInput", + "text": "FullAgentPolicyInput" + }, + "[]" ], "source": { - "path": "x-pack/plugins/fleet/common/services/is_valid_namespace.ts", + "path": "x-pack/plugins/fleet/common/services/package_policies_to_agent_inputs.ts", "lineNumber": 13 }, "deprecated": false, "children": [ { "parentPluginId": "fleet", - "id": "def-common.isValidNamespace.$1", - "type": "string", + "id": "def-common.storedPackagePoliciesToAgentInputs.$1", + "type": "Array", "tags": [], - "label": "namespace", + "label": "packagePolicies", "description": [], "signature": [ - "string" + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.PackagePolicy", + "text": "PackagePolicy" + }, + "[]" ], "source": { - "path": "x-pack/plugins/fleet/common/services/is_valid_namespace.ts", - "lineNumber": 13 + "path": "x-pack/plugins/fleet/common/services/package_policies_to_agent_inputs.ts", + "lineNumber": 14 }, "deprecated": false, "isRequired": true @@ -5960,15 +6945,21 @@ }, { "parentPluginId": "fleet", - "id": "def-common.packageToPackagePolicy", - "type": "Function", - "tags": [], - "label": "packageToPackagePolicy", - "description": [ - "\nBuilds a `NewPackagePolicy` structure based on a package\n" - ], + "id": "def-common.validatePackagePolicy", + "type": "Function", + "tags": [], + "label": "validatePackagePolicy", + "description": [], "signature": [ - "(packageInfo: ", + "(packagePolicy: ", + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.NewPackagePolicy", + "text": "NewPackagePolicy" + }, + ", packageInfo: ", { "pluginId": "fleet", "scope": "common", @@ -5976,128 +6967,66 @@ "section": "def-common.PackageInfo", "text": "PackageInfo" }, - ", agentPolicyId: string, outputId: string, namespace?: string, packagePolicyName?: string | undefined, description?: string | undefined) => ", + ") => ", { "pluginId": "fleet", "scope": "common", "docId": "kibFleetPluginApi", - "section": "def-common.NewPackagePolicy", - "text": "NewPackagePolicy" + "section": "def-common.PackagePolicyValidationResults", + "text": "PackagePolicyValidationResults" } ], "source": { - "path": "x-pack/plugins/fleet/common/services/package_to_package_policy.ts", - "lineNumber": 116 + "path": "x-pack/plugins/fleet/common/services/validate_package_policy.ts", + "lineNumber": 48 }, "deprecated": false, "children": [ { "parentPluginId": "fleet", - "id": "def-common.packageToPackagePolicy.$1", - "type": "CompoundType", + "id": "def-common.validatePackagePolicy.$1", + "type": "Object", "tags": [], - "label": "packageInfo", + "label": "packagePolicy", "description": [], "signature": [ { "pluginId": "fleet", "scope": "common", "docId": "kibFleetPluginApi", - "section": "def-common.PackageInfo", - "text": "PackageInfo" + "section": "def-common.NewPackagePolicy", + "text": "NewPackagePolicy" } ], "source": { - "path": "x-pack/plugins/fleet/common/services/package_to_package_policy.ts", - "lineNumber": 117 - }, - "deprecated": false, - "isRequired": true - }, - { - "parentPluginId": "fleet", - "id": "def-common.packageToPackagePolicy.$2", - "type": "string", - "tags": [], - "label": "agentPolicyId", - "description": [], - "signature": [ - "string" - ], - "source": { - "path": "x-pack/plugins/fleet/common/services/package_to_package_policy.ts", - "lineNumber": 118 - }, - "deprecated": false, - "isRequired": true - }, - { - "parentPluginId": "fleet", - "id": "def-common.packageToPackagePolicy.$3", - "type": "string", - "tags": [], - "label": "outputId", - "description": [], - "signature": [ - "string" - ], - "source": { - "path": "x-pack/plugins/fleet/common/services/package_to_package_policy.ts", - "lineNumber": 119 + "path": "x-pack/plugins/fleet/common/services/validate_package_policy.ts", + "lineNumber": 49 }, "deprecated": false, "isRequired": true }, { "parentPluginId": "fleet", - "id": "def-common.packageToPackagePolicy.$4", - "type": "string", + "id": "def-common.validatePackagePolicy.$2", + "type": "CompoundType", "tags": [], - "label": "namespace", + "label": "packageInfo", "description": [], "signature": [ - "string" + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.PackageInfo", + "text": "PackageInfo" + } ], "source": { - "path": "x-pack/plugins/fleet/common/services/package_to_package_policy.ts", - "lineNumber": 120 + "path": "x-pack/plugins/fleet/common/services/validate_package_policy.ts", + "lineNumber": 50 }, "deprecated": false, "isRequired": true - }, - { - "parentPluginId": "fleet", - "id": "def-common.packageToPackagePolicy.$5", - "type": "string", - "tags": [], - "label": "packagePolicyName", - "description": [], - "signature": [ - "string | undefined" - ], - "source": { - "path": "x-pack/plugins/fleet/common/services/package_to_package_policy.ts", - "lineNumber": 121 - }, - "deprecated": false, - "isRequired": false - }, - { - "parentPluginId": "fleet", - "id": "def-common.packageToPackagePolicy.$6", - "type": "string", - "tags": [], - "label": "description", - "description": [], - "signature": [ - "string | undefined" - ], - "source": { - "path": "x-pack/plugins/fleet/common/services/package_to_package_policy.ts", - "lineNumber": 122 - }, - "deprecated": false, - "isRequired": false } ], "returnComment": [], @@ -6105,55 +7034,78 @@ }, { "parentPluginId": "fleet", - "id": "def-common.packageToPackagePolicyInputs", + "id": "def-common.validatePackagePolicyConfig", "type": "Function", "tags": [], - "label": "packageToPackagePolicyInputs", + "label": "validatePackagePolicyConfig", "description": [], "signature": [ - "(packageInfo: ", + "(configEntry: ", { "pluginId": "fleet", "scope": "common", "docId": "kibFleetPluginApi", - "section": "def-common.PackageInfo", - "text": "PackageInfo" + "section": "def-common.PackagePolicyConfigRecordEntry", + "text": "PackagePolicyConfigRecordEntry" }, - ") => ", + ", varDef: ", { "pluginId": "fleet", "scope": "common", "docId": "kibFleetPluginApi", - "section": "def-common.NewPackagePolicyInput", - "text": "NewPackagePolicyInput" + "section": "def-common.RegistryVarsEntry", + "text": "RegistryVarsEntry" }, - "[]" + ") => string[] | null" ], "source": { - "path": "x-pack/plugins/fleet/common/services/package_to_package_policy.ts", - "lineNumber": 61 + "path": "x-pack/plugins/fleet/common/services/validate_package_policy.ts", + "lineNumber": 186 }, "deprecated": false, "children": [ { "parentPluginId": "fleet", - "id": "def-common.packageToPackagePolicyInputs.$1", - "type": "CompoundType", + "id": "def-common.validatePackagePolicyConfig.$1", + "type": "Object", "tags": [], - "label": "packageInfo", + "label": "configEntry", "description": [], "signature": [ { "pluginId": "fleet", "scope": "common", "docId": "kibFleetPluginApi", - "section": "def-common.PackageInfo", - "text": "PackageInfo" + "section": "def-common.PackagePolicyConfigRecordEntry", + "text": "PackagePolicyConfigRecordEntry" } ], "source": { - "path": "x-pack/plugins/fleet/common/services/package_to_package_policy.ts", - "lineNumber": 62 + "path": "x-pack/plugins/fleet/common/services/validate_package_policy.ts", + "lineNumber": 187 + }, + "deprecated": false, + "isRequired": true + }, + { + "parentPluginId": "fleet", + "id": "def-common.validatePackagePolicyConfig.$2", + "type": "Object", + "tags": [], + "label": "varDef", + "description": [], + "signature": [ + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.RegistryVarsEntry", + "text": "RegistryVarsEntry" + } + ], + "source": { + "path": "x-pack/plugins/fleet/common/services/validate_package_policy.ts", + "lineNumber": 188 }, "deprecated": false, "isRequired": true @@ -6164,56 +7116,79 @@ }, { "parentPluginId": "fleet", - "id": "def-common.storedPackagePoliciesToAgentInputs", + "id": "def-common.validationHasErrors", "type": "Function", "tags": [], - "label": "storedPackagePoliciesToAgentInputs", + "label": "validationHasErrors", "description": [], "signature": [ - "(packagePolicies: ", + "(validationResults: ", { "pluginId": "fleet", "scope": "common", "docId": "kibFleetPluginApi", - "section": "def-common.PackagePolicy", - "text": "PackagePolicy" + "section": "def-common.PackagePolicyConfigValidationResults", + "text": "PackagePolicyConfigValidationResults" }, - "[]) => ", + " | ", { "pluginId": "fleet", "scope": "common", "docId": "kibFleetPluginApi", - "section": "def-common.FullAgentPolicyInput", - "text": "FullAgentPolicyInput" + "section": "def-common.PackagePolicyValidationResults", + "text": "PackagePolicyValidationResults" }, - "[]" + " | ", + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.PackagePolicyInputValidationResults", + "text": "PackagePolicyInputValidationResults" + }, + ") => boolean" ], "source": { - "path": "x-pack/plugins/fleet/common/services/package_policies_to_agent_inputs.ts", - "lineNumber": 11 + "path": "x-pack/plugins/fleet/common/services/validate_package_policy.ts", + "lineNumber": 283 }, "deprecated": false, "children": [ { "parentPluginId": "fleet", - "id": "def-common.storedPackagePoliciesToAgentInputs.$1", - "type": "Array", + "id": "def-common.validationHasErrors.$1", + "type": "CompoundType", "tags": [], - "label": "packagePolicies", + "label": "validationResults", "description": [], "signature": [ { "pluginId": "fleet", "scope": "common", "docId": "kibFleetPluginApi", - "section": "def-common.PackagePolicy", - "text": "PackagePolicy" + "section": "def-common.PackagePolicyConfigValidationResults", + "text": "PackagePolicyConfigValidationResults" }, - "[]" + " | ", + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.PackagePolicyValidationResults", + "text": "PackagePolicyValidationResults" + }, + " | ", + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.PackagePolicyInputValidationResults", + "text": "PackagePolicyInputValidationResults" + } ], "source": { - "path": "x-pack/plugins/fleet/common/services/package_policies_to_agent_inputs.ts", - "lineNumber": 12 + "path": "x-pack/plugins/fleet/common/services/validate_package_policy.ts", + "lineNumber": 284 }, "deprecated": false, "isRequired": true @@ -6505,7 +7480,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 27 + "lineNumber": 28 }, "deprecated": false, "children": [ @@ -6518,7 +7493,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 28 + "lineNumber": 29 }, "deprecated": false }, @@ -6534,7 +7509,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 29 + "lineNumber": 30 }, "deprecated": false }, @@ -6558,7 +7533,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 30 + "lineNumber": 31 }, "deprecated": false }, @@ -6571,7 +7546,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 31 + "lineNumber": 32 }, "deprecated": false }, @@ -6584,7 +7559,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 32 + "lineNumber": 33 }, "deprecated": false }, @@ -6597,7 +7572,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 33 + "lineNumber": 34 }, "deprecated": false }, @@ -6610,7 +7585,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 34 + "lineNumber": 35 }, "deprecated": false } @@ -6809,7 +7784,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 236 + "lineNumber": 241 }, "deprecated": false, "children": [ @@ -6822,7 +7797,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 237 + "lineNumber": 242 }, "deprecated": false }, @@ -6838,7 +7813,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 238 + "lineNumber": 243 }, "deprecated": false }, @@ -6854,7 +7829,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 239 + "lineNumber": 244 }, "deprecated": false }, @@ -6866,7 +7841,7 @@ "label": "type", "description": [], "signature": [ - "\"input\" | ", + "\"input\" | \"doc\" | \"notice\" | ", { "pluginId": "fleet", "scope": "common", @@ -6885,7 +7860,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 240 + "lineNumber": 245 }, "deprecated": false }, @@ -6898,7 +7873,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 241 + "lineNumber": 246 }, "deprecated": false } @@ -7122,7 +8097,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 229 + "lineNumber": 234 }, "deprecated": false, "children": [ @@ -7135,7 +8110,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 230 + "lineNumber": 235 }, "deprecated": false }, @@ -7148,7 +8123,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 231 + "lineNumber": 236 }, "deprecated": false }, @@ -7161,7 +8136,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 232 + "lineNumber": 237 }, "deprecated": false } @@ -8040,7 +9015,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 335 + "lineNumber": 347 }, "deprecated": false, "children": [ @@ -8053,7 +9028,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 336 + "lineNumber": 348 }, "deprecated": false }, @@ -8066,7 +9041,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 337 + "lineNumber": 349 }, "deprecated": false }, @@ -8114,7 +9089,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 338 + "lineNumber": 350 }, "deprecated": false }, @@ -8130,7 +9105,23 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 339 + "lineNumber": 351 + }, + "deprecated": false + }, + { + "parentPluginId": "fleet", + "id": "def-common.EpmPackageAdditions.notice", + "type": "string", + "tags": [], + "label": "notice", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "x-pack/plugins/fleet/common/types/models/epm.ts", + "lineNumber": 352 }, "deprecated": false } @@ -8239,22 +9230,38 @@ "id": "def-common.FleetConfigType.packages", "type": "Array", "tags": [], - "label": "packages", + "label": "packages", + "description": [], + "signature": [ + "Pick<", + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.PackagePolicyPackage", + "text": "PackagePolicyPackage" + }, + ", \"name\" | \"version\">[] | undefined" + ], + "source": { + "path": "x-pack/plugins/fleet/common/types/index.ts", + "lineNumber": 27 + }, + "deprecated": false + }, + { + "parentPluginId": "fleet", + "id": "def-common.FleetConfigType.agentIdVerificationEnabled", + "type": "CompoundType", + "tags": [], + "label": "agentIdVerificationEnabled", "description": [], "signature": [ - "Pick<", - { - "pluginId": "fleet", - "scope": "common", - "docId": "kibFleetPluginApi", - "section": "def-common.PackagePolicyPackage", - "text": "PackagePolicyPackage" - }, - ", \"name\" | \"version\">[] | undefined" + "boolean | undefined" ], "source": { "path": "x-pack/plugins/fleet/common/types/index.ts", - "lineNumber": 27 + "lineNumber": 28 }, "deprecated": false } @@ -9141,7 +10148,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 114 + "lineNumber": 115 }, "deprecated": false, "children": [ @@ -9159,7 +10166,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 118 + "lineNumber": 119 }, "deprecated": false }, @@ -9174,7 +10181,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 122 + "lineNumber": 123 }, "deprecated": false }, @@ -9189,7 +10196,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 126 + "lineNumber": 127 }, "deprecated": false }, @@ -9204,7 +10211,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 130 + "lineNumber": 131 }, "deprecated": false }, @@ -9222,7 +10229,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 134 + "lineNumber": 135 }, "deprecated": false }, @@ -9237,7 +10244,25 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 140 + "lineNumber": 141 + }, + "deprecated": false + }, + { + "parentPluginId": "fleet", + "id": "def-common.FleetServerPolicy.unenroll_timeout", + "type": "number", + "tags": [], + "label": "unenroll_timeout", + "description": [ + "\nAuto unenroll any Elastic Agents which have not checked in for this many seconds" + ], + "signature": [ + "number | undefined" + ], + "source": { + "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", + "lineNumber": 145 }, "deprecated": false } @@ -9253,7 +10278,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 73 + "lineNumber": 74 }, "deprecated": false, "children": [ @@ -9266,7 +10291,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 74 + "lineNumber": 75 }, "deprecated": false }, @@ -9290,7 +10315,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 75 + "lineNumber": 76 }, "deprecated": false }, @@ -9314,7 +10339,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 80 + "lineNumber": 81 }, "deprecated": false }, @@ -9338,7 +10363,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 83 + "lineNumber": 84 }, "deprecated": false }, @@ -9361,7 +10386,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 90 + "lineNumber": 91 }, "deprecated": false }, @@ -9377,7 +10402,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 91 + "lineNumber": 92 }, "deprecated": false }, @@ -9393,7 +10418,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 92 + "lineNumber": 93 }, "deprecated": false } @@ -9409,7 +10434,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 48 + "lineNumber": 49 }, "deprecated": false, "children": [ @@ -9422,7 +10447,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 49 + "lineNumber": 50 }, "deprecated": false }, @@ -9435,7 +10460,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 50 + "lineNumber": 51 }, "deprecated": false }, @@ -9448,7 +10473,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 51 + "lineNumber": 52 }, "deprecated": false }, @@ -9461,7 +10486,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 52 + "lineNumber": 53 }, "deprecated": false }, @@ -9477,7 +10502,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 53 + "lineNumber": 54 }, "deprecated": false }, @@ -9490,7 +10515,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 54 + "lineNumber": 55 }, "deprecated": false }, @@ -9514,7 +10539,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 55 + "lineNumber": 56 }, "deprecated": false }, @@ -9537,7 +10562,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 59 + "lineNumber": 60 }, "deprecated": false }, @@ -9553,7 +10578,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 60 + "lineNumber": 61 }, "deprecated": false } @@ -9569,7 +10594,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 39 + "lineNumber": 40 }, "deprecated": false, "children": [ @@ -9582,7 +10607,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 40 + "lineNumber": 41 }, "deprecated": false }, @@ -9598,7 +10623,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 41 + "lineNumber": 42 }, "deprecated": false }, @@ -9614,7 +10639,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 45 + "lineNumber": 46 }, "deprecated": false } @@ -9630,7 +10655,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 103 + "lineNumber": 104 }, "deprecated": false, "children": [ @@ -9646,7 +10671,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 104 + "lineNumber": 105 }, "deprecated": false }, @@ -9659,7 +10684,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 105 + "lineNumber": 106 }, "deprecated": false }, @@ -9675,7 +10700,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 106 + "lineNumber": 107 }, "deprecated": false } @@ -9691,7 +10716,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 63 + "lineNumber": 64 }, "deprecated": false, "children": [ @@ -9707,7 +10732,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 64 + "lineNumber": 65 }, "deprecated": false } @@ -11403,7 +12428,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 409 + "lineNumber": 418 }, "deprecated": false, "children": [ @@ -11416,7 +12441,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 410 + "lineNumber": 419 }, "deprecated": false }, @@ -11432,7 +12457,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 411 + "lineNumber": 420 }, "deprecated": false }, @@ -11448,7 +12473,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 412 + "lineNumber": 421 }, "deprecated": false }, @@ -11464,7 +12489,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 416 + "lineNumber": 425 }, "deprecated": false }, @@ -11480,7 +12505,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 417 + "lineNumber": 426 }, "deprecated": false }, @@ -11496,7 +12521,58 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 418 + "lineNumber": 427 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "fleet", + "id": "def-common.IndexTemplateEntry", + "type": "Interface", + "tags": [], + "label": "IndexTemplateEntry", + "description": [], + "source": { + "path": "x-pack/plugins/fleet/common/types/models/epm.ts", + "lineNumber": 430 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "fleet", + "id": "def-common.IndexTemplateEntry.templateName", + "type": "string", + "tags": [], + "label": "templateName", + "description": [], + "source": { + "path": "x-pack/plugins/fleet/common/types/models/epm.ts", + "lineNumber": 431 + }, + "deprecated": false + }, + { + "parentPluginId": "fleet", + "id": "def-common.IndexTemplateEntry.indexTemplate", + "type": "Object", + "tags": [], + "label": "indexTemplate", + "description": [], + "signature": [ + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.IndexTemplate", + "text": "IndexTemplate" + } + ], + "source": { + "path": "x-pack/plugins/fleet/common/types/models/epm.ts", + "lineNumber": 432 }, "deprecated": false } @@ -11512,7 +12588,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 402 + "lineNumber": 411 }, "deprecated": false, "children": [ @@ -11528,7 +12604,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 403 + "lineNumber": 412 }, "deprecated": false } @@ -11555,7 +12631,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 357 + "lineNumber": 370 }, "deprecated": false, "children": [ @@ -11578,7 +12654,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 358 + "lineNumber": 371 }, "deprecated": false }, @@ -11601,7 +12677,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 359 + "lineNumber": 372 }, "deprecated": false }, @@ -11624,7 +12700,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 360 + "lineNumber": 373 }, "deprecated": false }, @@ -11640,7 +12716,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 361 + "lineNumber": 374 }, "deprecated": false }, @@ -11653,7 +12729,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 362 + "lineNumber": 375 }, "deprecated": false }, @@ -11666,7 +12742,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 363 + "lineNumber": 376 }, "deprecated": false }, @@ -11682,7 +12758,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 364 + "lineNumber": 377 }, "deprecated": false }, @@ -11695,7 +12771,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 365 + "lineNumber": 378 }, "deprecated": false }, @@ -11708,7 +12784,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 366 + "lineNumber": 379 }, "deprecated": false }, @@ -11724,7 +12800,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 367 + "lineNumber": 380 }, "deprecated": false } @@ -12327,6 +13403,22 @@ }, "deprecated": false }, + { + "parentPluginId": "fleet", + "id": "def-common.NewAgentPolicy.unenroll_timeout", + "type": "number", + "tags": [], + "label": "unenroll_timeout", + "description": [], + "signature": [ + "number | undefined" + ], + "source": { + "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", + "lineNumber": 24 + }, + "deprecated": false + }, { "parentPluginId": "fleet", "id": "def-common.NewAgentPolicy.is_preconfigured", @@ -12339,7 +13431,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 24 + "lineNumber": 25 }, "deprecated": false } @@ -12493,7 +13585,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 52 + "lineNumber": 53 }, "deprecated": false, "children": [ @@ -12506,7 +13598,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 53 + "lineNumber": 54 }, "deprecated": false }, @@ -12522,7 +13614,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 54 + "lineNumber": 55 }, "deprecated": false }, @@ -12535,7 +13627,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 55 + "lineNumber": 56 }, "deprecated": false }, @@ -12548,7 +13640,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 56 + "lineNumber": 57 }, "deprecated": false }, @@ -12561,7 +13653,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 57 + "lineNumber": 58 }, "deprecated": false }, @@ -12574,7 +13666,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 58 + "lineNumber": 59 }, "deprecated": false }, @@ -12597,7 +13689,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 59 + "lineNumber": 60 }, "deprecated": false }, @@ -12620,7 +13712,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 60 + "lineNumber": 61 }, "deprecated": false }, @@ -12644,7 +13736,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 61 + "lineNumber": 62 }, "deprecated": false } @@ -12677,6 +13769,22 @@ }, "deprecated": false }, + { + "parentPluginId": "fleet", + "id": "def-common.NewPackagePolicyInput.policy_template", + "type": "string", + "tags": [], + "label": "policy_template", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", + "lineNumber": 40 + }, + "deprecated": false + }, { "parentPluginId": "fleet", "id": "def-common.NewPackagePolicyInput.enabled", @@ -12686,7 +13794,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 40 + "lineNumber": 41 }, "deprecated": false }, @@ -12702,7 +13810,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 41 + "lineNumber": 42 }, "deprecated": false }, @@ -12726,7 +13834,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 42 + "lineNumber": 43 }, "deprecated": false }, @@ -12750,7 +13858,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 43 + "lineNumber": 44 }, "deprecated": false }, @@ -12773,7 +13881,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 44 + "lineNumber": 45 }, "deprecated": false } @@ -12912,11 +14020,11 @@ "section": "def-common.NewPackagePolicy", "text": "NewPackagePolicy" }, - ", \"enabled\" | \"description\" | \"name\" | \"package\" | \"namespace\" | \"policy_id\" | \"output_id\" | \"vars\">" + ", \"enabled\" | \"description\" | \"name\" | \"package\" | \"policy_id\" | \"namespace\" | \"output_id\" | \"vars\">" ], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 68 + "lineNumber": 69 }, "deprecated": false, "children": [ @@ -12929,7 +14037,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 69 + "lineNumber": 70 }, "deprecated": false }, @@ -12952,7 +14060,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 70 + "lineNumber": 71 }, "deprecated": false }, @@ -12968,7 +14076,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 71 + "lineNumber": 72 }, "deprecated": false }, @@ -12981,7 +14089,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 72 + "lineNumber": 73 }, "deprecated": false }, @@ -12994,7 +14102,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 73 + "lineNumber": 74 }, "deprecated": false }, @@ -13007,7 +14115,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 74 + "lineNumber": 75 }, "deprecated": false }, @@ -13020,7 +14128,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 75 + "lineNumber": 76 }, "deprecated": false }, @@ -13033,7 +14141,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 76 + "lineNumber": 77 }, "deprecated": false } @@ -13104,6 +14212,38 @@ ], "initialIsOpen": false }, + { + "parentPluginId": "fleet", + "id": "def-common.PackagePolicyConfigValidationResults", + "type": "Interface", + "tags": [], + "label": "PackagePolicyConfigValidationResults", + "description": [], + "source": { + "path": "x-pack/plugins/fleet/common/services/validate_package_policy.ts", + "lineNumber": 29 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "fleet", + "id": "def-common.PackagePolicyConfigValidationResults.vars", + "type": "Object", + "tags": [], + "label": "vars", + "description": [], + "signature": [ + "Record | undefined" + ], + "source": { + "path": "x-pack/plugins/fleet/common/services/validate_package_policy.ts", + "lineNumber": 30 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, { "parentPluginId": "fleet", "id": "def-common.PackagePolicyInput", @@ -13127,11 +14267,11 @@ "section": "def-common.NewPackagePolicyInput", "text": "NewPackagePolicyInput" }, - ", \"type\" | \"enabled\" | \"config\" | \"vars\" | \"keep_enabled\">" + ", \"type\" | \"enabled\" | \"config\" | \"vars\" | \"policy_template\" | \"keep_enabled\">" ], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 47 + "lineNumber": 48 }, "deprecated": false, "children": [ @@ -13154,7 +14294,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 48 + "lineNumber": 49 }, "deprecated": false }, @@ -13170,7 +14310,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 49 + "lineNumber": 50 }, "deprecated": false } @@ -13723,7 +14863,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 370 + "lineNumber": 383 }, "deprecated": false, "children": [ @@ -13736,7 +14876,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 371 + "lineNumber": 384 }, "deprecated": false } @@ -14196,7 +15336,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/constants/preconfiguration.ts", - "lineNumber": 67 + "lineNumber": 75 }, "deprecated": false, "children": [ @@ -14212,7 +15352,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/constants/preconfiguration.ts", - "lineNumber": 68 + "lineNumber": 76 }, "deprecated": false }, @@ -14228,7 +15368,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/constants/preconfiguration.ts", - "lineNumber": 69 + "lineNumber": 77 }, "deprecated": false }, @@ -14244,7 +15384,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/constants/preconfiguration.ts", - "lineNumber": 70 + "lineNumber": 78 }, "deprecated": false } @@ -14274,7 +15414,7 @@ "section": "def-common.NewAgentPolicy", "text": "NewAgentPolicy" }, - ", \"description\" | \"name\" | \"is_default\" | \"is_default_fleet_server\" | \"is_managed\" | \"monitoring_enabled\" | \"is_preconfigured\">" + ", \"description\" | \"name\" | \"is_default\" | \"is_default_fleet_server\" | \"is_managed\" | \"monitoring_enabled\" | \"unenroll_timeout\" | \"is_preconfigured\">" ], "source": { "path": "x-pack/plugins/fleet/common/types/models/preconfiguration.ts", @@ -14330,7 +15470,7 @@ "section": "def-common.NewPackagePolicy", "text": "NewPackagePolicy" }, - ", \"enabled\" | \"description\" | \"name\" | \"namespace\" | \"policy_id\" | \"output_id\" | \"vars\">> & { name: string; package: Partial<", + ", \"enabled\" | \"description\" | \"name\" | \"policy_id\" | \"namespace\" | \"output_id\" | \"vars\">> & { name: string; package: Partial<", { "pluginId": "fleet", "scope": "common", @@ -14586,7 +15726,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 281 + "lineNumber": 287 }, "deprecated": false, "children": [ @@ -14599,7 +15739,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 282 + "lineNumber": 288 }, "deprecated": false }, @@ -14615,7 +15755,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 283 + "lineNumber": 289 }, "deprecated": false }, @@ -14631,7 +15771,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 284 + "lineNumber": 290 }, "deprecated": false }, @@ -14644,7 +15784,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 285 + "lineNumber": 291 }, "deprecated": false }, @@ -14657,7 +15797,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 286 + "lineNumber": 292 }, "deprecated": false }, @@ -14670,7 +15810,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 287 + "lineNumber": 293 }, "deprecated": false }, @@ -14693,7 +15833,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 288 + "lineNumber": 294 }, "deprecated": false }, @@ -14706,7 +15846,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 289 + "lineNumber": 295 }, "deprecated": false }, @@ -14719,7 +15859,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 290 + "lineNumber": 296 }, "deprecated": false }, @@ -14735,7 +15875,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 291 + "lineNumber": 297 }, "deprecated": false }, @@ -14758,7 +15898,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 292 + "lineNumber": 298 }, "deprecated": false }, @@ -14774,7 +15914,78 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 293 + "lineNumber": 299 + }, + "deprecated": false + }, + { + "parentPluginId": "fleet", + "id": "def-common.RegistryDataStream.RegistryDataStreamKeys.permissions", + "type": "Object", + "tags": [], + "label": "[RegistryDataStreamKeys.permissions]", + "description": [], + "signature": [ + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.RegistryDataStreamPermissions", + "text": "RegistryDataStreamPermissions" + }, + " | undefined" + ], + "source": { + "path": "x-pack/plugins/fleet/common/types/models/epm.ts", + "lineNumber": 300 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "fleet", + "id": "def-common.RegistryDataStreamPermissions", + "type": "Interface", + "tags": [], + "label": "RegistryDataStreamPermissions", + "description": [], + "source": { + "path": "x-pack/plugins/fleet/common/types/models/epm.ts", + "lineNumber": 308 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "fleet", + "id": "def-common.RegistryDataStreamPermissions.cluster", + "type": "Array", + "tags": [], + "label": "cluster", + "description": [], + "signature": [ + "string[] | undefined" + ], + "source": { + "path": "x-pack/plugins/fleet/common/types/models/epm.ts", + "lineNumber": 309 + }, + "deprecated": false + }, + { + "parentPluginId": "fleet", + "id": "def-common.RegistryDataStreamPermissions.indices", + "type": "Array", + "tags": [], + "label": "indices", + "description": [], + "signature": [ + "string[] | undefined" + ], + "source": { + "path": "x-pack/plugins/fleet/common/types/models/epm.ts", + "lineNumber": 310 }, "deprecated": false } @@ -14790,39 +16001,41 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 296 + "lineNumber": 303 }, "deprecated": false, "children": [ { "parentPluginId": "fleet", "id": "def-common.RegistryElasticsearch.index_template.settings", - "type": "Uncategorized", + "type": "Object", "tags": [], "label": "'index_template.settings'", "description": [], "signature": [ - "object | undefined" + "IndicesIndexSettings", + " | undefined" ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 297 + "lineNumber": 304 }, "deprecated": false }, { "parentPluginId": "fleet", "id": "def-common.RegistryElasticsearch.index_template.mappings", - "type": "Uncategorized", + "type": "Object", "tags": [], "label": "'index_template.mappings'", "description": [], "signature": [ - "object | undefined" + "MappingTypeMapping", + " | undefined" ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 298 + "lineNumber": 305 }, "deprecated": false } @@ -14855,7 +16068,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 126 + "lineNumber": 131 }, "deprecated": false, "children": [ @@ -14868,7 +16081,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 127 + "lineNumber": 132 }, "deprecated": false } @@ -14884,7 +16097,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 168 + "lineNumber": 173 }, "deprecated": false, "children": [ @@ -14897,7 +16110,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 169 + "lineNumber": 174 }, "deprecated": false }, @@ -14910,7 +16123,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 170 + "lineNumber": 175 }, "deprecated": false }, @@ -14923,7 +16136,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 171 + "lineNumber": 176 }, "deprecated": false }, @@ -14939,7 +16152,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 172 + "lineNumber": 177 }, "deprecated": false }, @@ -14955,7 +16168,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 173 + "lineNumber": 178 }, "deprecated": false }, @@ -14971,7 +16184,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 174 + "lineNumber": 179 }, "deprecated": false }, @@ -14994,7 +16207,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 175 + "lineNumber": 180 }, "deprecated": false } @@ -15010,7 +16223,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 143 + "lineNumber": 148 }, "deprecated": false, "children": [ @@ -15023,7 +16236,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 144 + "lineNumber": 149 }, "deprecated": false }, @@ -15036,7 +16249,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 145 + "lineNumber": 150 }, "deprecated": false }, @@ -15049,7 +16262,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 146 + "lineNumber": 151 }, "deprecated": false }, @@ -15072,7 +16285,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 147 + "lineNumber": 152 }, "deprecated": false }, @@ -15095,7 +16308,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 148 + "lineNumber": 153 }, "deprecated": false }, @@ -15111,7 +16324,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 149 + "lineNumber": 154 }, "deprecated": false }, @@ -15127,7 +16340,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 150 + "lineNumber": 155 }, "deprecated": false }, @@ -15150,7 +16363,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 151 + "lineNumber": 156 }, "deprecated": false }, @@ -15166,7 +16379,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 152 + "lineNumber": 157 }, "deprecated": false }, @@ -15182,7 +16395,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 153 + "lineNumber": 158 }, "deprecated": false } @@ -15198,7 +16411,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 187 + "lineNumber": 192 }, "deprecated": false, "children": [ @@ -15211,7 +16424,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 188 + "lineNumber": 193 }, "deprecated": false }, @@ -15224,7 +16437,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 189 + "lineNumber": 194 }, "deprecated": false }, @@ -15240,7 +16453,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 190 + "lineNumber": 195 }, "deprecated": false }, @@ -15256,7 +16469,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 191 + "lineNumber": 196 }, "deprecated": false }, @@ -15279,7 +16492,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 192 + "lineNumber": 197 }, "deprecated": false }, @@ -15292,7 +16505,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 193 + "lineNumber": 198 }, "deprecated": false } @@ -15308,7 +16521,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 317 + "lineNumber": 329 }, "deprecated": false, "children": [ @@ -15321,7 +16534,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 318 + "lineNumber": 330 }, "deprecated": false }, @@ -15337,7 +16550,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 319 + "lineNumber": 331 }, "deprecated": false }, @@ -15353,7 +16566,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 320 + "lineNumber": 332 }, "deprecated": false }, @@ -15369,7 +16582,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 321 + "lineNumber": 333 }, "deprecated": false }, @@ -15385,7 +16598,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 322 + "lineNumber": 334 }, "deprecated": false }, @@ -15401,7 +16614,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 323 + "lineNumber": 335 }, "deprecated": false }, @@ -15417,7 +16630,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 324 + "lineNumber": 336 }, "deprecated": false }, @@ -15433,7 +16646,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 325 + "lineNumber": 337 }, "deprecated": false }, @@ -15449,7 +16662,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 326 + "lineNumber": 338 }, "deprecated": false } @@ -15465,7 +16678,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 198 + "lineNumber": 203 }, "deprecated": false, "children": [ @@ -15478,7 +16691,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 199 + "lineNumber": 204 }, "deprecated": false } @@ -15565,57 +16778,6 @@ "children": [], "initialIsOpen": false }, - { - "parentPluginId": "fleet", - "id": "def-common.TemplateRef", - "type": "Interface", - "tags": [], - "label": "TemplateRef", - "description": [], - "source": { - "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 421 - }, - "deprecated": false, - "children": [ - { - "parentPluginId": "fleet", - "id": "def-common.TemplateRef.templateName", - "type": "string", - "tags": [], - "label": "templateName", - "description": [], - "source": { - "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 422 - }, - "deprecated": false - }, - { - "parentPluginId": "fleet", - "id": "def-common.TemplateRef.indexTemplate", - "type": "Object", - "tags": [], - "label": "indexTemplate", - "description": [], - "signature": [ - { - "pluginId": "fleet", - "scope": "common", - "docId": "kibFleetPluginApi", - "section": "def-common.IndexTemplate", - "text": "IndexTemplate" - } - ], - "source": { - "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 423 - }, - "deprecated": false - } - ], - "initialIsOpen": false - }, { "parentPluginId": "fleet", "id": "def-common.UpdateAgentPolicyResponse", @@ -15728,7 +16890,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 64 + "lineNumber": 65 }, "deprecated": false, "children": [ @@ -15744,7 +16906,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 65 + "lineNumber": 66 }, "deprecated": false } @@ -15762,7 +16924,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 81 + "lineNumber": 86 }, "deprecated": false, "initialIsOpen": false @@ -15790,7 +16952,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 56 + "lineNumber": 61 }, "deprecated": false, "initialIsOpen": false @@ -15804,7 +16966,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 70 + "lineNumber": 75 }, "deprecated": false, "initialIsOpen": false @@ -15818,7 +16980,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 266 + "lineNumber": 271 }, "deprecated": false, "initialIsOpen": false @@ -15832,7 +16994,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 156 + "lineNumber": 161 }, "deprecated": false, "initialIsOpen": false @@ -15846,7 +17008,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 130 + "lineNumber": 135 }, "deprecated": false, "initialIsOpen": false @@ -15860,7 +17022,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 178 + "lineNumber": 183 }, "deprecated": false, "initialIsOpen": false @@ -15874,7 +17036,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 302 + "lineNumber": 314 }, "deprecated": false, "initialIsOpen": false @@ -15915,6 +17077,23 @@ "deprecated": false, "initialIsOpen": false }, + { + "parentPluginId": "fleet", + "id": "def-common.AGENT_ACTIONS_RESULTS_INDEX", + "type": "string", + "tags": [], + "label": "AGENT_ACTIONS_RESULTS_INDEX", + "description": [], + "signature": [ + "\".fleet-actions-results\"" + ], + "source": { + "path": "x-pack/plugins/fleet/common/constants/agent.ts", + "lineNumber": 28 + }, + "deprecated": false, + "initialIsOpen": false + }, { "parentPluginId": "fleet", "id": "def-common.AGENT_POLICY_API_ROOT", @@ -16251,7 +17430,7 @@ "section": "def-common.AgentPolicyAction", "text": "AgentPolicyAction" }, - ", \"id\" | \"created_at\" | \"policy_id\" | \"policy_revision\" | \"ack_data\" | \"sent_at\"> & { type: \"CONFIG_CHANGE\"; data: { config: ", + ", \"id\" | \"policy_id\" | \"created_at\" | \"policy_revision\" | \"ack_data\" | \"sent_at\"> & { type: \"CONFIG_CHANGE\"; data: { config: ", { "pluginId": "fleet", "scope": "common", @@ -16284,7 +17463,7 @@ "section": "def-common.ValueOf", "text": "ValueOf" }, - "<{ readonly Active: \"active\"; readonly Inactive: \"inactive\"; }>; description?: string | undefined; name: string; updated_at: string; updated_by: string; namespace: string; is_default?: boolean | undefined; package_policies: string[] | ", + "<{ readonly Active: \"active\"; readonly Inactive: \"inactive\"; }>; description?: string | undefined; name: string; updated_at: string; namespace: string; updated_by: string; is_default?: boolean | undefined; package_policies: string[] | ", { "pluginId": "fleet", "scope": "common", @@ -16292,11 +17471,11 @@ "section": "def-common.PackagePolicy", "text": "PackagePolicy" }, - "[]; is_default_fleet_server?: boolean | undefined; is_managed: boolean; monitoring_enabled?: (\"metrics\" | \"logs\")[] | undefined; is_preconfigured?: boolean | undefined; revision: number; }" + "[]; is_default_fleet_server?: boolean | undefined; is_managed: boolean; monitoring_enabled?: (\"metrics\" | \"logs\")[] | undefined; unenroll_timeout?: number | undefined; is_preconfigured?: boolean | undefined; revision: number; }" ], "source": { "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "lineNumber": 37 + "lineNumber": 38 }, "deprecated": false, "initialIsOpen": false @@ -16413,7 +17592,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 94 + "lineNumber": 99 }, "deprecated": false, "initialIsOpen": false @@ -16444,7 +17623,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 385 + "lineNumber": 398 }, "deprecated": false, "initialIsOpen": false @@ -16510,7 +17689,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 244 + "lineNumber": 249 }, "deprecated": false, "initialIsOpen": false @@ -16523,7 +17702,7 @@ "label": "AssetType", "description": [], "signature": [ - "\"input\" | ", + "\"input\" | \"doc\" | \"notice\" | ", { "pluginId": "fleet", "scope": "common", @@ -16542,7 +17721,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 51 + "lineNumber": 52 }, "deprecated": false, "initialIsOpen": false @@ -16591,7 +17770,41 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 243 + "lineNumber": 248 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "fleet", + "id": "def-common.AUTO_UPDATE_PACKAGES", + "type": "Array", + "tags": [], + "label": "AUTO_UPDATE_PACKAGES", + "description": [], + "signature": [ + "{ name: string; version: string; }[]" + ], + "source": { + "path": "x-pack/plugins/fleet/common/constants/preconfiguration.ts", + "lineNumber": 70 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "fleet", + "id": "def-common.autoUpdatePackages", + "type": "Array", + "tags": [], + "label": "autoUpdatePackages", + "description": [], + "signature": [ + "string[]" + ], + "source": { + "path": "x-pack/plugins/fleet/common/constants/epm.ts", + "lineNumber": 40 }, "deprecated": false, "initialIsOpen": false @@ -16639,7 +17852,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 228 + "lineNumber": 233 }, "deprecated": false, "initialIsOpen": false @@ -16663,7 +17876,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 227 + "lineNumber": 232 }, "deprecated": false, "initialIsOpen": false @@ -16694,7 +17907,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 90 + "lineNumber": 95 }, "deprecated": false, "initialIsOpen": false @@ -16707,28 +17920,28 @@ "label": "DEFAULT_PACKAGES", "description": [], "signature": [ - "{ name: \"endpoint\" | \"fleet_server\" | \"system\" | \"elastic_agent\"; version: string; }[]" + "{ name: string; version: string; }[]" ], "source": { "path": "x-pack/plugins/fleet/common/constants/preconfiguration.ts", - "lineNumber": 59 + "lineNumber": 65 }, "deprecated": false, "initialIsOpen": false }, { "parentPluginId": "fleet", - "id": "def-common.DefaultPackages", - "type": "Type", + "id": "def-common.defaultPackages", + "type": "Array", "tags": [], - "label": "DefaultPackages", + "label": "defaultPackages", "description": [], "signature": [ - "{ readonly System: \"system\"; readonly Endpoint: \"endpoint\"; readonly ElasticAgent: \"elastic_agent\"; readonly FleetServer: \"fleet_server\"; }" + "string[]" ], "source": { - "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 400 + "path": "x-pack/plugins/fleet/common/constants/epm.ts", + "lineNumber": 38 }, "deprecated": false, "initialIsOpen": false @@ -16758,7 +17971,7 @@ "label": "DetailViewPanelName", "description": [], "signature": [ - "\"custom\" | \"settings\" | \"overview\" | \"policies\"" + "\"custom\" | \"settings\" | \"overview\" | \"policies\" | \"assets\"" ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", @@ -16767,6 +17980,23 @@ "deprecated": false, "initialIsOpen": false }, + { + "parentPluginId": "fleet", + "id": "def-common.DocAssetType", + "type": "Type", + "tags": [], + "label": "DocAssetType", + "description": [], + "signature": [ + "\"doc\" | \"notice\"" + ], + "source": { + "path": "x-pack/plugins/fleet/common/types/models/epm.ts", + "lineNumber": 51 + }, + "deprecated": false, + "initialIsOpen": false + }, { "parentPluginId": "fleet", "id": "def-common.ElasticsearchAssetParts", @@ -16794,7 +18024,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 255 + "lineNumber": 260 }, "deprecated": false, "initialIsOpen": false @@ -16859,7 +18089,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 261 + "lineNumber": 266 }, "deprecated": false, "initialIsOpen": false @@ -16906,7 +18136,7 @@ "label": "EnrollmentAPIKeySOAttributes", "description": [], "signature": [ - "{ name?: string | undefined; active: boolean; created_at: string; policy_id?: string | undefined; api_key: string; api_key_id: string; }" + "{ name?: string | undefined; active: boolean; policy_id?: string | undefined; created_at: string; api_key: string; api_key_id: string; }" ], "source": { "path": "x-pack/plugins/fleet/common/types/models/enrollment_api_key.ts", @@ -16968,7 +18198,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 390 + "lineNumber": 403 }, "deprecated": false, "initialIsOpen": false @@ -16990,6 +18220,40 @@ "deprecated": false, "initialIsOpen": false }, + { + "parentPluginId": "fleet", + "id": "def-common.FLEET_ELASTIC_AGENT_PACKAGE", + "type": "string", + "tags": [], + "label": "FLEET_ELASTIC_AGENT_PACKAGE", + "description": [], + "signature": [ + "\"elastic_agent\"" + ], + "source": { + "path": "x-pack/plugins/fleet/common/constants/epm.ts", + "lineNumber": 13 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "fleet", + "id": "def-common.FLEET_ENDPOINT_PACKAGE", + "type": "string", + "tags": [], + "label": "FLEET_ENDPOINT_PACKAGE", + "description": [], + "signature": [ + "\"endpoint\"" + ], + "source": { + "path": "x-pack/plugins/fleet/common/constants/epm.ts", + "lineNumber": 15 + }, + "deprecated": false, + "initialIsOpen": false + }, { "parentPluginId": "fleet", "id": "def-common.FLEET_SERVER_ARTIFACTS_INDEX", @@ -17053,7 +18317,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/constants/epm.ts", - "lineNumber": 12 + "lineNumber": 14 }, "deprecated": false, "initialIsOpen": false @@ -17075,6 +18339,23 @@ "deprecated": false, "initialIsOpen": false }, + { + "parentPluginId": "fleet", + "id": "def-common.FLEET_SYSTEM_PACKAGE", + "type": "string", + "tags": [], + "label": "FLEET_SYSTEM_PACKAGE", + "description": [], + "signature": [ + "\"system\"" + ], + "source": { + "path": "x-pack/plugins/fleet/common/constants/epm.ts", + "lineNumber": 12 + }, + "deprecated": false, + "initialIsOpen": false + }, { "parentPluginId": "fleet", "id": "def-common.GetAgentPoliciesResponseItem", @@ -17190,7 +18471,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 374 + "lineNumber": 387 }, "deprecated": false, "initialIsOpen": false @@ -17221,7 +18502,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 92 + "lineNumber": 97 }, "deprecated": false, "initialIsOpen": false @@ -17265,7 +18546,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 376 + "lineNumber": 389 }, "deprecated": false, "initialIsOpen": false @@ -17348,7 +18629,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 250 + "lineNumber": 255 }, "deprecated": false, "initialIsOpen": false @@ -17375,7 +18656,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 387 + "lineNumber": 400 }, "deprecated": false, "initialIsOpen": false @@ -17456,7 +18737,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 260 + "lineNumber": 265 }, "deprecated": false, "initialIsOpen": false @@ -17495,6 +18776,40 @@ "deprecated": false, "initialIsOpen": false }, + { + "parentPluginId": "fleet", + "id": "def-common.MonitoringType", + "type": "Type", + "tags": [], + "label": "MonitoringType", + "description": [], + "signature": [ + "(\"metrics\" | \"logs\")[]" + ], + "source": { + "path": "x-pack/plugins/fleet/common/types/models/epm.ts", + "lineNumber": 96 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "fleet", + "id": "def-common.monitoringTypes", + "type": "Array", + "tags": [], + "label": "monitoringTypes", + "description": [], + "signature": [ + "(\"metrics\" | \"logs\")[]" + ], + "source": { + "path": "x-pack/plugins/fleet/common/constants/epm.ts", + "lineNumber": 52 + }, + "deprecated": false, + "initialIsOpen": false + }, { "parentPluginId": "fleet", "id": "def-common.NotInstalled", @@ -17507,7 +18822,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 381 + "lineNumber": 394 }, "deprecated": false, "initialIsOpen": false @@ -17638,7 +18953,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 394 + "lineNumber": 407 }, "deprecated": false, "initialIsOpen": false @@ -17750,7 +19065,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 353 + "lineNumber": 366 }, "deprecated": false, "initialIsOpen": false @@ -17774,7 +19089,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 346 + "lineNumber": 359 }, "deprecated": false, "initialIsOpen": false @@ -17817,7 +19132,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 347 + "lineNumber": 360 }, "deprecated": false, "initialIsOpen": false @@ -17847,6 +19162,38 @@ "deprecated": false, "initialIsOpen": false }, + { + "parentPluginId": "fleet", + "id": "def-common.PackagePolicyInputValidationResults", + "type": "Type", + "tags": [], + "label": "PackagePolicyInputValidationResults", + "description": [], + "signature": [ + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.PackagePolicyConfigValidationResults", + "text": "PackagePolicyConfigValidationResults" + }, + " & { streams?: Record | undefined; }" + ], + "source": { + "path": "x-pack/plugins/fleet/common/services/validate_package_policy.ts", + "lineNumber": 33 + }, + "deprecated": false, + "initialIsOpen": false + }, { "parentPluginId": "fleet", "id": "def-common.PackagePolicySOAttributes", @@ -17863,7 +19210,7 @@ "section": "def-common.PackagePolicyPackage", "text": "PackagePolicyPackage" }, - " | undefined; updated_at: string; created_at: string; created_by: string; updated_by: string; namespace: string; inputs: ", + " | undefined; updated_at: string; policy_id: string; inputs: ", { "pluginId": "fleet", "scope": "common", @@ -17871,7 +19218,7 @@ "section": "def-common.PackagePolicyInput", "text": "PackagePolicyInput" }, - "[]; policy_id: string; output_id: string; vars?: Record | undefined; revision: number; }" + "> | undefined; created_at: string; created_by: string; updated_by: string; revision: number; }" ], "source": { "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "lineNumber": 79 + "lineNumber": 80 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "fleet", + "id": "def-common.PackagePolicyValidationResults", + "type": "Type", + "tags": [], + "label": "PackagePolicyValidationResults", + "description": [], + "signature": [ + "{ name: string[] | null; description: string[] | null; namespace: string[] | null; inputs: Record | null; } & ", + { + "pluginId": "fleet", + "scope": "common", + "docId": "kibFleetPluginApi", + "section": "def-common.PackagePolicyConfigValidationResults", + "text": "PackagePolicyConfigValidationResults" + } + ], + "source": { + "path": "x-pack/plugins/fleet/common/services/validate_package_policy.ts", + "lineNumber": 37 }, "deprecated": false, "initialIsOpen": false @@ -17933,7 +19312,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 352 + "lineNumber": 365 }, "deprecated": false, "initialIsOpen": false @@ -18052,7 +19431,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/constants/preconfiguration.ts", - "lineNumber": 12 + "lineNumber": 18 }, "deprecated": false, "initialIsOpen": false @@ -18069,7 +19448,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/constants/preconfiguration.ts", - "lineNumber": 15 + "lineNumber": 21 }, "deprecated": false, "initialIsOpen": false @@ -18103,7 +19482,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 166 + "lineNumber": 171 }, "deprecated": false, "initialIsOpen": false @@ -18135,7 +19514,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 98 + "lineNumber": 103 }, "deprecated": false, "initialIsOpen": false @@ -18152,7 +19531,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 125 + "lineNumber": 130 }, "deprecated": false, "initialIsOpen": false @@ -18201,7 +19580,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 207 + "lineNumber": 212 }, "deprecated": false, "initialIsOpen": false @@ -18226,7 +19605,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 205 + "lineNumber": 210 }, "deprecated": false, "initialIsOpen": false @@ -18243,41 +19622,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 301 - }, - "deprecated": false, - "initialIsOpen": false - }, - { - "parentPluginId": "fleet", - "id": "def-common.REQUIRED_PACKAGES", - "type": "Array", - "tags": [], - "label": "REQUIRED_PACKAGES", - "description": [], - "signature": [ - "{ name: \"endpoint\" | \"fleet_server\" | \"system\" | \"elastic_agent\"; version: string; }[]" - ], - "source": { - "path": "x-pack/plugins/fleet/common/constants/preconfiguration.ts", - "lineNumber": 65 - }, - "deprecated": false, - "initialIsOpen": false - }, - { - "parentPluginId": "fleet", - "id": "def-common.RequiredPackage", - "type": "Type", - "tags": [], - "label": "RequiredPackage", - "description": [], - "signature": [ - "{ readonly System: \"system\"; readonly Endpoint: \"endpoint\"; readonly ElasticAgent: \"elastic_agent\"; readonly FleetServer: \"fleet_server\"; }" - ], - "source": { - "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 398 + "lineNumber": 313 }, "deprecated": false, "initialIsOpen": false @@ -18294,7 +19639,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 235 + "lineNumber": 240 }, "deprecated": false, "initialIsOpen": false @@ -18311,7 +19656,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 196 + "lineNumber": 201 }, "deprecated": false, "initialIsOpen": false @@ -18328,7 +19673,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 197 + "lineNumber": 202 }, "deprecated": false, "initialIsOpen": false @@ -18359,7 +19704,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "lineNumber": 223 + "lineNumber": 228 }, "deprecated": false, "initialIsOpen": false @@ -18429,6 +19774,23 @@ "deprecated": false, "initialIsOpen": false }, + { + "parentPluginId": "fleet", + "id": "def-common.unremovablePackages", + "type": "Array", + "tags": [], + "label": "unremovablePackages", + "description": [], + "signature": [ + "string[]" + ], + "source": { + "path": "x-pack/plugins/fleet/common/constants/epm.ts", + "lineNumber": 31 + }, + "deprecated": false, + "initialIsOpen": false + }, { "parentPluginId": "fleet", "id": "def-common.UpdateAgentPolicyRequest", @@ -18530,7 +19892,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/types/index.ts", - "lineNumber": 40 + "lineNumber": 41 }, "deprecated": false, "initialIsOpen": false @@ -18880,7 +20242,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/constants/epm.ts", - "lineNumber": 24 + "lineNumber": 42 }, "deprecated": false, "initialIsOpen": false @@ -19703,7 +21065,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/constants/epm.ts", - "lineNumber": 28 + "lineNumber": 46 }, "deprecated": false, "initialIsOpen": false @@ -19717,7 +21079,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/constants/preconfiguration.ts", - "lineNumber": 24 + "lineNumber": 30 }, "deprecated": false, "children": [ @@ -19730,7 +21092,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/constants/preconfiguration.ts", - "lineNumber": 25 + "lineNumber": 31 }, "deprecated": false }, @@ -19743,7 +21105,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/constants/preconfiguration.ts", - "lineNumber": 26 + "lineNumber": 32 }, "deprecated": false }, @@ -19756,7 +21118,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/constants/preconfiguration.ts", - "lineNumber": 27 + "lineNumber": 33 }, "deprecated": false }, @@ -19768,11 +21130,11 @@ "label": "package_policies", "description": [], "signature": [ - "{ name: string; package: { name: \"system\"; }; }[]" + "{ name: string; package: { name: string; }; }[]" ], "source": { "path": "x-pack/plugins/fleet/common/constants/preconfiguration.ts", - "lineNumber": 28 + "lineNumber": 34 }, "deprecated": false }, @@ -19788,7 +21150,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/constants/preconfiguration.ts", - "lineNumber": 36 + "lineNumber": 42 }, "deprecated": false }, @@ -19804,7 +21166,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/constants/preconfiguration.ts", - "lineNumber": 37 + "lineNumber": 43 }, "deprecated": false }, @@ -19820,7 +21182,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/constants/preconfiguration.ts", - "lineNumber": 38 + "lineNumber": 44 }, "deprecated": false } @@ -19836,7 +21198,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/constants/preconfiguration.ts", - "lineNumber": 41 + "lineNumber": 47 }, "deprecated": false, "children": [ @@ -19849,7 +21211,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/constants/preconfiguration.ts", - "lineNumber": 42 + "lineNumber": 48 }, "deprecated": false }, @@ -19862,7 +21224,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/constants/preconfiguration.ts", - "lineNumber": 43 + "lineNumber": 49 }, "deprecated": false }, @@ -19875,7 +21237,7 @@ "description": [], "source": { "path": "x-pack/plugins/fleet/common/constants/preconfiguration.ts", - "lineNumber": 44 + "lineNumber": 50 }, "deprecated": false }, @@ -19887,11 +21249,11 @@ "label": "package_policies", "description": [], "signature": [ - "{ name: string; package: { name: \"fleet_server\"; }; }[]" + "{ name: string; package: { name: string; }; }[]" ], "source": { "path": "x-pack/plugins/fleet/common/constants/preconfiguration.ts", - "lineNumber": 45 + "lineNumber": 51 }, "deprecated": false }, @@ -19907,7 +21269,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/constants/preconfiguration.ts", - "lineNumber": 53 + "lineNumber": 59 }, "deprecated": false }, @@ -19923,7 +21285,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/constants/preconfiguration.ts", - "lineNumber": 54 + "lineNumber": 60 }, "deprecated": false }, @@ -19939,7 +21301,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/constants/preconfiguration.ts", - "lineNumber": 55 + "lineNumber": 61 }, "deprecated": false }, @@ -19955,7 +21317,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/constants/preconfiguration.ts", - "lineNumber": 56 + "lineNumber": 62 }, "deprecated": false } @@ -20039,23 +21401,6 @@ ], "initialIsOpen": false }, - { - "parentPluginId": "fleet", - "id": "def-common.defaultPackages", - "type": "Object", - "tags": [], - "label": "defaultPackages", - "description": [], - "signature": [ - "{ readonly System: \"system\"; readonly Endpoint: \"endpoint\"; readonly ElasticAgent: \"elastic_agent\"; readonly FleetServer: \"fleet_server\"; }" - ], - "source": { - "path": "x-pack/plugins/fleet/common/constants/epm.ts", - "lineNumber": 22 - }, - "deprecated": false, - "initialIsOpen": false - }, { "parentPluginId": "fleet", "id": "def-common.ENROLLMENT_API_KEY_ROUTES", @@ -20726,7 +22071,7 @@ ], "source": { "path": "x-pack/plugins/fleet/common/constants/epm.ts", - "lineNumber": 33 + "lineNumber": 54 }, "deprecated": false, "initialIsOpen": false @@ -21147,10 +22492,10 @@ "children": [ { "parentPluginId": "fleet", - "id": "def-common.PRECONFIGURATION_API_ROUTES.PUT_PRECONFIG", + "id": "def-common.PRECONFIGURATION_API_ROUTES.UPDATE_PATTERN", "type": "string", "tags": [], - "label": "PUT_PRECONFIG", + "label": "UPDATE_PATTERN", "description": [], "source": { "path": "x-pack/plugins/fleet/common/constants/routes.ts", @@ -21161,23 +22506,6 @@ ], "initialIsOpen": false }, - { - "parentPluginId": "fleet", - "id": "def-common.requiredPackages", - "type": "Object", - "tags": [], - "label": "requiredPackages", - "description": [], - "signature": [ - "{ readonly System: \"system\"; readonly Endpoint: \"endpoint\"; readonly ElasticAgent: \"elastic_agent\"; readonly FleetServer: \"fleet_server\"; }" - ], - "source": { - "path": "x-pack/plugins/fleet/common/constants/epm.ts", - "lineNumber": 14 - }, - "deprecated": false, - "initialIsOpen": false - }, { "parentPluginId": "fleet", "id": "def-common.SETTINGS_API_ROUTES", diff --git a/api_docs/fleet.mdx b/api_docs/fleet.mdx index 2113069fe47e0..0306b3114be7a 100644 --- a/api_docs/fleet.mdx +++ b/api_docs/fleet.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'fleet'] warning: 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. --- - import fleetObj from './fleet.json'; @@ -19,7 +18,7 @@ import fleetObj from './fleet.json'; | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 1071 | 15 | 981 | 8 | +| 1117 | 15 | 1024 | 8 | ## Client diff --git a/api_docs/global_search.mdx b/api_docs/global_search.mdx index 041b9aba8ec7c..df91a7e7f0e0f 100644 --- a/api_docs/global_search.mdx +++ b/api_docs/global_search.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'globalSearch'] warning: 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. --- - import globalSearchObj from './global_search.json'; diff --git a/api_docs/home.json b/api_docs/home.json index c11d02dfed9de..f9b41f86a7a5f 100644 --- a/api_docs/home.json +++ b/api_docs/home.json @@ -16,11 +16,11 @@ "\nConvert instruction variant id into display text.\n" ], "signature": [ - "(id: \"ESC\" | \"OSX\" | \"DEB\" | \"RPM\" | \"DOCKER\" | \"WINDOWS\" | \"NODE\" | \"DJANGO\" | \"FLASK\" | \"RAILS\" | \"RACK\" | \"JS\" | \"GO\" | \"JAVA\" | \"DOTNET\" | \"LINUX\" | \"PHP\") => string" + "(id: \"ESC\" | \"OSX\" | \"DEB\" | \"RPM\" | \"DOCKER\" | \"WINDOWS\" | \"NODE\" | \"DJANGO\" | \"FLASK\" | \"RAILS\" | \"RACK\" | \"JS\" | \"GO\" | \"JAVA\" | \"DOTNET\" | \"LINUX\" | \"PHP\" | \"FLEET\") => string" ], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 55 + "lineNumber": 61 }, "deprecated": false, "children": [ @@ -32,11 +32,11 @@ "label": "id", "description": [], "signature": [ - "\"ESC\" | \"OSX\" | \"DEB\" | \"RPM\" | \"DOCKER\" | \"WINDOWS\" | \"NODE\" | \"DJANGO\" | \"FLASK\" | \"RAILS\" | \"RACK\" | \"JS\" | \"GO\" | \"JAVA\" | \"DOTNET\" | \"LINUX\" | \"PHP\"" + "\"ESC\" | \"OSX\" | \"DEB\" | \"RPM\" | \"DOCKER\" | \"WINDOWS\" | \"NODE\" | \"DJANGO\" | \"FLASK\" | \"RAILS\" | \"RACK\" | \"JS\" | \"GO\" | \"JAVA\" | \"DOTNET\" | \"LINUX\" | \"PHP\" | \"FLEET\"" ], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 55 + "lineNumber": 61 }, "deprecated": false, "isRequired": true @@ -598,7 +598,7 @@ "label": "TutorialSetup", "description": [], "signature": [ - "{ setVariable: (key: string, value: unknown) => void; registerDirectoryNotice: (id: string, component: React.FC<{}>) => void; registerDirectoryHeaderLink: (id: string, component: React.FC<{}>) => void; registerModuleNotice: (id: string, component: React.FC<{ moduleName: string; }>) => void; }" + "{ setVariable: (key: string, value: unknown) => void; registerDirectoryNotice: (id: string, component: React.FC<{}>) => void; registerDirectoryHeaderLink: (id: string, component: React.FC<{}>) => void; registerModuleNotice: (id: string, component: React.FC<{ moduleName: string; }>) => void; registerCustomStatusCheck: (name: string, fnCallback: CustomStatusCheckCallback) => void; registerCustomComponent: (name: string, component: CustomComponent) => void; }" ], "source": { "path": "src/plugins/home/public/plugin.ts", @@ -635,7 +635,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 9 + "lineNumber": 11 }, "deprecated": false, "children": [ @@ -648,7 +648,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 10 + "lineNumber": 12 }, "deprecated": false }, @@ -661,7 +661,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 11 + "lineNumber": 13 }, "deprecated": false }, @@ -674,7 +674,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 12 + "lineNumber": 14 }, "deprecated": false }, @@ -687,7 +687,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 13 + "lineNumber": 15 }, "deprecated": false }, @@ -700,7 +700,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 14 + "lineNumber": 16 }, "deprecated": false }, @@ -713,7 +713,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 15 + "lineNumber": 17 }, "deprecated": false }, @@ -726,7 +726,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 16 + "lineNumber": 18 }, "deprecated": false }, @@ -739,7 +739,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 17 + "lineNumber": 19 }, "deprecated": false }, @@ -752,7 +752,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 18 + "lineNumber": 20 }, "deprecated": false }, @@ -765,7 +765,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 19 + "lineNumber": 21 }, "deprecated": false }, @@ -778,7 +778,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 20 + "lineNumber": 22 }, "deprecated": false }, @@ -791,7 +791,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 21 + "lineNumber": 23 }, "deprecated": false }, @@ -804,7 +804,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 22 + "lineNumber": 24 }, "deprecated": false }, @@ -817,7 +817,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 23 + "lineNumber": 25 }, "deprecated": false }, @@ -830,7 +830,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 24 + "lineNumber": 26 }, "deprecated": false }, @@ -843,7 +843,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 25 + "lineNumber": 27 }, "deprecated": false }, @@ -856,7 +856,20 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 26 + "lineNumber": 28 + }, + "deprecated": false + }, + { + "parentPluginId": "home", + "id": "def-public.INSTRUCTION_VARIANT.FLEET", + "type": "string", + "tags": [], + "label": "FLEET", + "description": [], + "source": { + "path": "src/plugins/home/common/instruction_variant.ts", + "lineNumber": 29 }, "deprecated": false } @@ -885,7 +898,7 @@ "label": "tutorials", "description": [], "signature": [ - "{ setVariable: (key: string, value: unknown) => void; registerDirectoryNotice: (id: string, component: React.FC<{}>) => void; registerDirectoryHeaderLink: (id: string, component: React.FC<{}>) => void; registerModuleNotice: (id: string, component: React.FC<{ moduleName: string; }>) => void; }" + "{ setVariable: (key: string, value: unknown) => void; registerDirectoryNotice: (id: string, component: React.FC<{}>) => void; registerDirectoryHeaderLink: (id: string, component: React.FC<{}>) => void; registerModuleNotice: (id: string, component: React.FC<{ moduleName: string; }>) => void; registerCustomStatusCheck: (name: string, fnCallback: CustomStatusCheckCallback) => void; registerCustomComponent: (name: string, component: CustomComponent) => void; }" ], "source": { "path": "src/plugins/home/public/plugin.ts", @@ -971,13 +984,6 @@ }, "deprecated": true, "references": [ - { - "plugin": "ml", - "link": { - "path": "x-pack/plugins/ml/public/register_feature.ts", - "lineNumber": 18 - } - }, { "plugin": "apm", "link": { @@ -989,7 +995,7 @@ "plugin": "cloud", "link": { "path": "x-pack/plugins/cloud/public/plugin.ts", - "lineNumber": 66 + "lineNumber": 86 } } ] @@ -1070,6 +1076,40 @@ "deprecated": false, "initialIsOpen": false }, + { + "parentPluginId": "home", + "id": "def-server.InstructionSetSchema", + "type": "Type", + "tags": [], + "label": "InstructionSetSchema", + "description": [], + "signature": [ + "{ readonly title?: string | undefined; readonly callOut?: Readonly<{ iconType?: string | undefined; message?: string | undefined; } & { title: string; }> | undefined; readonly statusCheck?: Readonly<{ title?: string | undefined; text?: string | undefined; success?: string | undefined; error?: string | undefined; btnLabel?: string | undefined; } & { esHitsCheck: Readonly<{} & { query: Record; index: string | string[]; }>; }> | undefined; readonly instructionVariants: Readonly<{} & { id: string; instructions: Readonly<{ title?: string | undefined; textPre?: string | undefined; commands?: string[] | undefined; textPost?: string | undefined; customComponentName?: string | undefined; } & {}>[]; }>[]; }" + ], + "source": { + "path": "src/plugins/home/server/services/tutorials/lib/tutorial_schema.ts", + "lineNumber": 83 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "home", + "id": "def-server.InstructionsSchema", + "type": "Type", + "tags": [], + "label": "InstructionsSchema", + "description": [], + "signature": [ + "{ readonly params?: Readonly<{ defaultValue?: any; } & { type: \"string\" | \"number\"; label: string; id: string; }>[] | undefined; readonly instructionSets: Readonly<{ title?: string | undefined; callOut?: Readonly<{ iconType?: string | undefined; message?: string | undefined; } & { title: string; }> | undefined; statusCheck?: Readonly<{ title?: string | undefined; text?: string | undefined; success?: string | undefined; error?: string | undefined; btnLabel?: string | undefined; } & { esHitsCheck: Readonly<{} & { query: Record; index: string | string[]; }>; }> | undefined; } & { instructionVariants: Readonly<{} & { id: string; instructions: Readonly<{ title?: string | undefined; textPre?: string | undefined; commands?: string[] | undefined; textPost?: string | undefined; customComponentName?: string | undefined; } & {}>[]; }>[]; }>[]; }" + ], + "source": { + "path": "src/plugins/home/server/services/tutorials/lib/tutorial_schema.ts", + "lineNumber": 104 + }, + "deprecated": false, + "initialIsOpen": false + }, { "parentPluginId": "home", "id": "def-server.SampleDataRegistrySetup", @@ -1130,7 +1170,7 @@ "signature": [ "(context: ", "TutorialContext", - ") => Readonly<{ savedObjects?: any[] | undefined; euiIconType?: string | undefined; previewImagePath?: string | undefined; moduleName?: string | undefined; isBeta?: boolean | undefined; completionTimeMinutes?: number | undefined; elasticCloud?: Readonly<{ params?: Readonly<{ defaultValue?: any; } & { type: \"string\" | \"number\"; label: string; id: string; }>[] | undefined; } & { instructionSets: Readonly<{ title?: string | undefined; callOut?: Readonly<{ iconType?: string | undefined; message?: string | undefined; } & { title: string; }> | undefined; statusCheck?: Readonly<{ title?: string | undefined; text?: string | undefined; success?: string | undefined; error?: string | undefined; btnLabel?: string | undefined; } & { esHitsCheck: Readonly<{} & { query: Record; index: string | string[]; }>; }> | undefined; } & { instructionVariants: Readonly<{} & { id: string; instructions: Readonly<{ title?: string | undefined; textPre?: string | undefined; commands?: string[] | undefined; textPost?: string | undefined; } & {}>[]; }>[]; }>[]; }> | undefined; onPremElasticCloud?: Readonly<{ params?: Readonly<{ defaultValue?: any; } & { type: \"string\" | \"number\"; label: string; id: string; }>[] | undefined; } & { instructionSets: Readonly<{ title?: string | undefined; callOut?: Readonly<{ iconType?: string | undefined; message?: string | undefined; } & { title: string; }> | undefined; statusCheck?: Readonly<{ title?: string | undefined; text?: string | undefined; success?: string | undefined; error?: string | undefined; btnLabel?: string | undefined; } & { esHitsCheck: Readonly<{} & { query: Record; index: string | string[]; }>; }> | undefined; } & { instructionVariants: Readonly<{} & { id: string; instructions: Readonly<{ title?: string | undefined; textPre?: string | undefined; commands?: string[] | undefined; textPost?: string | undefined; } & {}>[]; }>[]; }>[]; }> | undefined; artifacts?: Readonly<{ application?: Readonly<{} & { label: string; path: string; }> | undefined; exportedFields?: Readonly<{} & { documentationUrl: string; }> | undefined; } & { dashboards: Readonly<{ linkLabel?: string | undefined; } & { id: string; isOverview: boolean; }>[]; }> | undefined; savedObjectsInstallMsg?: string | undefined; } & { id: string; name: string; category: \"metrics\" | \"security\" | \"other\" | \"logging\"; shortDescription: string; longDescription: string; onPrem: Readonly<{ params?: Readonly<{ defaultValue?: any; } & { type: \"string\" | \"number\"; label: string; id: string; }>[] | undefined; } & { instructionSets: Readonly<{ title?: string | undefined; callOut?: Readonly<{ iconType?: string | undefined; message?: string | undefined; } & { title: string; }> | undefined; statusCheck?: Readonly<{ title?: string | undefined; text?: string | undefined; success?: string | undefined; error?: string | undefined; btnLabel?: string | undefined; } & { esHitsCheck: Readonly<{} & { query: Record; index: string | string[]; }>; }> | undefined; } & { instructionVariants: Readonly<{} & { id: string; instructions: Readonly<{ title?: string | undefined; textPre?: string | undefined; commands?: string[] | undefined; textPost?: string | undefined; } & {}>[]; }>[]; }>[]; }>; }>" + ") => Readonly<{ savedObjects?: any[] | undefined; euiIconType?: string | undefined; previewImagePath?: string | undefined; moduleName?: string | undefined; isBeta?: boolean | undefined; completionTimeMinutes?: number | undefined; elasticCloud?: Readonly<{ params?: Readonly<{ defaultValue?: any; } & { type: \"string\" | \"number\"; label: string; id: string; }>[] | undefined; } & { instructionSets: Readonly<{ title?: string | undefined; callOut?: Readonly<{ iconType?: string | undefined; message?: string | undefined; } & { title: string; }> | undefined; statusCheck?: Readonly<{ title?: string | undefined; text?: string | undefined; success?: string | undefined; error?: string | undefined; btnLabel?: string | undefined; } & { esHitsCheck: Readonly<{} & { query: Record; index: string | string[]; }>; }> | undefined; } & { instructionVariants: Readonly<{} & { id: string; instructions: Readonly<{ title?: string | undefined; textPre?: string | undefined; commands?: string[] | undefined; textPost?: string | undefined; customComponentName?: string | undefined; } & {}>[]; }>[]; }>[]; }> | undefined; onPremElasticCloud?: Readonly<{ params?: Readonly<{ defaultValue?: any; } & { type: \"string\" | \"number\"; label: string; id: string; }>[] | undefined; } & { instructionSets: Readonly<{ title?: string | undefined; callOut?: Readonly<{ iconType?: string | undefined; message?: string | undefined; } & { title: string; }> | undefined; statusCheck?: Readonly<{ title?: string | undefined; text?: string | undefined; success?: string | undefined; error?: string | undefined; btnLabel?: string | undefined; } & { esHitsCheck: Readonly<{} & { query: Record; index: string | string[]; }>; }> | undefined; } & { instructionVariants: Readonly<{} & { id: string; instructions: Readonly<{ title?: string | undefined; textPre?: string | undefined; commands?: string[] | undefined; textPost?: string | undefined; customComponentName?: string | undefined; } & {}>[]; }>[]; }>[]; }> | undefined; artifacts?: Readonly<{ application?: Readonly<{} & { label: string; path: string; }> | undefined; exportedFields?: Readonly<{} & { documentationUrl: string; }> | undefined; } & { dashboards: Readonly<{ linkLabel?: string | undefined; } & { id: string; isOverview: boolean; }>[]; }> | undefined; savedObjectsInstallMsg?: string | undefined; customStatusCheckName?: string | undefined; } & { id: string; name: string; category: \"metrics\" | \"security\" | \"other\" | \"logging\"; shortDescription: string; longDescription: string; onPrem: Readonly<{ params?: Readonly<{ defaultValue?: any; } & { type: \"string\" | \"number\"; label: string; id: string; }>[] | undefined; } & { instructionSets: Readonly<{ title?: string | undefined; callOut?: Readonly<{ iconType?: string | undefined; message?: string | undefined; } & { title: string; }> | undefined; statusCheck?: Readonly<{ title?: string | undefined; text?: string | undefined; success?: string | undefined; error?: string | undefined; btnLabel?: string | undefined; } & { esHitsCheck: Readonly<{} & { query: Record; index: string | string[]; }>; }> | undefined; } & { instructionVariants: Readonly<{} & { id: string; instructions: Readonly<{ title?: string | undefined; textPre?: string | undefined; commands?: string[] | undefined; textPost?: string | undefined; customComponentName?: string | undefined; } & {}>[]; }>[]; }>[]; }>; }>" ], "source": { "path": "src/plugins/home/server/services/tutorials/lib/tutorials_registry_types.ts", @@ -1138,6 +1178,23 @@ }, "deprecated": false, "initialIsOpen": false + }, + { + "parentPluginId": "home", + "id": "def-server.TutorialSchema", + "type": "Type", + "tags": [], + "label": "TutorialSchema", + "description": [], + "signature": [ + "{ readonly savedObjects?: any[] | undefined; readonly euiIconType?: string | undefined; readonly previewImagePath?: string | undefined; readonly moduleName?: string | undefined; readonly isBeta?: boolean | undefined; readonly completionTimeMinutes?: number | undefined; readonly elasticCloud?: Readonly<{ params?: Readonly<{ defaultValue?: any; } & { type: \"string\" | \"number\"; label: string; id: string; }>[] | undefined; } & { instructionSets: Readonly<{ title?: string | undefined; callOut?: Readonly<{ iconType?: string | undefined; message?: string | undefined; } & { title: string; }> | undefined; statusCheck?: Readonly<{ title?: string | undefined; text?: string | undefined; success?: string | undefined; error?: string | undefined; btnLabel?: string | undefined; } & { esHitsCheck: Readonly<{} & { query: Record; index: string | string[]; }>; }> | undefined; } & { instructionVariants: Readonly<{} & { id: string; instructions: Readonly<{ title?: string | undefined; textPre?: string | undefined; commands?: string[] | undefined; textPost?: string | undefined; customComponentName?: string | undefined; } & {}>[]; }>[]; }>[]; }> | undefined; readonly onPremElasticCloud?: Readonly<{ params?: Readonly<{ defaultValue?: any; } & { type: \"string\" | \"number\"; label: string; id: string; }>[] | undefined; } & { instructionSets: Readonly<{ title?: string | undefined; callOut?: Readonly<{ iconType?: string | undefined; message?: string | undefined; } & { title: string; }> | undefined; statusCheck?: Readonly<{ title?: string | undefined; text?: string | undefined; success?: string | undefined; error?: string | undefined; btnLabel?: string | undefined; } & { esHitsCheck: Readonly<{} & { query: Record; index: string | string[]; }>; }> | undefined; } & { instructionVariants: Readonly<{} & { id: string; instructions: Readonly<{ title?: string | undefined; textPre?: string | undefined; commands?: string[] | undefined; textPost?: string | undefined; customComponentName?: string | undefined; } & {}>[]; }>[]; }>[]; }> | undefined; readonly artifacts?: Readonly<{ application?: Readonly<{} & { label: string; path: string; }> | undefined; exportedFields?: Readonly<{} & { documentationUrl: string; }> | undefined; } & { dashboards: Readonly<{ linkLabel?: string | undefined; } & { id: string; isOverview: boolean; }>[]; }> | undefined; readonly savedObjectsInstallMsg?: string | undefined; readonly customStatusCheckName?: string | undefined; readonly id: string; readonly name: string; readonly category: \"metrics\" | \"security\" | \"other\" | \"logging\"; readonly shortDescription: string; readonly longDescription: string; readonly onPrem: Readonly<{ params?: Readonly<{ defaultValue?: any; } & { type: \"string\" | \"number\"; label: string; id: string; }>[] | undefined; } & { instructionSets: Readonly<{ title?: string | undefined; callOut?: Readonly<{ iconType?: string | undefined; message?: string | undefined; } & { title: string; }> | undefined; statusCheck?: Readonly<{ title?: string | undefined; text?: string | undefined; success?: string | undefined; error?: string | undefined; btnLabel?: string | undefined; } & { esHitsCheck: Readonly<{} & { query: Record; index: string | string[]; }>; }> | undefined; } & { instructionVariants: Readonly<{} & { id: string; instructions: Readonly<{ title?: string | undefined; textPre?: string | undefined; commands?: string[] | undefined; textPost?: string | undefined; customComponentName?: string | undefined; } & {}>[]; }>[]; }>[]; }>; }" + ], + "source": { + "path": "src/plugins/home/server/services/tutorials/lib/tutorial_schema.ts", + "lineNumber": 159 + }, + "deprecated": false, + "initialIsOpen": false } ], "objects": [ @@ -1150,7 +1207,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 9 + "lineNumber": 11 }, "deprecated": false, "children": [ @@ -1163,7 +1220,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 10 + "lineNumber": 12 }, "deprecated": false }, @@ -1176,7 +1233,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 11 + "lineNumber": 13 }, "deprecated": false }, @@ -1189,7 +1246,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 12 + "lineNumber": 14 }, "deprecated": false }, @@ -1202,7 +1259,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 13 + "lineNumber": 15 }, "deprecated": false }, @@ -1215,7 +1272,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 14 + "lineNumber": 16 }, "deprecated": false }, @@ -1228,7 +1285,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 15 + "lineNumber": 17 }, "deprecated": false }, @@ -1241,7 +1298,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 16 + "lineNumber": 18 }, "deprecated": false }, @@ -1254,7 +1311,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 17 + "lineNumber": 19 }, "deprecated": false }, @@ -1267,7 +1324,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 18 + "lineNumber": 20 }, "deprecated": false }, @@ -1280,7 +1337,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 19 + "lineNumber": 21 }, "deprecated": false }, @@ -1293,7 +1350,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 20 + "lineNumber": 22 }, "deprecated": false }, @@ -1306,7 +1363,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 21 + "lineNumber": 23 }, "deprecated": false }, @@ -1319,7 +1376,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 22 + "lineNumber": 24 }, "deprecated": false }, @@ -1332,7 +1389,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 23 + "lineNumber": 25 }, "deprecated": false }, @@ -1345,7 +1402,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 24 + "lineNumber": 26 }, "deprecated": false }, @@ -1358,7 +1415,7 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 25 + "lineNumber": 27 }, "deprecated": false }, @@ -1371,7 +1428,20 @@ "description": [], "source": { "path": "src/plugins/home/common/instruction_variant.ts", - "lineNumber": 26 + "lineNumber": 28 + }, + "deprecated": false + }, + { + "parentPluginId": "home", + "id": "def-server.INSTRUCTION_VARIANT.FLEET", + "type": "string", + "tags": [], + "label": "FLEET", + "description": [], + "source": { + "path": "src/plugins/home/common/instruction_variant.ts", + "lineNumber": 29 }, "deprecated": false } diff --git a/api_docs/home.mdx b/api_docs/home.mdx index 23c58467b6a98..e6ddbfa5c95aa 100644 --- a/api_docs/home.mdx +++ b/api_docs/home.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'home'] warning: 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. --- - import homeObj from './home.json'; @@ -19,7 +18,7 @@ import homeObj from './home.json'; | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 89 | 0 | 65 | 5 | +| 94 | 0 | 70 | 5 | ## Client diff --git a/api_docs/index_lifecycle_management.json b/api_docs/index_lifecycle_management.json index b38b0a13b9044..8f703b3fe87c7 100644 --- a/api_docs/index_lifecycle_management.json +++ b/api_docs/index_lifecycle_management.json @@ -6,20 +6,37 @@ "interfaces": [ { "parentPluginId": "indexLifecycleManagement", - "id": "def-public.IlmUrlGeneratorState", + "id": "def-public.IlmLocatorParams", "type": "Interface", "tags": [], - "label": "IlmUrlGeneratorState", + "label": "IlmLocatorParams", "description": [], + "signature": [ + { + "pluginId": "indexLifecycleManagement", + "scope": "public", + "docId": "kibIndexLifecycleManagementPluginApi", + "section": "def-public.IlmLocatorParams", + "text": "IlmLocatorParams" + }, + " extends ", + { + "pluginId": "kibanaUtils", + "scope": "common", + "docId": "kibKibanaUtilsPluginApi", + "section": "def-common.SerializableState", + "text": "SerializableState" + } + ], "source": { - "path": "x-pack/plugins/index_lifecycle_management/public/url_generator.ts", - "lineNumber": 21 + "path": "x-pack/plugins/index_lifecycle_management/public/locator.ts", + "lineNumber": 20 }, "deprecated": false, "children": [ { "parentPluginId": "indexLifecycleManagement", - "id": "def-public.IlmUrlGeneratorState.page", + "id": "def-public.IlmLocatorParams.page", "type": "CompoundType", "tags": [], "label": "page", @@ -28,14 +45,14 @@ "\"policies_list\" | \"policy_edit\" | \"policy_create\"" ], "source": { - "path": "x-pack/plugins/index_lifecycle_management/public/url_generator.ts", - "lineNumber": 22 + "path": "x-pack/plugins/index_lifecycle_management/public/locator.ts", + "lineNumber": 21 }, "deprecated": false }, { "parentPluginId": "indexLifecycleManagement", - "id": "def-public.IlmUrlGeneratorState.policyName", + "id": "def-public.IlmLocatorParams.policyName", "type": "string", "tags": [], "label": "policyName", @@ -44,24 +61,8 @@ "string | undefined" ], "source": { - "path": "x-pack/plugins/index_lifecycle_management/public/url_generator.ts", - "lineNumber": 23 - }, - "deprecated": false - }, - { - "parentPluginId": "indexLifecycleManagement", - "id": "def-public.IlmUrlGeneratorState.absolute", - "type": "CompoundType", - "tags": [], - "label": "absolute", - "description": [], - "signature": [ - "boolean | undefined" - ], - "source": { - "path": "x-pack/plugins/index_lifecycle_management/public/url_generator.ts", - "lineNumber": 24 + "path": "x-pack/plugins/index_lifecycle_management/public/locator.ts", + "lineNumber": 22 }, "deprecated": false } @@ -73,17 +74,17 @@ "misc": [ { "parentPluginId": "indexLifecycleManagement", - "id": "def-public.ILM_URL_GENERATOR_ID", + "id": "def-public.ILM_LOCATOR_ID", "type": "string", "tags": [], - "label": "ILM_URL_GENERATOR_ID", + "label": "ILM_LOCATOR_ID", "description": [], "signature": [ - "\"ILM_URL_GENERATOR_ID\"" + "\"ILM_LOCATOR_ID\"" ], "source": { - "path": "x-pack/plugins/index_lifecycle_management/public/url_generator.ts", - "lineNumber": 19 + "path": "x-pack/plugins/index_lifecycle_management/public/locator.ts", + "lineNumber": 18 }, "deprecated": false, "initialIsOpen": false diff --git a/api_docs/index_lifecycle_management.mdx b/api_docs/index_lifecycle_management.mdx index a16206ad3d361..54b1b1fa5d80b 100644 --- a/api_docs/index_lifecycle_management.mdx +++ b/api_docs/index_lifecycle_management.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'indexLifecycleManagement'] warning: 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. --- - import indexLifecycleManagementObj from './index_lifecycle_management.json'; @@ -19,7 +18,7 @@ import indexLifecycleManagementObj from './index_lifecycle_management.json'; | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 5 | 0 | 5 | 0 | +| 4 | 0 | 4 | 0 | ## Client diff --git a/api_docs/index_management.mdx b/api_docs/index_management.mdx index 9190012ac0b29..42414651d4d4b 100644 --- a/api_docs/index_management.mdx +++ b/api_docs/index_management.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'indexManagement'] warning: 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. --- - import indexManagementObj from './index_management.json'; diff --git a/api_docs/index_pattern_field_editor.mdx b/api_docs/index_pattern_field_editor.mdx index 1627a18e66724..d21bfaefc674b 100644 --- a/api_docs/index_pattern_field_editor.mdx +++ b/api_docs/index_pattern_field_editor.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'indexPatternFieldEditor'] warning: 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. --- - import indexPatternFieldEditorObj from './index_pattern_field_editor.json'; diff --git a/api_docs/index_pattern_management.json b/api_docs/index_pattern_management.json deleted file mode 100644 index 77ca8b9505d99..0000000000000 --- a/api_docs/index_pattern_management.json +++ /dev/null @@ -1,983 +0,0 @@ -{ - "id": "indexPatternManagement", - "client": { - "classes": [ - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternCreationConfig", - "type": "Class", - "tags": [], - "label": "IndexPatternCreationConfig", - "description": [], - "source": { - "path": "src/plugins/index_pattern_management/public/service/creation/config.ts", - "lineNumber": 37 - }, - "deprecated": false, - "children": [ - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternCreationConfig.key", - "type": "string", - "tags": [], - "label": "key", - "description": [], - "signature": [ - "\"default\"" - ], - "source": { - "path": "src/plugins/index_pattern_management/public/service/creation/config.ts", - "lineNumber": 38 - }, - "deprecated": false - }, - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternCreationConfig.type", - "type": "string", - "tags": [], - "label": "type", - "description": [], - "signature": [ - "string | undefined" - ], - "source": { - "path": "src/plugins/index_pattern_management/public/service/creation/config.ts", - "lineNumber": 40 - }, - "deprecated": false - }, - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternCreationConfig.name", - "type": "string", - "tags": [], - "label": "name", - "description": [], - "source": { - "path": "src/plugins/index_pattern_management/public/service/creation/config.ts", - "lineNumber": 41 - }, - "deprecated": false - }, - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternCreationConfig.showSystemIndices", - "type": "boolean", - "tags": [], - "label": "showSystemIndices", - "description": [], - "source": { - "path": "src/plugins/index_pattern_management/public/service/creation/config.ts", - "lineNumber": 42 - }, - "deprecated": false - }, - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternCreationConfig.httpClient", - "type": "CompoundType", - "tags": [], - "label": "httpClient", - "description": [], - "signature": [ - "object | null" - ], - "source": { - "path": "src/plugins/index_pattern_management/public/service/creation/config.ts", - "lineNumber": 43 - }, - "deprecated": false - }, - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternCreationConfig.isBeta", - "type": "boolean", - "tags": [], - "label": "isBeta", - "description": [], - "source": { - "path": "src/plugins/index_pattern_management/public/service/creation/config.ts", - "lineNumber": 44 - }, - "deprecated": false - }, - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternCreationConfig.Unnamed", - "type": "Function", - "tags": [], - "label": "Constructor", - "description": [], - "signature": [ - "any" - ], - "source": { - "path": "src/plugins/index_pattern_management/public/service/creation/config.ts", - "lineNumber": 46 - }, - "deprecated": false, - "children": [ - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternCreationConfig.Unnamed.$1.typeundefinednameindexPatternTypeNameshowSystemIndicestruehttpClientnullisBetafalse", - "type": "Object", - "tags": [], - "label": "{\n type = undefined,\n name = indexPatternTypeName,\n showSystemIndices = true,\n httpClient = null,\n isBeta = false,\n }", - "description": [], - "source": { - "path": "src/plugins/index_pattern_management/public/service/creation/config.ts", - "lineNumber": 52 - }, - "deprecated": false, - "children": [ - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternCreationConfig.Unnamed.$1.typeundefinednameindexPatternTypeNameshowSystemIndicestruehttpClientnullisBetafalse.type", - "type": "string", - "tags": [], - "label": "type", - "description": [], - "signature": [ - "string | undefined" - ], - "source": { - "path": "src/plugins/index_pattern_management/public/service/creation/config.ts", - "lineNumber": 53 - }, - "deprecated": false - }, - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternCreationConfig.Unnamed.$1.typeundefinednameindexPatternTypeNameshowSystemIndicestruehttpClientnullisBetafalse.name", - "type": "string", - "tags": [], - "label": "name", - "description": [], - "signature": [ - "string | undefined" - ], - "source": { - "path": "src/plugins/index_pattern_management/public/service/creation/config.ts", - "lineNumber": 54 - }, - "deprecated": false - }, - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternCreationConfig.Unnamed.$1.typeundefinednameindexPatternTypeNameshowSystemIndicestruehttpClientnullisBetafalse.showSystemIndices", - "type": "CompoundType", - "tags": [], - "label": "showSystemIndices", - "description": [], - "signature": [ - "boolean | undefined" - ], - "source": { - "path": "src/plugins/index_pattern_management/public/service/creation/config.ts", - "lineNumber": 55 - }, - "deprecated": false - }, - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternCreationConfig.Unnamed.$1.typeundefinednameindexPatternTypeNameshowSystemIndicestruehttpClientnullisBetafalse.httpClient", - "type": "CompoundType", - "tags": [], - "label": "httpClient", - "description": [], - "signature": [ - "object | null | undefined" - ], - "source": { - "path": "src/plugins/index_pattern_management/public/service/creation/config.ts", - "lineNumber": 56 - }, - "deprecated": false - }, - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternCreationConfig.Unnamed.$1.typeundefinednameindexPatternTypeNameshowSystemIndicestruehttpClientnullisBetafalse.isBeta", - "type": "CompoundType", - "tags": [], - "label": "isBeta", - "description": [], - "signature": [ - "boolean | undefined" - ], - "source": { - "path": "src/plugins/index_pattern_management/public/service/creation/config.ts", - "lineNumber": 57 - }, - "deprecated": false - } - ] - } - ], - "returnComment": [] - }, - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternCreationConfig.getIndexPatternCreationOption", - "type": "Function", - "tags": [], - "label": "getIndexPatternCreationOption", - "description": [], - "signature": [ - "(urlHandler: ", - "UrlHandler", - ") => ", - { - "pluginId": "indexPatternManagement", - "scope": "public", - "docId": "kibIndexPatternManagementPluginApi", - "section": "def-public.IndexPatternCreationOption", - "text": "IndexPatternCreationOption" - } - ], - "source": { - "path": "src/plugins/index_pattern_management/public/service/creation/config.ts", - "lineNumber": 66 - }, - "deprecated": false, - "children": [ - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternCreationConfig.getIndexPatternCreationOption.$1", - "type": "Function", - "tags": [], - "label": "urlHandler", - "description": [], - "signature": [ - "UrlHandler" - ], - "source": { - "path": "src/plugins/index_pattern_management/public/service/creation/config.ts", - "lineNumber": 66 - }, - "deprecated": false, - "isRequired": true - } - ], - "returnComment": [] - }, - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternCreationConfig.getIndexPatternType", - "type": "Function", - "tags": [], - "label": "getIndexPatternType", - "description": [], - "signature": [ - "() => string | undefined" - ], - "source": { - "path": "src/plugins/index_pattern_management/public/service/creation/config.ts", - "lineNumber": 77 - }, - "deprecated": false, - "children": [], - "returnComment": [] - }, - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternCreationConfig.getIndexPatternName", - "type": "Function", - "tags": [], - "label": "getIndexPatternName", - "description": [], - "signature": [ - "() => string" - ], - "source": { - "path": "src/plugins/index_pattern_management/public/service/creation/config.ts", - "lineNumber": 81 - }, - "deprecated": false, - "children": [], - "returnComment": [] - }, - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternCreationConfig.getIsBeta", - "type": "Function", - "tags": [], - "label": "getIsBeta", - "description": [], - "signature": [ - "() => boolean" - ], - "source": { - "path": "src/plugins/index_pattern_management/public/service/creation/config.ts", - "lineNumber": 85 - }, - "deprecated": false, - "children": [], - "returnComment": [] - }, - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternCreationConfig.getShowSystemIndices", - "type": "Function", - "tags": [], - "label": "getShowSystemIndices", - "description": [], - "signature": [ - "() => boolean" - ], - "source": { - "path": "src/plugins/index_pattern_management/public/service/creation/config.ts", - "lineNumber": 89 - }, - "deprecated": false, - "children": [], - "returnComment": [] - }, - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternCreationConfig.getIndexTags", - "type": "Function", - "tags": [], - "label": "getIndexTags", - "description": [], - "signature": [ - "(indexName: string) => never[]" - ], - "source": { - "path": "src/plugins/index_pattern_management/public/service/creation/config.ts", - "lineNumber": 93 - }, - "deprecated": false, - "children": [ - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternCreationConfig.getIndexTags.$1", - "type": "string", - "tags": [], - "label": "indexName", - "description": [], - "signature": [ - "string" - ], - "source": { - "path": "src/plugins/index_pattern_management/public/service/creation/config.ts", - "lineNumber": 93 - }, - "deprecated": false, - "isRequired": true - } - ], - "returnComment": [] - }, - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternCreationConfig.checkIndicesForErrors", - "type": "Function", - "tags": [], - "label": "checkIndicesForErrors", - "description": [], - "signature": [ - "(indices: ", - "MatchedItem", - "[]) => undefined" - ], - "source": { - "path": "src/plugins/index_pattern_management/public/service/creation/config.ts", - "lineNumber": 97 - }, - "deprecated": false, - "children": [ - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternCreationConfig.checkIndicesForErrors.$1", - "type": "Array", - "tags": [], - "label": "indices", - "description": [], - "signature": [ - "MatchedItem", - "[]" - ], - "source": { - "path": "src/plugins/index_pattern_management/public/service/creation/config.ts", - "lineNumber": 97 - }, - "deprecated": false, - "isRequired": true - } - ], - "returnComment": [] - }, - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternCreationConfig.getIndexPatternMappings", - "type": "Function", - "tags": [], - "label": "getIndexPatternMappings", - "description": [], - "signature": [ - "() => {}" - ], - "source": { - "path": "src/plugins/index_pattern_management/public/service/creation/config.ts", - "lineNumber": 101 - }, - "deprecated": false, - "children": [], - "returnComment": [] - }, - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternCreationConfig.renderPrompt", - "type": "Function", - "tags": [], - "label": "renderPrompt", - "description": [], - "signature": [ - "() => null" - ], - "source": { - "path": "src/plugins/index_pattern_management/public/service/creation/config.ts", - "lineNumber": 105 - }, - "deprecated": false, - "children": [], - "returnComment": [] - }, - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternCreationConfig.getFetchForWildcardOptions", - "type": "Function", - "tags": [], - "label": "getFetchForWildcardOptions", - "description": [], - "signature": [ - "() => {}" - ], - "source": { - "path": "src/plugins/index_pattern_management/public/service/creation/config.ts", - "lineNumber": 109 - }, - "deprecated": false, - "children": [], - "returnComment": [] - } - ], - "initialIsOpen": false - }, - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternListConfig", - "type": "Class", - "tags": [], - "label": "IndexPatternListConfig", - "description": [], - "source": { - "path": "src/plugins/index_pattern_management/public/service/list/config.ts", - "lineNumber": 25 - }, - "deprecated": false, - "children": [ - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternListConfig.key", - "type": "string", - "tags": [], - "label": "key", - "description": [], - "signature": [ - "\"default\"" - ], - "source": { - "path": "src/plugins/index_pattern_management/public/service/list/config.ts", - "lineNumber": 26 - }, - "deprecated": false - }, - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternListConfig.getIndexPatternTags", - "type": "Function", - "tags": [], - "label": "getIndexPatternTags", - "description": [], - "signature": [ - "(indexPattern: ", - { - "pluginId": "data", - "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" - }, - " | ", - { - "pluginId": "core", - "scope": "public", - "docId": "kibCoreSavedObjectsPluginApi", - "section": "def-public.SimpleSavedObject", - "text": "SimpleSavedObject" - }, - "<", - { - "pluginId": "data", - "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" - }, - ">, isDefault: boolean) => ", - "IndexPatternTag", - "[]" - ], - "source": { - "path": "src/plugins/index_pattern_management/public/service/list/config.ts", - "lineNumber": 28 - }, - "deprecated": false, - "children": [ - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternListConfig.getIndexPatternTags.$1", - "type": "CompoundType", - "tags": [], - "label": "indexPattern", - "description": [], - "signature": [ - { - "pluginId": "data", - "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" - }, - " | ", - { - "pluginId": "core", - "scope": "public", - "docId": "kibCoreSavedObjectsPluginApi", - "section": "def-public.SimpleSavedObject", - "text": "SimpleSavedObject" - }, - "<", - { - "pluginId": "data", - "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" - }, - ">" - ], - "source": { - "path": "src/plugins/index_pattern_management/public/service/list/config.ts", - "lineNumber": 29 - }, - "deprecated": false, - "isRequired": true - }, - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternListConfig.getIndexPatternTags.$2", - "type": "boolean", - "tags": [], - "label": "isDefault", - "description": [], - "signature": [ - "boolean" - ], - "source": { - "path": "src/plugins/index_pattern_management/public/service/list/config.ts", - "lineNumber": 30 - }, - "deprecated": false, - "isRequired": true - } - ], - "returnComment": [] - }, - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternListConfig.getFieldInfo", - "type": "Function", - "tags": [], - "label": "getFieldInfo", - "description": [], - "signature": [ - "(indexPattern: ", - { - "pluginId": "data", - "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" - }, - ", field: ", - { - "pluginId": "data", - "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IFieldType", - "text": "IFieldType" - }, - ") => string[]" - ], - "source": { - "path": "src/plugins/index_pattern_management/public/service/list/config.ts", - "lineNumber": 42 - }, - "deprecated": false, - "children": [ - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternListConfig.getFieldInfo.$1", - "type": "Object", - "tags": [], - "label": "indexPattern", - "description": [], - "signature": [ - { - "pluginId": "data", - "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" - } - ], - "source": { - "path": "src/plugins/index_pattern_management/public/service/list/config.ts", - "lineNumber": 42 - }, - "deprecated": false, - "isRequired": true - }, - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternListConfig.getFieldInfo.$2", - "type": "Object", - "tags": [], - "label": "field", - "description": [], - "signature": [ - { - "pluginId": "data", - "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IFieldType", - "text": "IFieldType" - } - ], - "source": { - "path": "src/plugins/index_pattern_management/public/service/list/config.ts", - "lineNumber": 42 - }, - "deprecated": false, - "isRequired": true - } - ], - "returnComment": [] - }, - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternListConfig.areScriptedFieldsEnabled", - "type": "Function", - "tags": [], - "label": "areScriptedFieldsEnabled", - "description": [], - "signature": [ - "(indexPattern: ", - { - "pluginId": "data", - "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" - }, - ") => boolean" - ], - "source": { - "path": "src/plugins/index_pattern_management/public/service/list/config.ts", - "lineNumber": 46 - }, - "deprecated": false, - "children": [ - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternListConfig.areScriptedFieldsEnabled.$1", - "type": "Object", - "tags": [], - "label": "indexPattern", - "description": [], - "signature": [ - { - "pluginId": "data", - "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" - } - ], - "source": { - "path": "src/plugins/index_pattern_management/public/service/list/config.ts", - "lineNumber": 46 - }, - "deprecated": false, - "isRequired": true - } - ], - "returnComment": [] - } - ], - "initialIsOpen": false - } - ], - "functions": [], - "interfaces": [ - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternCreationOption", - "type": "Interface", - "tags": [], - "label": "IndexPatternCreationOption", - "description": [], - "source": { - "path": "src/plugins/index_pattern_management/public/service/creation/config.ts", - "lineNumber": 29 - }, - "deprecated": false, - "children": [ - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternCreationOption.text", - "type": "string", - "tags": [], - "label": "text", - "description": [], - "source": { - "path": "src/plugins/index_pattern_management/public/service/creation/config.ts", - "lineNumber": 30 - }, - "deprecated": false - }, - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternCreationOption.description", - "type": "string", - "tags": [], - "label": "description", - "description": [], - "source": { - "path": "src/plugins/index_pattern_management/public/service/creation/config.ts", - "lineNumber": 31 - }, - "deprecated": false - }, - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternCreationOption.testSubj", - "type": "string", - "tags": [], - "label": "testSubj", - "description": [], - "source": { - "path": "src/plugins/index_pattern_management/public/service/creation/config.ts", - "lineNumber": 32 - }, - "deprecated": false - }, - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternCreationOption.onClick", - "type": "Function", - "tags": [], - "label": "onClick", - "description": [], - "signature": [ - "() => void" - ], - "source": { - "path": "src/plugins/index_pattern_management/public/service/creation/config.ts", - "lineNumber": 33 - }, - "deprecated": false, - "returnComment": [], - "children": [] - }, - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternCreationOption.isBeta", - "type": "CompoundType", - "tags": [], - "label": "isBeta", - "description": [], - "signature": [ - "boolean | undefined" - ], - "source": { - "path": "src/plugins/index_pattern_management/public/service/creation/config.ts", - "lineNumber": 34 - }, - "deprecated": false - } - ], - "initialIsOpen": false - } - ], - "enums": [ - { - "parentPluginId": "indexPatternManagement", - "id": "def-public.MlCardState", - "type": "Enum", - "tags": [], - "label": "MlCardState", - "description": [], - "source": { - "path": "src/plugins/index_pattern_management/public/types.ts", - "lineNumber": 42 - }, - "deprecated": false, - "initialIsOpen": false - } - ], - "misc": [], - "objects": [], - "setup": { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternManagementSetup", - "type": "Type", - "tags": [], - "label": "IndexPatternManagementSetup", - "description": [], - "signature": [ - "{ creation: { addCreationConfig: (Config: typeof ", - { - "pluginId": "indexPatternManagement", - "scope": "public", - "docId": "kibIndexPatternManagementPluginApi", - "section": "def-public.IndexPatternCreationConfig", - "text": "IndexPatternCreationConfig" - }, - ") => void; }; list: { addListConfig: (Config: typeof ", - { - "pluginId": "indexPatternManagement", - "scope": "public", - "docId": "kibIndexPatternManagementPluginApi", - "section": "def-public.IndexPatternListConfig", - "text": "IndexPatternListConfig" - }, - ") => void; }; environment: { update: (update: Partial<", - "Environment", - ">) => void; }; }" - ], - "source": { - "path": "src/plugins/index_pattern_management/public/plugin.ts", - "lineNumber": 32 - }, - "deprecated": false, - "lifecycle": "setup", - "initialIsOpen": true - }, - "start": { - "parentPluginId": "indexPatternManagement", - "id": "def-public.IndexPatternManagementStart", - "type": "Type", - "tags": [], - "label": "IndexPatternManagementStart", - "description": [], - "signature": [ - "{ creation: { getType: (key: string | undefined) => ", - { - "pluginId": "indexPatternManagement", - "scope": "public", - "docId": "kibIndexPatternManagementPluginApi", - "section": "def-public.IndexPatternCreationConfig", - "text": "IndexPatternCreationConfig" - }, - "; getIndexPatternCreationOptions: (urlHandler: ", - "UrlHandler", - ") => Promise<", - { - "pluginId": "indexPatternManagement", - "scope": "public", - "docId": "kibIndexPatternManagementPluginApi", - "section": "def-public.IndexPatternCreationOption", - "text": "IndexPatternCreationOption" - }, - "[]>; }; list: { getIndexPatternTags: (indexPattern: ", - { - "pluginId": "data", - "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" - }, - " | ", - { - "pluginId": "core", - "scope": "public", - "docId": "kibCoreSavedObjectsPluginApi", - "section": "def-public.SimpleSavedObject", - "text": "SimpleSavedObject" - }, - "<", - { - "pluginId": "data", - "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" - }, - ">, isDefault: boolean) => ", - "IndexPatternTag", - "[]; getFieldInfo: (indexPattern: ", - { - "pluginId": "data", - "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" - }, - ", field: ", - { - "pluginId": "data", - "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IFieldType", - "text": "IFieldType" - }, - ") => string[]; areScriptedFieldsEnabled: (indexPattern: ", - { - "pluginId": "data", - "scope": "common", - "docId": "kibDataIndexPatternsPluginApi", - "section": "def-common.IIndexPattern", - "text": "IIndexPattern" - }, - ") => boolean; }; }" - ], - "source": { - "path": "src/plugins/index_pattern_management/public/plugin.ts", - "lineNumber": 34 - }, - "deprecated": false, - "lifecycle": "start", - "initialIsOpen": true - } - }, - "server": { - "classes": [], - "functions": [], - "interfaces": [], - "enums": [], - "misc": [], - "objects": [] - }, - "common": { - "classes": [], - "functions": [], - "interfaces": [], - "enums": [], - "misc": [], - "objects": [] - } -} \ No newline at end of file diff --git a/api_docs/index_pattern_management.mdx b/api_docs/index_pattern_management.mdx deleted file mode 100644 index 7d82efb213ff1..0000000000000 --- a/api_docs/index_pattern_management.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -id: kibIndexPatternManagementPluginApi -slug: /kibana-dev-docs/indexPatternManagementPluginApi -title: indexPatternManagement -image: https://source.unsplash.com/400x175/?github -summary: API docs for the indexPatternManagement plugin -date: 2020-11-16 -tags: ['contributor', 'dev', 'apidocs', 'kibana', 'indexPatternManagement'] -warning: 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. ---- - -import indexPatternManagementObj from './index_pattern_management.json'; - - - - - -**Code health stats** - -| Public API count | Any count | Items lacking comments | Missing exports | -|-------------------|-----------|------------------------|-----------------| -| 46 | 0 | 46 | 4 | - -## Client - -### Setup - - -### Start - - -### Classes - - -### Interfaces - - -### Enums - - diff --git a/api_docs/infra.mdx b/api_docs/infra.mdx index 0a13dcdfb5bcc..5622f3bed6736 100644 --- a/api_docs/infra.mdx +++ b/api_docs/infra.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'infra'] warning: 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. --- - import infraObj from './infra.json'; diff --git a/api_docs/ingest_pipelines.json b/api_docs/ingest_pipelines.json deleted file mode 100644 index 3f8817a04ff3a..0000000000000 --- a/api_docs/ingest_pipelines.json +++ /dev/null @@ -1,220 +0,0 @@ -{ - "id": "ingestPipelines", - "client": { - "classes": [ - { - "parentPluginId": "ingestPipelines", - "id": "def-public.IngestPipelinesUrlGenerator", - "type": "Class", - "tags": [], - "label": "IngestPipelinesUrlGenerator", - "description": [], - "signature": [ - { - "pluginId": "ingestPipelines", - "scope": "public", - "docId": "kibIngestPipelinesPluginApi", - "section": "def-public.IngestPipelinesUrlGenerator", - "text": "IngestPipelinesUrlGenerator" - }, - " implements ", - { - "pluginId": "share", - "scope": "public", - "docId": "kibSharePluginApi", - "section": "def-public.UrlGeneratorsDefinition", - "text": "UrlGeneratorsDefinition" - }, - "<\"INGEST_PIPELINES_APP_URL_GENERATOR\">" - ], - "source": { - "path": "x-pack/plugins/ingest_pipelines/public/url_generator.ts", - "lineNumber": 55 - }, - "deprecated": false, - "children": [ - { - "parentPluginId": "ingestPipelines", - "id": "def-public.IngestPipelinesUrlGenerator.Unnamed", - "type": "Function", - "tags": [], - "label": "Constructor", - "description": [], - "signature": [ - "any" - ], - "source": { - "path": "x-pack/plugins/ingest_pipelines/public/url_generator.ts", - "lineNumber": 57 - }, - "deprecated": false, - "children": [ - { - "parentPluginId": "ingestPipelines", - "id": "def-public.IngestPipelinesUrlGenerator.Unnamed.$1", - "type": "Function", - "tags": [], - "label": "getAppBasePath", - "description": [], - "signature": [ - "(absolute: boolean) => Promise" - ], - "source": { - "path": "x-pack/plugins/ingest_pipelines/public/url_generator.ts", - "lineNumber": 57 - }, - "deprecated": false, - "isRequired": true - } - ], - "returnComment": [] - }, - { - "parentPluginId": "ingestPipelines", - "id": "def-public.IngestPipelinesUrlGenerator.id", - "type": "string", - "tags": [], - "label": "id", - "description": [], - "signature": [ - "\"INGEST_PIPELINES_APP_URL_GENERATOR\"" - ], - "source": { - "path": "x-pack/plugins/ingest_pipelines/public/url_generator.ts", - "lineNumber": 59 - }, - "deprecated": false - }, - { - "parentPluginId": "ingestPipelines", - "id": "def-public.IngestPipelinesUrlGenerator.createUrl", - "type": "Function", - "tags": [], - "label": "createUrl", - "description": [], - "signature": [ - "(state: ", - { - "pluginId": "ingestPipelines", - "scope": "public", - "docId": "kibIngestPipelinesPluginApi", - "section": "def-public.IngestPipelinesUrlGeneratorState", - "text": "IngestPipelinesUrlGeneratorState" - }, - ") => Promise" - ], - "source": { - "path": "x-pack/plugins/ingest_pipelines/public/url_generator.ts", - "lineNumber": 61 - }, - "deprecated": false, - "children": [ - { - "parentPluginId": "ingestPipelines", - "id": "def-public.IngestPipelinesUrlGenerator.createUrl.$1", - "type": "CompoundType", - "tags": [], - "label": "state", - "description": [], - "signature": [ - { - "pluginId": "ingestPipelines", - "scope": "public", - "docId": "kibIngestPipelinesPluginApi", - "section": "def-public.IngestPipelinesUrlGeneratorState", - "text": "IngestPipelinesUrlGeneratorState" - } - ], - "source": { - "path": "x-pack/plugins/ingest_pipelines/public/url_generator.ts", - "lineNumber": 61 - }, - "deprecated": false, - "isRequired": true - } - ], - "returnComment": [] - } - ], - "initialIsOpen": false - } - ], - "functions": [], - "interfaces": [], - "enums": [ - { - "parentPluginId": "ingestPipelines", - "id": "def-public.INGEST_PIPELINES_PAGES", - "type": "Enum", - "tags": [], - "label": "INGEST_PIPELINES_PAGES", - "description": [], - "source": { - "path": "x-pack/plugins/ingest_pipelines/public/url_generator.ts", - "lineNumber": 22 - }, - "deprecated": false, - "initialIsOpen": false - } - ], - "misc": [ - { - "parentPluginId": "ingestPipelines", - "id": "def-public.INGEST_PIPELINES_APP_ULR_GENERATOR", - "type": "string", - "tags": [], - "label": "INGEST_PIPELINES_APP_ULR_GENERATOR", - "description": [], - "signature": [ - "\"INGEST_PIPELINES_APP_URL_GENERATOR\"" - ], - "source": { - "path": "x-pack/plugins/ingest_pipelines/public/url_generator.ts", - "lineNumber": 20 - }, - "deprecated": false, - "initialIsOpen": false - }, - { - "parentPluginId": "ingestPipelines", - "id": "def-public.IngestPipelinesUrlGeneratorState", - "type": "Type", - "tags": [], - "label": "IngestPipelinesUrlGeneratorState", - "description": [], - "signature": [ - "PipelinesListUrlGeneratorState", - " | ", - "PipelineEditUrlGeneratorState", - " | ", - "PipelineCloneUrlGeneratorState", - " | ", - "PipelineCreateUrlGeneratorState" - ], - "source": { - "path": "x-pack/plugins/ingest_pipelines/public/url_generator.ts", - "lineNumber": 49 - }, - "deprecated": false, - "initialIsOpen": false - } - ], - "objects": [] - }, - "server": { - "classes": [], - "functions": [], - "interfaces": [], - "enums": [], - "misc": [], - "objects": [] - }, - "common": { - "classes": [], - "functions": [], - "interfaces": [], - "enums": [], - "misc": [], - "objects": [] - } -} \ No newline at end of file diff --git a/api_docs/ingest_pipelines.mdx b/api_docs/ingest_pipelines.mdx deleted file mode 100644 index 25bdbceda4ead..0000000000000 --- a/api_docs/ingest_pipelines.mdx +++ /dev/null @@ -1,34 +0,0 @@ ---- -id: kibIngestPipelinesPluginApi -slug: /kibana-dev-docs/ingestPipelinesPluginApi -title: ingestPipelines -image: https://source.unsplash.com/400x175/?github -summary: API docs for the ingestPipelines plugin -date: 2020-11-16 -tags: ['contributor', 'dev', 'apidocs', 'kibana', 'ingestPipelines'] -warning: 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. ---- - -import ingestPipelinesObj from './ingest_pipelines.json'; - - - - - -**Code health stats** - -| Public API count | Any count | Items lacking comments | Missing exports | -|-------------------|-----------|------------------------|-----------------| -| 9 | 0 | 9 | 4 | - -## Client - -### Classes - - -### Enums - - -### Consts, variables and types - - diff --git a/api_docs/inspector.mdx b/api_docs/inspector.mdx index d69ef22ce788a..e89f1a98fb493 100644 --- a/api_docs/inspector.mdx +++ b/api_docs/inspector.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'inspector'] warning: 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. --- - import inspectorObj from './inspector.json'; diff --git a/api_docs/kibana_legacy.mdx b/api_docs/kibana_legacy.mdx index 5cd9244f0ea57..1602bfeffb69b 100644 --- a/api_docs/kibana_legacy.mdx +++ b/api_docs/kibana_legacy.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'kibanaLegacy'] warning: 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. --- - import kibanaLegacyObj from './kibana_legacy.json'; diff --git a/api_docs/kibana_react.json b/api_docs/kibana_react.json index a477de7c6512c..ed9c5ef45c7f9 100644 --- a/api_docs/kibana_react.json +++ b/api_docs/kibana_react.json @@ -683,7 +683,7 @@ ], "source": { "path": "src/plugins/kibana_react/public/code_editor/index.tsx", - "lineNumber": 36 + "lineNumber": 39 }, "deprecated": false, "children": [ @@ -701,7 +701,7 @@ ], "source": { "path": "src/plugins/kibana_react/public/code_editor/index.tsx", - "lineNumber": 36 + "lineNumber": 39 }, "deprecated": false, "isRequired": true @@ -726,7 +726,7 @@ ], "source": { "path": "src/plugins/kibana_react/public/code_editor/index.tsx", - "lineNumber": 50 + "lineNumber": 53 }, "deprecated": false, "children": [ @@ -744,7 +744,7 @@ ], "source": { "path": "src/plugins/kibana_react/public/code_editor/index.tsx", - "lineNumber": 50 + "lineNumber": 53 }, "deprecated": false, "isRequired": true @@ -1219,33 +1219,33 @@ }, { "parentPluginId": "kibanaReact", - "id": "def-public.OverviewPageFooter", + "id": "def-public.overviewPageActions", "type": "Function", "tags": [], - "label": "OverviewPageFooter", + "label": "overviewPageActions", "description": [], "signature": [ - "({ addBasePath, path, onSetDefaultRoute, onChangeDefaultRoute, }: React.PropsWithChildren) => JSX.Element" + "({ addBasePath, application, hidden, showDevToolsLink, showManagementLink, }: Props) => (JSX.Element | null)[]" ], "source": { - "path": "src/plugins/kibana_react/public/overview_page/overview_page_footer/overview_page_footer.tsx", - "lineNumber": 28 + "path": "src/plugins/kibana_react/public/overview_page/overview_page_actions/overview_page_actions.tsx", + "lineNumber": 23 }, "deprecated": false, "children": [ { "parentPluginId": "kibanaReact", - "id": "def-public.OverviewPageFooter.$1", - "type": "CompoundType", + "id": "def-public.overviewPageActions.$1", + "type": "Object", "tags": [], - "label": "{\n addBasePath,\n path,\n onSetDefaultRoute,\n onChangeDefaultRoute,\n}", + "label": "{\n addBasePath,\n application,\n hidden,\n showDevToolsLink,\n showManagementLink,\n}", "description": [], "signature": [ - "React.PropsWithChildren" + "Props" ], "source": { - "path": "src/plugins/kibana_react/public/overview_page/overview_page_footer/overview_page_footer.tsx", - "lineNumber": 28 + "path": "src/plugins/kibana_react/public/overview_page/overview_page_actions/overview_page_actions.tsx", + "lineNumber": 23 }, "deprecated": false, "isRequired": true @@ -1256,33 +1256,33 @@ }, { "parentPluginId": "kibanaReact", - "id": "def-public.OverviewPageHeader", + "id": "def-public.OverviewPageFooter", "type": "Function", "tags": [], - "label": "OverviewPageHeader", + "label": "OverviewPageFooter", "description": [], "signature": [ - "({ hideToolbar, iconType, overlap, showDevToolsLink, showManagementLink, title, addBasePath, }: React.PropsWithChildren) => JSX.Element" + "({ addBasePath, path, onSetDefaultRoute, onChangeDefaultRoute, }: React.PropsWithChildren) => JSX.Element" ], "source": { - "path": "src/plugins/kibana_react/public/overview_page/overview_page_header/overview_page_header.tsx", - "lineNumber": 35 + "path": "src/plugins/kibana_react/public/overview_page/overview_page_footer/overview_page_footer.tsx", + "lineNumber": 28 }, "deprecated": false, "children": [ { "parentPluginId": "kibanaReact", - "id": "def-public.OverviewPageHeader.$1", + "id": "def-public.OverviewPageFooter.$1", "type": "CompoundType", "tags": [], - "label": "{\n hideToolbar,\n iconType,\n overlap,\n showDevToolsLink,\n showManagementLink,\n title,\n addBasePath,\n}", + "label": "{\n addBasePath,\n path,\n onSetDefaultRoute,\n onChangeDefaultRoute,\n}", "description": [], "signature": [ "React.PropsWithChildren" ], "source": { - "path": "src/plugins/kibana_react/public/overview_page/overview_page_header/overview_page_header.tsx", - "lineNumber": 35 + "path": "src/plugins/kibana_react/public/overview_page/overview_page_footer/overview_page_footer.tsx", + "lineNumber": 28 }, "deprecated": false, "isRequired": true @@ -1830,7 +1830,7 @@ ], "source": { "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", - "lineNumber": 40 + "lineNumber": 32 }, "deprecated": false, "children": [ @@ -1854,7 +1854,7 @@ ], "source": { "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", - "lineNumber": 40 + "lineNumber": 32 }, "deprecated": false, "isRequired": true @@ -3655,7 +3655,7 @@ "description": [], "source": { "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", - "lineNumber": 31 + "lineNumber": 23 }, "deprecated": false, "children": [ @@ -3668,7 +3668,7 @@ "description": [], "source": { "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", - "lineNumber": 32 + "lineNumber": 24 }, "deprecated": false }, @@ -3684,7 +3684,7 @@ ], "source": { "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", - "lineNumber": 33 + "lineNumber": 25 }, "deprecated": false }, @@ -3707,7 +3707,7 @@ ], "source": { "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", - "lineNumber": 34 + "lineNumber": 26 }, "deprecated": false }, @@ -3725,7 +3725,7 @@ ], "source": { "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", - "lineNumber": 35 + "lineNumber": 27 }, "deprecated": false, "returnComment": [], @@ -3776,7 +3776,7 @@ ], "source": { "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", - "lineNumber": 36 + "lineNumber": 28 }, "deprecated": false }, @@ -3796,7 +3796,7 @@ ], "source": { "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", - "lineNumber": 37 + "lineNumber": 29 }, "deprecated": false } @@ -3812,7 +3812,7 @@ "description": [], "source": { "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", - "lineNumber": 24 + "lineNumber": 16 }, "deprecated": false, "children": [ @@ -3825,7 +3825,7 @@ "description": [], "source": { "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", - "lineNumber": 25 + "lineNumber": 17 }, "deprecated": false }, @@ -3841,7 +3841,7 @@ ], "source": { "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", - "lineNumber": 26 + "lineNumber": 18 }, "deprecated": false }, @@ -3857,7 +3857,7 @@ ], "source": { "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", - "lineNumber": 27 + "lineNumber": 19 }, "deprecated": false }, @@ -3874,7 +3874,7 @@ ], "source": { "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", - "lineNumber": 28 + "lineNumber": 20 }, "deprecated": false }, @@ -3890,7 +3890,7 @@ ], "source": { "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", - "lineNumber": 29 + "lineNumber": 21 }, "deprecated": false } @@ -3929,7 +3929,7 @@ ], "source": { "path": "src/plugins/kibana_react/public/code_editor/index.tsx", - "lineNumber": 29 + "lineNumber": 32 }, "deprecated": false, "initialIsOpen": false @@ -3944,19 +3944,9 @@ "\nA thin wrapper around EuiPageTemplate with a few Kibana specific additions" ], "signature": [ - "(Pick<", + "Pick<", "EuiPageProps", - ", \"children\" | \"onClick\" | \"onChange\" | \"color\" | \"onKeyDown\" | \"title\" | \"id\" | \"defaultChecked\" | \"defaultValue\" | \"suppressContentEditableWarning\" | \"suppressHydrationWarning\" | \"accessKey\" | \"className\" | \"contentEditable\" | \"contextMenu\" | \"dir\" | \"draggable\" | \"hidden\" | \"lang\" | \"placeholder\" | \"slot\" | \"spellCheck\" | \"style\" | \"tabIndex\" | \"translate\" | \"radioGroup\" | \"role\" | \"about\" | \"datatype\" | \"inlist\" | \"prefix\" | \"property\" | \"resource\" | \"typeof\" | \"vocab\" | \"autoCapitalize\" | \"autoCorrect\" | \"autoSave\" | \"itemProp\" | \"itemScope\" | \"itemType\" | \"itemID\" | \"itemRef\" | \"results\" | \"security\" | \"unselectable\" | \"inputMode\" | \"is\" | \"aria-activedescendant\" | \"aria-atomic\" | \"aria-autocomplete\" | \"aria-busy\" | \"aria-checked\" | \"aria-colcount\" | \"aria-colindex\" | \"aria-colspan\" | \"aria-controls\" | \"aria-current\" | \"aria-describedby\" | \"aria-details\" | \"aria-disabled\" | \"aria-dropeffect\" | \"aria-errormessage\" | \"aria-expanded\" | \"aria-flowto\" | \"aria-grabbed\" | \"aria-haspopup\" | \"aria-hidden\" | \"aria-invalid\" | \"aria-keyshortcuts\" | \"aria-label\" | \"aria-labelledby\" | \"aria-level\" | \"aria-live\" | \"aria-modal\" | \"aria-multiline\" | \"aria-multiselectable\" | \"aria-orientation\" | \"aria-owns\" | \"aria-placeholder\" | \"aria-posinset\" | \"aria-pressed\" | \"aria-readonly\" | \"aria-relevant\" | \"aria-required\" | \"aria-roledescription\" | \"aria-rowcount\" | \"aria-rowindex\" | \"aria-rowspan\" | \"aria-selected\" | \"aria-setsize\" | \"aria-sort\" | \"aria-valuemax\" | \"aria-valuemin\" | \"aria-valuenow\" | \"aria-valuetext\" | \"dangerouslySetInnerHTML\" | \"onCopy\" | \"onCopyCapture\" | \"onCut\" | \"onCutCapture\" | \"onPaste\" | \"onPasteCapture\" | \"onCompositionEnd\" | \"onCompositionEndCapture\" | \"onCompositionStart\" | \"onCompositionStartCapture\" | \"onCompositionUpdate\" | \"onCompositionUpdateCapture\" | \"onFocus\" | \"onFocusCapture\" | \"onBlur\" | \"onBlurCapture\" | \"onChangeCapture\" | \"onBeforeInput\" | \"onBeforeInputCapture\" | \"onInput\" | \"onInputCapture\" | \"onReset\" | \"onResetCapture\" | \"onSubmit\" | \"onSubmitCapture\" | \"onInvalid\" | \"onInvalidCapture\" | \"onLoad\" | \"onLoadCapture\" | \"onError\" | \"onErrorCapture\" | \"onKeyDownCapture\" | \"onKeyPress\" | \"onKeyPressCapture\" | \"onKeyUp\" | \"onKeyUpCapture\" | \"onAbort\" | \"onAbortCapture\" | \"onCanPlay\" | \"onCanPlayCapture\" | \"onCanPlayThrough\" | \"onCanPlayThroughCapture\" | \"onDurationChange\" | \"onDurationChangeCapture\" | \"onEmptied\" | \"onEmptiedCapture\" | \"onEncrypted\" | \"onEncryptedCapture\" | \"onEnded\" | \"onEndedCapture\" | \"onLoadedData\" | \"onLoadedDataCapture\" | \"onLoadedMetadata\" | \"onLoadedMetadataCapture\" | \"onLoadStart\" | \"onLoadStartCapture\" | \"onPause\" | \"onPauseCapture\" | \"onPlay\" | \"onPlayCapture\" | \"onPlaying\" | \"onPlayingCapture\" | \"onProgress\" | \"onProgressCapture\" | \"onRateChange\" | \"onRateChangeCapture\" | \"onSeeked\" | \"onSeekedCapture\" | \"onSeeking\" | \"onSeekingCapture\" | \"onStalled\" | \"onStalledCapture\" | \"onSuspend\" | \"onSuspendCapture\" | \"onTimeUpdate\" | \"onTimeUpdateCapture\" | \"onVolumeChange\" | \"onVolumeChangeCapture\" | \"onWaiting\" | \"onWaitingCapture\" | \"onAuxClick\" | \"onAuxClickCapture\" | \"onClickCapture\" | \"onContextMenu\" | \"onContextMenuCapture\" | \"onDoubleClick\" | \"onDoubleClickCapture\" | \"onDrag\" | \"onDragCapture\" | \"onDragEnd\" | \"onDragEndCapture\" | \"onDragEnter\" | \"onDragEnterCapture\" | \"onDragExit\" | \"onDragExitCapture\" | \"onDragLeave\" | \"onDragLeaveCapture\" | \"onDragOver\" | \"onDragOverCapture\" | \"onDragStart\" | \"onDragStartCapture\" | \"onDrop\" | \"onDropCapture\" | \"onMouseDown\" | \"onMouseDownCapture\" | \"onMouseEnter\" | \"onMouseLeave\" | \"onMouseMove\" | \"onMouseMoveCapture\" | \"onMouseOut\" | \"onMouseOutCapture\" | \"onMouseOver\" | \"onMouseOverCapture\" | \"onMouseUp\" | \"onMouseUpCapture\" | \"onSelect\" | \"onSelectCapture\" | \"onTouchCancel\" | \"onTouchCancelCapture\" | \"onTouchEnd\" | \"onTouchEndCapture\" | \"onTouchMove\" | \"onTouchMoveCapture\" | \"onTouchStart\" | \"onTouchStartCapture\" | \"onPointerDown\" | \"onPointerDownCapture\" | \"onPointerMove\" | \"onPointerMoveCapture\" | \"onPointerUp\" | \"onPointerUpCapture\" | \"onPointerCancel\" | \"onPointerCancelCapture\" | \"onPointerEnter\" | \"onPointerEnterCapture\" | \"onPointerLeave\" | \"onPointerLeaveCapture\" | \"onPointerOver\" | \"onPointerOverCapture\" | \"onPointerOut\" | \"onPointerOutCapture\" | \"onGotPointerCapture\" | \"onGotPointerCaptureCapture\" | \"onLostPointerCapture\" | \"onLostPointerCaptureCapture\" | \"onScroll\" | \"onScrollCapture\" | \"onWheel\" | \"onWheelCapture\" | \"onAnimationStart\" | \"onAnimationStartCapture\" | \"onAnimationEnd\" | \"onAnimationEndCapture\" | \"onAnimationIteration\" | \"onAnimationIterationCapture\" | \"onTransitionEnd\" | \"onTransitionEndCapture\" | \"css\" | \"data-test-subj\" | \"grow\" | \"direction\" | \"restrictWidth\"> & ", - "DisambiguateSet", - "<{ template?: \"default\" | undefined; bottomBar?: React.ReactNode; bottomBarProps?: (", - "CommonProps", - " & React.HTMLAttributes & ", - "DisambiguateSet", - "<{ position?: \"fixed\" | undefined; usePortal?: boolean | undefined; affordForDisplacement?: boolean | undefined; }, { position: \"static\" | \"sticky\"; }> & { position: \"static\" | \"sticky\"; } & { paddingSize?: \"none\" | \"m\" | \"s\" | \"l\" | undefined; bodyClassName?: string | undefined; landmarkHeading?: string | undefined; top?: string | number | undefined; right?: string | number | undefined; bottom?: string | number | undefined; left?: string | number | undefined; }) | (", - "CommonProps", - " & React.HTMLAttributes & ", - "DisambiguateSet", - "<{ position: \"static\" | \"sticky\"; }, { position?: \"fixed\" | undefined; usePortal?: boolean | undefined; affordForDisplacement?: boolean | undefined; }> & { position?: \"fixed\" | undefined; usePortal?: boolean | undefined; affordForDisplacement?: boolean | undefined; } & { paddingSize?: \"none\" | \"m\" | \"s\" | \"l\" | undefined; bodyClassName?: string | undefined; landmarkHeading?: string | undefined; top?: string | number | undefined; right?: string | number | undefined; bottom?: string | number | undefined; left?: string | number | undefined; }) | undefined; }, { template: \"default\" | \"empty\" | \"centeredBody\" | \"centeredContent\"; }> & { template: \"default\" | \"empty\" | \"centeredBody\" | \"centeredContent\"; } & { paddingSize?: \"none\" | \"m\" | \"s\" | \"l\" | undefined; pageSideBar?: React.ReactNode; pageSideBarProps?: ", + ", \"children\" | \"onClick\" | \"onChange\" | \"color\" | \"onKeyDown\" | \"title\" | \"id\" | \"defaultChecked\" | \"defaultValue\" | \"suppressContentEditableWarning\" | \"suppressHydrationWarning\" | \"accessKey\" | \"className\" | \"contentEditable\" | \"contextMenu\" | \"dir\" | \"draggable\" | \"hidden\" | \"lang\" | \"placeholder\" | \"slot\" | \"spellCheck\" | \"style\" | \"tabIndex\" | \"translate\" | \"radioGroup\" | \"role\" | \"about\" | \"datatype\" | \"inlist\" | \"prefix\" | \"property\" | \"resource\" | \"typeof\" | \"vocab\" | \"autoCapitalize\" | \"autoCorrect\" | \"autoSave\" | \"itemProp\" | \"itemScope\" | \"itemType\" | \"itemID\" | \"itemRef\" | \"results\" | \"security\" | \"unselectable\" | \"inputMode\" | \"is\" | \"aria-activedescendant\" | \"aria-atomic\" | \"aria-autocomplete\" | \"aria-busy\" | \"aria-checked\" | \"aria-colcount\" | \"aria-colindex\" | \"aria-colspan\" | \"aria-controls\" | \"aria-current\" | \"aria-describedby\" | \"aria-details\" | \"aria-disabled\" | \"aria-dropeffect\" | \"aria-errormessage\" | \"aria-expanded\" | \"aria-flowto\" | \"aria-grabbed\" | \"aria-haspopup\" | \"aria-hidden\" | \"aria-invalid\" | \"aria-keyshortcuts\" | \"aria-label\" | \"aria-labelledby\" | \"aria-level\" | \"aria-live\" | \"aria-modal\" | \"aria-multiline\" | \"aria-multiselectable\" | \"aria-orientation\" | \"aria-owns\" | \"aria-placeholder\" | \"aria-posinset\" | \"aria-pressed\" | \"aria-readonly\" | \"aria-relevant\" | \"aria-required\" | \"aria-roledescription\" | \"aria-rowcount\" | \"aria-rowindex\" | \"aria-rowspan\" | \"aria-selected\" | \"aria-setsize\" | \"aria-sort\" | \"aria-valuemax\" | \"aria-valuemin\" | \"aria-valuenow\" | \"aria-valuetext\" | \"dangerouslySetInnerHTML\" | \"onCopy\" | \"onCopyCapture\" | \"onCut\" | \"onCutCapture\" | \"onPaste\" | \"onPasteCapture\" | \"onCompositionEnd\" | \"onCompositionEndCapture\" | \"onCompositionStart\" | \"onCompositionStartCapture\" | \"onCompositionUpdate\" | \"onCompositionUpdateCapture\" | \"onFocus\" | \"onFocusCapture\" | \"onBlur\" | \"onBlurCapture\" | \"onChangeCapture\" | \"onBeforeInput\" | \"onBeforeInputCapture\" | \"onInput\" | \"onInputCapture\" | \"onReset\" | \"onResetCapture\" | \"onSubmit\" | \"onSubmitCapture\" | \"onInvalid\" | \"onInvalidCapture\" | \"onLoad\" | \"onLoadCapture\" | \"onError\" | \"onErrorCapture\" | \"onKeyDownCapture\" | \"onKeyPress\" | \"onKeyPressCapture\" | \"onKeyUp\" | \"onKeyUpCapture\" | \"onAbort\" | \"onAbortCapture\" | \"onCanPlay\" | \"onCanPlayCapture\" | \"onCanPlayThrough\" | \"onCanPlayThroughCapture\" | \"onDurationChange\" | \"onDurationChangeCapture\" | \"onEmptied\" | \"onEmptiedCapture\" | \"onEncrypted\" | \"onEncryptedCapture\" | \"onEnded\" | \"onEndedCapture\" | \"onLoadedData\" | \"onLoadedDataCapture\" | \"onLoadedMetadata\" | \"onLoadedMetadataCapture\" | \"onLoadStart\" | \"onLoadStartCapture\" | \"onPause\" | \"onPauseCapture\" | \"onPlay\" | \"onPlayCapture\" | \"onPlaying\" | \"onPlayingCapture\" | \"onProgress\" | \"onProgressCapture\" | \"onRateChange\" | \"onRateChangeCapture\" | \"onSeeked\" | \"onSeekedCapture\" | \"onSeeking\" | \"onSeekingCapture\" | \"onStalled\" | \"onStalledCapture\" | \"onSuspend\" | \"onSuspendCapture\" | \"onTimeUpdate\" | \"onTimeUpdateCapture\" | \"onVolumeChange\" | \"onVolumeChangeCapture\" | \"onWaiting\" | \"onWaitingCapture\" | \"onAuxClick\" | \"onAuxClickCapture\" | \"onClickCapture\" | \"onContextMenu\" | \"onContextMenuCapture\" | \"onDoubleClick\" | \"onDoubleClickCapture\" | \"onDrag\" | \"onDragCapture\" | \"onDragEnd\" | \"onDragEndCapture\" | \"onDragEnter\" | \"onDragEnterCapture\" | \"onDragExit\" | \"onDragExitCapture\" | \"onDragLeave\" | \"onDragLeaveCapture\" | \"onDragOver\" | \"onDragOverCapture\" | \"onDragStart\" | \"onDragStartCapture\" | \"onDrop\" | \"onDropCapture\" | \"onMouseDown\" | \"onMouseDownCapture\" | \"onMouseEnter\" | \"onMouseLeave\" | \"onMouseMove\" | \"onMouseMoveCapture\" | \"onMouseOut\" | \"onMouseOutCapture\" | \"onMouseOver\" | \"onMouseOverCapture\" | \"onMouseUp\" | \"onMouseUpCapture\" | \"onSelect\" | \"onSelectCapture\" | \"onTouchCancel\" | \"onTouchCancelCapture\" | \"onTouchEnd\" | \"onTouchEndCapture\" | \"onTouchMove\" | \"onTouchMoveCapture\" | \"onTouchStart\" | \"onTouchStartCapture\" | \"onPointerDown\" | \"onPointerDownCapture\" | \"onPointerMove\" | \"onPointerMoveCapture\" | \"onPointerUp\" | \"onPointerUpCapture\" | \"onPointerCancel\" | \"onPointerCancelCapture\" | \"onPointerEnter\" | \"onPointerEnterCapture\" | \"onPointerLeave\" | \"onPointerLeaveCapture\" | \"onPointerOver\" | \"onPointerOverCapture\" | \"onPointerOut\" | \"onPointerOutCapture\" | \"onGotPointerCapture\" | \"onGotPointerCaptureCapture\" | \"onLostPointerCapture\" | \"onLostPointerCaptureCapture\" | \"onScroll\" | \"onScrollCapture\" | \"onWheel\" | \"onWheelCapture\" | \"onAnimationStart\" | \"onAnimationStartCapture\" | \"onAnimationEnd\" | \"onAnimationEndCapture\" | \"onAnimationIteration\" | \"onAnimationIterationCapture\" | \"onTransitionEnd\" | \"onTransitionEndCapture\" | \"css\" | \"data-test-subj\" | \"grow\" | \"direction\" | \"restrictWidth\"> & { template?: \"default\" | \"empty\" | \"centeredBody\" | \"centeredContent\" | undefined; paddingSize?: \"none\" | \"m\" | \"s\" | \"l\" | undefined; pageSideBar?: React.ReactNode; pageSideBarProps?: ", "EuiPageSideBarProps", " | undefined; pageHeader?: ", "EuiPageHeaderProps", @@ -3966,21 +3956,7 @@ "EuiPageContentProps", " | undefined; pageContentBodyProps?: ", "EuiPageContentBodyProps", - " | undefined; } & { isEmptyState?: boolean | undefined; solutionNav?: ", - "KibanaPageTemplateSolutionNavProps", - " | undefined; }) | (Pick<", - "EuiPageProps", - ", \"children\" | \"onClick\" | \"onChange\" | \"color\" | \"onKeyDown\" | \"title\" | \"id\" | \"defaultChecked\" | \"defaultValue\" | \"suppressContentEditableWarning\" | \"suppressHydrationWarning\" | \"accessKey\" | \"className\" | \"contentEditable\" | \"contextMenu\" | \"dir\" | \"draggable\" | \"hidden\" | \"lang\" | \"placeholder\" | \"slot\" | \"spellCheck\" | \"style\" | \"tabIndex\" | \"translate\" | \"radioGroup\" | \"role\" | \"about\" | \"datatype\" | \"inlist\" | \"prefix\" | \"property\" | \"resource\" | \"typeof\" | \"vocab\" | \"autoCapitalize\" | \"autoCorrect\" | \"autoSave\" | \"itemProp\" | \"itemScope\" | \"itemType\" | \"itemID\" | \"itemRef\" | \"results\" | \"security\" | \"unselectable\" | \"inputMode\" | \"is\" | \"aria-activedescendant\" | \"aria-atomic\" | \"aria-autocomplete\" | \"aria-busy\" | \"aria-checked\" | \"aria-colcount\" | \"aria-colindex\" | \"aria-colspan\" | \"aria-controls\" | \"aria-current\" | \"aria-describedby\" | \"aria-details\" | \"aria-disabled\" | \"aria-dropeffect\" | \"aria-errormessage\" | \"aria-expanded\" | \"aria-flowto\" | \"aria-grabbed\" | \"aria-haspopup\" | \"aria-hidden\" | \"aria-invalid\" | \"aria-keyshortcuts\" | \"aria-label\" | \"aria-labelledby\" | \"aria-level\" | \"aria-live\" | \"aria-modal\" | \"aria-multiline\" | \"aria-multiselectable\" | \"aria-orientation\" | \"aria-owns\" | \"aria-placeholder\" | \"aria-posinset\" | \"aria-pressed\" | \"aria-readonly\" | \"aria-relevant\" | \"aria-required\" | \"aria-roledescription\" | \"aria-rowcount\" | \"aria-rowindex\" | \"aria-rowspan\" | \"aria-selected\" | \"aria-setsize\" | \"aria-sort\" | \"aria-valuemax\" | \"aria-valuemin\" | \"aria-valuenow\" | \"aria-valuetext\" | \"dangerouslySetInnerHTML\" | \"onCopy\" | \"onCopyCapture\" | \"onCut\" | \"onCutCapture\" | \"onPaste\" | \"onPasteCapture\" | \"onCompositionEnd\" | \"onCompositionEndCapture\" | \"onCompositionStart\" | \"onCompositionStartCapture\" | \"onCompositionUpdate\" | \"onCompositionUpdateCapture\" | \"onFocus\" | \"onFocusCapture\" | \"onBlur\" | \"onBlurCapture\" | \"onChangeCapture\" | \"onBeforeInput\" | \"onBeforeInputCapture\" | \"onInput\" | \"onInputCapture\" | \"onReset\" | \"onResetCapture\" | \"onSubmit\" | \"onSubmitCapture\" | \"onInvalid\" | \"onInvalidCapture\" | \"onLoad\" | \"onLoadCapture\" | \"onError\" | \"onErrorCapture\" | \"onKeyDownCapture\" | \"onKeyPress\" | \"onKeyPressCapture\" | \"onKeyUp\" | \"onKeyUpCapture\" | \"onAbort\" | \"onAbortCapture\" | \"onCanPlay\" | \"onCanPlayCapture\" | \"onCanPlayThrough\" | \"onCanPlayThroughCapture\" | \"onDurationChange\" | \"onDurationChangeCapture\" | \"onEmptied\" | \"onEmptiedCapture\" | \"onEncrypted\" | \"onEncryptedCapture\" | \"onEnded\" | \"onEndedCapture\" | \"onLoadedData\" | \"onLoadedDataCapture\" | \"onLoadedMetadata\" | \"onLoadedMetadataCapture\" | \"onLoadStart\" | \"onLoadStartCapture\" | \"onPause\" | \"onPauseCapture\" | \"onPlay\" | \"onPlayCapture\" | \"onPlaying\" | \"onPlayingCapture\" | \"onProgress\" | \"onProgressCapture\" | \"onRateChange\" | \"onRateChangeCapture\" | \"onSeeked\" | \"onSeekedCapture\" | \"onSeeking\" | \"onSeekingCapture\" | \"onStalled\" | \"onStalledCapture\" | \"onSuspend\" | \"onSuspendCapture\" | \"onTimeUpdate\" | \"onTimeUpdateCapture\" | \"onVolumeChange\" | \"onVolumeChangeCapture\" | \"onWaiting\" | \"onWaitingCapture\" | \"onAuxClick\" | \"onAuxClickCapture\" | \"onClickCapture\" | \"onContextMenu\" | \"onContextMenuCapture\" | \"onDoubleClick\" | \"onDoubleClickCapture\" | \"onDrag\" | \"onDragCapture\" | \"onDragEnd\" | \"onDragEndCapture\" | \"onDragEnter\" | \"onDragEnterCapture\" | \"onDragExit\" | \"onDragExitCapture\" | \"onDragLeave\" | \"onDragLeaveCapture\" | \"onDragOver\" | \"onDragOverCapture\" | \"onDragStart\" | \"onDragStartCapture\" | \"onDrop\" | \"onDropCapture\" | \"onMouseDown\" | \"onMouseDownCapture\" | \"onMouseEnter\" | \"onMouseLeave\" | \"onMouseMove\" | \"onMouseMoveCapture\" | \"onMouseOut\" | \"onMouseOutCapture\" | \"onMouseOver\" | \"onMouseOverCapture\" | \"onMouseUp\" | \"onMouseUpCapture\" | \"onSelect\" | \"onSelectCapture\" | \"onTouchCancel\" | \"onTouchCancelCapture\" | \"onTouchEnd\" | \"onTouchEndCapture\" | \"onTouchMove\" | \"onTouchMoveCapture\" | \"onTouchStart\" | \"onTouchStartCapture\" | \"onPointerDown\" | \"onPointerDownCapture\" | \"onPointerMove\" | \"onPointerMoveCapture\" | \"onPointerUp\" | \"onPointerUpCapture\" | \"onPointerCancel\" | \"onPointerCancelCapture\" | \"onPointerEnter\" | \"onPointerEnterCapture\" | \"onPointerLeave\" | \"onPointerLeaveCapture\" | \"onPointerOver\" | \"onPointerOverCapture\" | \"onPointerOut\" | \"onPointerOutCapture\" | \"onGotPointerCapture\" | \"onGotPointerCaptureCapture\" | \"onLostPointerCapture\" | \"onLostPointerCaptureCapture\" | \"onScroll\" | \"onScrollCapture\" | \"onWheel\" | \"onWheelCapture\" | \"onAnimationStart\" | \"onAnimationStartCapture\" | \"onAnimationEnd\" | \"onAnimationEndCapture\" | \"onAnimationIteration\" | \"onAnimationIterationCapture\" | \"onTransitionEnd\" | \"onTransitionEndCapture\" | \"css\" | \"data-test-subj\" | \"grow\" | \"direction\" | \"restrictWidth\"> & ", - "DisambiguateSet", - "<{ template: \"default\" | \"empty\" | \"centeredBody\" | \"centeredContent\"; }, { template?: \"default\" | undefined; bottomBar?: React.ReactNode; bottomBarProps?: (", - "CommonProps", - " & React.HTMLAttributes & ", - "DisambiguateSet", - "<{ position?: \"fixed\" | undefined; usePortal?: boolean | undefined; affordForDisplacement?: boolean | undefined; }, { position: \"static\" | \"sticky\"; }> & { position: \"static\" | \"sticky\"; } & { paddingSize?: \"none\" | \"m\" | \"s\" | \"l\" | undefined; bodyClassName?: string | undefined; landmarkHeading?: string | undefined; top?: string | number | undefined; right?: string | number | undefined; bottom?: string | number | undefined; left?: string | number | undefined; }) | (", - "CommonProps", - " & React.HTMLAttributes & ", - "DisambiguateSet", - "<{ position: \"static\" | \"sticky\"; }, { position?: \"fixed\" | undefined; usePortal?: boolean | undefined; affordForDisplacement?: boolean | undefined; }> & { position?: \"fixed\" | undefined; usePortal?: boolean | undefined; affordForDisplacement?: boolean | undefined; } & { paddingSize?: \"none\" | \"m\" | \"s\" | \"l\" | undefined; bodyClassName?: string | undefined; landmarkHeading?: string | undefined; top?: string | number | undefined; right?: string | number | undefined; bottom?: string | number | undefined; left?: string | number | undefined; }) | undefined; }> & { template?: \"default\" | undefined; bottomBar?: React.ReactNode; bottomBarProps?: (", + " | undefined; bottomBar?: React.ReactNode; bottomBarProps?: (", "CommonProps", " & React.HTMLAttributes & ", "DisambiguateSet", @@ -3988,19 +3964,9 @@ "CommonProps", " & React.HTMLAttributes & ", "DisambiguateSet", - "<{ position: \"static\" | \"sticky\"; }, { position?: \"fixed\" | undefined; usePortal?: boolean | undefined; affordForDisplacement?: boolean | undefined; }> & { position?: \"fixed\" | undefined; usePortal?: boolean | undefined; affordForDisplacement?: boolean | undefined; } & { paddingSize?: \"none\" | \"m\" | \"s\" | \"l\" | undefined; bodyClassName?: string | undefined; landmarkHeading?: string | undefined; top?: string | number | undefined; right?: string | number | undefined; bottom?: string | number | undefined; left?: string | number | undefined; }) | 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; } & { isEmptyState?: boolean | undefined; solutionNav?: ", + "<{ position: \"static\" | \"sticky\"; }, { position?: \"fixed\" | undefined; usePortal?: boolean | undefined; affordForDisplacement?: boolean | undefined; }> & { position?: \"fixed\" | undefined; usePortal?: boolean | undefined; affordForDisplacement?: boolean | undefined; } & { paddingSize?: \"none\" | \"m\" | \"s\" | \"l\" | undefined; bodyClassName?: string | undefined; landmarkHeading?: string | undefined; top?: string | number | undefined; right?: string | number | undefined; bottom?: string | number | undefined; left?: string | number | undefined; }) | undefined; fullHeight?: boolean | \"noscroll\" | undefined; minHeight?: string | number | undefined; } & { isEmptyState?: boolean | undefined; solutionNav?: ", "KibanaPageTemplateSolutionNavProps", - " | undefined; })" + " | undefined; }" ], "source": { "path": "src/plugins/kibana_react/public/page_template/page_template.tsx", @@ -4292,6 +4258,191 @@ "deprecated": false, "initialIsOpen": false }, + { + "parentPluginId": "kibanaReact", + "id": "def-public.Lang", + "type": "Object", + "tags": [], + "label": "Lang", + "description": [], + "source": { + "path": "src/plugins/kibana_react/public/code_editor/languages/css/index.ts", + "lineNumber": 12 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "kibanaReact", + "id": "def-public.Lang.ID", + "type": "string", + "tags": [], + "label": "ID", + "description": [], + "source": { + "path": "src/plugins/kibana_react/public/code_editor/languages/css/index.ts", + "lineNumber": 12 + }, + "deprecated": false + }, + { + "parentPluginId": "kibanaReact", + "id": "def-public.Lang.lexerRules", + "type": "Any", + "tags": [], + "label": "lexerRules", + "description": [], + "signature": [ + "any" + ], + "source": { + "path": "src/plugins/kibana_react/public/code_editor/languages/css/index.ts", + "lineNumber": 12 + }, + "deprecated": false + }, + { + "parentPluginId": "kibanaReact", + "id": "def-public.Lang.languageConfiguration", + "type": "Any", + "tags": [], + "label": "languageConfiguration", + "description": [], + "signature": [ + "any" + ], + "source": { + "path": "src/plugins/kibana_react/public/code_editor/languages/css/index.ts", + "lineNumber": 12 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "kibanaReact", + "id": "def-public.Lang", + "type": "Object", + "tags": [], + "label": "Lang", + "description": [], + "source": { + "path": "src/plugins/kibana_react/public/code_editor/languages/handlebars/index.ts", + "lineNumber": 13 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "kibanaReact", + "id": "def-public.Lang.ID", + "type": "string", + "tags": [], + "label": "ID", + "description": [], + "source": { + "path": "src/plugins/kibana_react/public/code_editor/languages/handlebars/index.ts", + "lineNumber": 13 + }, + "deprecated": false + }, + { + "parentPluginId": "kibanaReact", + "id": "def-public.Lang.languageConfiguration", + "type": "Object", + "tags": [], + "label": "languageConfiguration", + "description": [], + "signature": [ + "languages", + ".LanguageConfiguration" + ], + "source": { + "path": "src/plugins/kibana_react/public/code_editor/languages/handlebars/index.ts", + "lineNumber": 13 + }, + "deprecated": false + }, + { + "parentPluginId": "kibanaReact", + "id": "def-public.Lang.lexerRules", + "type": "Object", + "tags": [], + "label": "lexerRules", + "description": [], + "signature": [ + "languages", + ".IMonarchLanguage" + ], + "source": { + "path": "src/plugins/kibana_react/public/code_editor/languages/handlebars/index.ts", + "lineNumber": 13 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "kibanaReact", + "id": "def-public.Lang", + "type": "Object", + "tags": [], + "label": "Lang", + "description": [], + "source": { + "path": "src/plugins/kibana_react/public/code_editor/languages/markdown/index.ts", + "lineNumber": 12 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "kibanaReact", + "id": "def-public.Lang.ID", + "type": "string", + "tags": [], + "label": "ID", + "description": [], + "source": { + "path": "src/plugins/kibana_react/public/code_editor/languages/markdown/index.ts", + "lineNumber": 12 + }, + "deprecated": false + }, + { + "parentPluginId": "kibanaReact", + "id": "def-public.Lang.languageConfiguration", + "type": "Any", + "tags": [], + "label": "languageConfiguration", + "description": [], + "signature": [ + "any" + ], + "source": { + "path": "src/plugins/kibana_react/public/code_editor/languages/markdown/index.ts", + "lineNumber": 12 + }, + "deprecated": false + }, + { + "parentPluginId": "kibanaReact", + "id": "def-public.Lang.lexerRules", + "type": "Any", + "tags": [], + "label": "lexerRules", + "description": [], + "signature": [ + "any" + ], + "source": { + "path": "src/plugins/kibana_react/public/code_editor/languages/markdown/index.ts", + "lineNumber": 12 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, { "parentPluginId": "kibanaReact", "id": "def-public.typeToEuiIconMap", @@ -5003,7 +5154,7 @@ "label": "eui", "description": [], "signature": [ - "{ paddingSizes: { xs: string; s: string; m: string; l: string; xl: string; }; avatarSizing: { s: { size: string; 'font-size': string; }; m: { size: string; 'font-size': string; }; l: { size: string; 'font-size': string; }; xl: { size: string; 'font-size': string; }; }; euiBadgeGroupGutterTypes: { gutterExtraSmall: string; gutterSmall: string; }; euiBreadcrumbSpacing: string; euiBreadcrumbTruncateWidth: string; euiButtonEmptyTypes: { primary: string; danger: string; disabled: string; ghost: string; text: string; success: string; warning: string; }; euiButtonIconTypes: { accent: string; danger: string; ghost: string; primary: string; subdued: string; success: string; text: 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; euiCollapsibleNavWidth: 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; euiDataGridColumnResizerWidth: string; euiDataGridPopoverMaxHeight: string; euiDataGridCellPaddingS: string; euiDataGridCellPaddingM: string; euiDataGridCellPaddingL: string; euiDataGridVerticalBorder: string; euiDatePickerCalendarWidth: string; euiSuperDatePickerWidth: string; euiSuperDatePickerButtonWidth: string; euiDragAndDropSpacing: { s: string; m: string; l: string; }; euiExpressionColors: { subdued: string; primary: string; secondary: string; warning: string; danger: string; accent: string; }; euiFacetGutterSizes: { gutterNone: number; gutterSmall: string; gutterMedium: string; gutterLarge: 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; }; ruleMargins: { marginXSmall: string; marginSmall: string; marginMedium: string; marginLarge: string; marginXLarge: string; marginXXLarge: string; }; euiIconLoadingOpacity: number; euiIconColors: { accent: string; danger: string; ghost: string; primary: string; secondary: string; success: string; subdued: string; text: string; warning: string; inherit: string; }; euiIconSizes: { small: string; medium: string; large: string; xLarge: string; xxLarge: string; }; euiKeyPadMenuSize: string; euiKeyPadMenuItemBetaBadgeSize: string; euiLinkColors: { subdued: string; primary: string; secondary: string; accent: string; warning: string; danger: string; text: string; ghost: 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; }; euiGradientStartStop: string; euiGradientMiddle: string; browserDefaultFontSize: string; euiMarkdownEditorMinHeight: string; euiPopoverArrowSize: string; euiPopoverTranslateDistance: string; euiProgressSizes: { xs: string; s: string; m: string; l: string; }; euiProgressColors: { primary: string; secondary: string; success: string; warning: string; danger: string; accent: string; subdued: string; vis0: string; vis1: string; vis2: string; vis3: string; vis4: string; vis5: string; vis6: string; vis7: string; vis8: string; vis9: string; customColor: 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; spacerSizes: { xs: string; s: string; m: string; l: string; xl: string; xxl: 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; euiTabFontSize: string; euiTabFontSizeS: string; euiTabFontSizeL: string; euiTextColors: { default: string; subdued: string; secondary: string; accent: string; warning: string; danger: string; ghost: string; }; euiTextConstrainedMaxWidth: string; euiToastWidth: string; euiToastTypes: { primary: string; success: string; warning: string; danger: string; }; euiTokenGrayColor: string; euiTokenTypes: { 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; }; gray: { graphic: string; behindText: string; }; }; euiTokenTypeKeys: string; 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; secondary: string; warning: string; danger: string; ghost: string; text: string; }; euiColorGhost: string; euiColorInk: string; euiColorPrimary: string; euiColorSecondary: 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; euiColorSecondaryText: string; euiColorAccentText: string; euiColorWarningText: string; euiColorDangerText: string; euiColorDisabledText: string; euiColorSuccessText: string; euiLinkColor: 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; euiColorChartLines: string; euiColorChartBand: 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; euiFormMaxWidth: string; euiFormControlHeight: string; euiFormControlCompressedHeight: string; euiFormControlPadding: string; euiFormControlCompressedPadding: string; euiFormControlBorderRadius: number; 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; 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; euiShadowColorLarge: string; euiSize: string; euiSizeXS: string; euiSizeS: string; euiSizeM: string; euiSizeL: string; euiSizeXL: string; euiSizeXXL: string; euiButtonMinWidth: string; euiScrollBar: string; euiScrollBarCorner: string; euiFocusRingColor: string; euiFocusRingAnimStartColor: string; euiFocusRingAnimStartSize: string; euiFocusRingAnimStartSizeLarge: string; euiFocusRingSizeLarge: string; euiFocusRingSize: string; euiFocusTransparency: number; euiFocusBackgroundColor: string; euiTooltipBackgroundColor: 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; euiFontWeightLight: number; euiFontWeightRegular: number; euiFontWeightMedium: number; euiFontWeightSemiBold: number; euiFontWeightBold: number; euiCodeFontWeightRegular: number; euiCodeFontWeightBold: 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; 'letter-spacing': string; }; s: { 'font-size': string; 'line-height': string; 'font-weight': number; 'letter-spacing': string; }; m: { 'font-size': string; 'line-height': string; 'font-weight': number; 'letter-spacing': string; }; l: { 'font-size': string; 'line-height': string; 'font-weight': number; 'letter-spacing': string; }; }; euiZLevel0: number; euiZLevel1: number; euiZLevel2: number; euiZLevel3: number; euiZLevel4: number; euiZLevel5: number; euiZLevel6: number; euiZLevel7: number; euiZLevel8: number; euiZLevel9: number; euiZContent: number; euiZHeader: number; euiZContentMenu: number; euiZFlyout: number; euiZNavigation: number; euiZMask: number; euiZModal: number; euiZToastList: number; } | { paddingSizes: { xs: string; s: string; m: string; l: string; xl: string; }; avatarSizing: { s: { size: string; 'font-size': string; }; m: { size: string; 'font-size': string; }; l: { size: string; 'font-size': string; }; xl: { size: string; 'font-size': string; }; }; euiBadgeGroupGutterTypes: { gutterExtraSmall: string; gutterSmall: string; }; euiBreadcrumbSpacing: string; euiBreadcrumbTruncateWidth: string; euiButtonEmptyTypes: { primary: string; danger: string; disabled: string; ghost: string; text: string; success: string; warning: string; }; euiButtonIconTypes: { accent: string; danger: string; ghost: string; primary: string; subdued: string; success: string; text: 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; euiCollapsibleNavWidth: 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; euiDataGridColumnResizerWidth: string; euiDataGridPopoverMaxHeight: string; euiDataGridCellPaddingS: string; euiDataGridCellPaddingM: string; euiDataGridCellPaddingL: string; euiDataGridVerticalBorder: string; euiDatePickerCalendarWidth: string; euiSuperDatePickerWidth: string; euiSuperDatePickerButtonWidth: string; euiDragAndDropSpacing: { s: string; m: string; l: string; }; euiExpressionColors: { subdued: string; primary: string; secondary: string; warning: string; danger: string; accent: string; }; euiFacetGutterSizes: { gutterNone: number; gutterSmall: string; gutterMedium: string; gutterLarge: 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; }; ruleMargins: { marginXSmall: string; marginSmall: string; marginMedium: string; marginLarge: string; marginXLarge: string; marginXXLarge: string; }; euiIconLoadingOpacity: number; euiIconColors: { accent: string; danger: string; ghost: string; primary: string; secondary: string; success: string; subdued: string; text: string; warning: string; inherit: string; }; euiIconSizes: { small: string; medium: string; large: string; xLarge: string; xxLarge: string; }; euiKeyPadMenuSize: string; euiKeyPadMenuItemBetaBadgeSize: string; euiLinkColors: { subdued: string; primary: string; secondary: string; accent: string; warning: string; danger: string; text: string; ghost: 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; }; euiGradientStartStop: string; euiGradientMiddle: string; browserDefaultFontSize: string; euiMarkdownEditorMinHeight: string; euiPopoverArrowSize: string; euiPopoverTranslateDistance: string; euiProgressSizes: { xs: string; s: string; m: string; l: string; }; euiProgressColors: { primary: string; secondary: string; success: string; warning: string; danger: string; accent: string; subdued: string; vis0: string; vis1: string; vis2: string; vis3: string; vis4: string; vis5: string; vis6: string; vis7: string; vis8: string; vis9: string; customColor: 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; spacerSizes: { xs: string; s: string; m: string; l: string; xl: string; xxl: 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; euiTabFontSize: string; euiTabFontSizeS: string; euiTabFontSizeL: string; euiTextColors: { default: string; subdued: string; secondary: string; accent: string; warning: string; danger: string; ghost: string; }; euiTextConstrainedMaxWidth: string; euiToastWidth: string; euiToastTypes: { primary: string; success: string; warning: string; danger: string; }; euiTokenGrayColor: string; euiTokenTypes: { 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; }; gray: { graphic: string; behindText: string; }; }; euiTokenTypeKeys: string; 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; secondary: string; warning: string; danger: string; ghost: string; text: string; }; euiColorGhost: string; euiColorInk: string; euiColorPrimary: string; euiColorSecondary: 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; euiColorSecondaryText: string; euiColorAccentText: string; euiColorWarningText: string; euiColorDangerText: string; euiColorDisabledText: string; euiColorSuccessText: string; euiLinkColor: 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; euiColorChartLines: string; euiColorChartBand: 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; euiFormMaxWidth: string; euiFormControlHeight: string; euiFormControlCompressedHeight: string; euiFormControlPadding: string; euiFormControlCompressedPadding: string; euiFormControlBorderRadius: number; 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; 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; euiShadowColorLarge: string; euiSize: string; euiSizeXS: string; euiSizeS: string; euiSizeM: string; euiSizeL: string; euiSizeXL: string; euiSizeXXL: string; euiButtonMinWidth: string; euiScrollBar: string; euiScrollBarCorner: string; euiFocusRingColor: string; euiFocusRingAnimStartColor: string; euiFocusRingAnimStartSize: string; euiFocusRingAnimStartSizeLarge: string; euiFocusRingSizeLarge: string; euiFocusRingSize: string; euiFocusTransparency: number; euiFocusBackgroundColor: string; euiTooltipBackgroundColor: 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; euiFontWeightLight: number; euiFontWeightRegular: number; euiFontWeightMedium: number; euiFontWeightSemiBold: number; euiFontWeightBold: number; euiCodeFontWeightRegular: number; euiCodeFontWeightBold: 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; 'letter-spacing': string; }; s: { 'font-size': string; 'line-height': string; 'font-weight': number; 'letter-spacing': string; }; m: { 'font-size': string; 'line-height': string; 'font-weight': number; 'letter-spacing': string; }; l: { 'font-size': string; 'line-height': string; 'font-weight': number; 'letter-spacing': string; }; }; euiZLevel0: number; euiZLevel1: number; euiZLevel2: number; euiZLevel3: number; euiZLevel4: number; euiZLevel5: number; euiZLevel6: number; euiZLevel7: number; euiZLevel8: number; euiZLevel9: number; euiZContent: number; euiZHeader: number; euiZContentMenu: number; euiZFlyout: number; euiZNavigation: number; euiZMask: number; euiZModal: number; euiZToastList: number; }" + "{ paddingSizes: { xs: string; s: string; m: string; l: string; xl: string; }; avatarSizing: { s: { size: string; 'font-size': string; }; m: { size: string; 'font-size': string; }; l: { size: string; 'font-size': string; }; xl: { size: string; 'font-size': string; }; }; euiBadgeGroupGutterTypes: { gutterExtraSmall: string; gutterSmall: string; }; euiBreadcrumbSpacing: string; euiBreadcrumbTruncateWidth: 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; 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; euiDataGridColumnResizerWidth: string; euiDataGridPopoverMaxHeight: string; euiDataGridCellPaddingS: string; euiDataGridCellPaddingM: string; euiDataGridCellPaddingL: string; euiDataGridVerticalBorder: string; euiDatePickerCalendarWidth: string; euiSuperDatePickerWidth: string; euiSuperDatePickerButtonWidth: string; euiDragAndDropSpacing: { s: string; m: string; l: string; }; euiExpressionColors: { subdued: string; primary: string; success: string; secondary: string; warning: string; danger: string; accent: string; }; euiFacetGutterSizes: { gutterNone: number; gutterSmall: string; gutterMedium: string; gutterLarge: 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; }; ruleMargins: { marginXSmall: string; marginSmall: string; marginMedium: string; marginLarge: string; marginXLarge: string; marginXXLarge: string; }; euiIconLoadingOpacity: number; euiIconColors: { accent: string; danger: string; ghost: string; primary: string; secondary: string; success: string; subdued: string; text: string; warning: string; inherit: string; }; euiIconSizes: { small: string; medium: string; large: string; xLarge: string; xxLarge: string; }; euiKeyPadMenuSize: string; euiKeyPadMenuItemBetaBadgeSize: string; euiLinkColors: { subdued: string; primary: string; secondary: string; success: string; accent: string; warning: string; danger: string; text: string; ghost: 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; }; euiGradientStartStop: string; euiGradientMiddle: string; browserDefaultFontSize: string; euiMarkdownEditorMinHeight: string; euiPopoverArrowSize: string; euiPopoverTranslateDistance: string; euiProgressSizes: { xs: string; s: string; m: string; l: string; }; euiProgressColors: { primary: string; secondary: string; success: string; warning: string; danger: string; accent: string; subdued: string; vis0: string; vis1: string; vis2: string; vis3: string; vis4: string; vis5: string; vis6: string; vis7: string; vis8: string; vis9: string; customColor: 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; spacerSizes: { xs: string; s: string; m: string; l: string; xl: string; xxl: 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; euiTabFontSize: string; euiTabFontSizeS: string; euiTabFontSizeL: string; euiTextColors: { default: string; subdued: string; secondary: string; success: string; accent: string; warning: string; danger: string; ghost: string; }; euiTextConstrainedMaxWidth: string; euiToastWidth: string; euiToastTypes: { primary: string; success: string; warning: string; danger: string; }; euiTokenGrayColor: string; euiTokenTypes: { 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; }; gray: { graphic: string; behindText: string; }; }; euiTokenTypeKeys: 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; secondary: string; success: string; warning: string; danger: string; subdued: string; ghost: string; text: string; }; euiColorGhost: string; euiColorInk: string; euiColorPrimary: string; euiColorSecondary: 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; euiColorSecondaryText: string; euiColorAccentText: string; euiColorWarningText: string; euiColorDangerText: string; euiColorDisabledText: string; euiColorSuccessText: string; euiLinkColor: 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; euiColorChartLines: string; euiColorChartBand: 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; euiFormMaxWidth: string; euiFormControlHeight: string; euiFormControlCompressedHeight: string; euiFormControlPadding: string; euiFormControlCompressedPadding: string; euiFormControlBorderRadius: number; 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; 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; euiShadowColorLarge: string; euiSize: string; euiSizeXS: string; euiSizeS: string; euiSizeM: string; euiSizeL: string; euiSizeXL: string; euiSizeXXL: string; euiButtonMinWidth: string; euiScrollBar: string; euiScrollBarCorner: string; euiFocusRingColor: string; euiFocusRingAnimStartColor: string; euiFocusRingAnimStartSize: string; euiFocusRingAnimStartSizeLarge: string; euiFocusRingSizeLarge: string; euiFocusRingSize: string; euiFocusTransparency: number; euiFocusBackgroundColor: string; euiTooltipBackgroundColor: 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; euiFontWeightLight: number; euiFontWeightRegular: number; euiFontWeightMedium: number; euiFontWeightSemiBold: number; euiFontWeightBold: number; euiCodeFontWeightRegular: number; euiCodeFontWeightBold: 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; 'letter-spacing': string; }; s: { 'font-size': string; 'line-height': string; 'font-weight': number; 'letter-spacing': string; }; m: { 'font-size': string; 'line-height': string; 'font-weight': number; 'letter-spacing': string; }; l: { 'font-size': string; 'line-height': string; 'font-weight': number; 'letter-spacing': string; }; }; 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; } | { paddingSizes: { xs: string; s: string; m: string; l: string; xl: string; }; avatarSizing: { s: { size: string; 'font-size': string; }; m: { size: string; 'font-size': string; }; l: { size: string; 'font-size': string; }; xl: { size: string; 'font-size': string; }; }; euiBadgeGroupGutterTypes: { gutterExtraSmall: string; gutterSmall: string; }; euiBreadcrumbSpacing: string; euiBreadcrumbTruncateWidth: 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; 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; euiDataGridColumnResizerWidth: string; euiDataGridPopoverMaxHeight: string; euiDataGridCellPaddingS: string; euiDataGridCellPaddingM: string; euiDataGridCellPaddingL: string; euiDataGridVerticalBorder: string; euiDatePickerCalendarWidth: string; euiSuperDatePickerWidth: string; euiSuperDatePickerButtonWidth: string; euiDragAndDropSpacing: { s: string; m: string; l: string; }; euiExpressionColors: { subdued: string; primary: string; success: string; secondary: string; warning: string; danger: string; accent: string; }; euiFacetGutterSizes: { gutterNone: number; gutterSmall: string; gutterMedium: string; gutterLarge: 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; }; ruleMargins: { marginXSmall: string; marginSmall: string; marginMedium: string; marginLarge: string; marginXLarge: string; marginXXLarge: string; }; euiIconLoadingOpacity: number; euiIconColors: { accent: string; danger: string; ghost: string; primary: string; secondary: string; success: string; subdued: string; text: string; warning: string; inherit: string; }; euiIconSizes: { small: string; medium: string; large: string; xLarge: string; xxLarge: string; }; euiKeyPadMenuSize: string; euiKeyPadMenuItemBetaBadgeSize: string; euiLinkColors: { subdued: string; primary: string; secondary: string; success: string; accent: string; warning: string; danger: string; text: string; ghost: 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; }; euiGradientStartStop: string; euiGradientMiddle: string; browserDefaultFontSize: string; euiMarkdownEditorMinHeight: string; euiPopoverArrowSize: string; euiPopoverTranslateDistance: string; euiProgressSizes: { xs: string; s: string; m: string; l: string; }; euiProgressColors: { primary: string; secondary: string; success: string; warning: string; danger: string; accent: string; subdued: string; vis0: string; vis1: string; vis2: string; vis3: string; vis4: string; vis5: string; vis6: string; vis7: string; vis8: string; vis9: string; customColor: 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; spacerSizes: { xs: string; s: string; m: string; l: string; xl: string; xxl: 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; euiTabFontSize: string; euiTabFontSizeS: string; euiTabFontSizeL: string; euiTextColors: { default: string; subdued: string; secondary: string; success: string; accent: string; warning: string; danger: string; ghost: string; }; euiTextConstrainedMaxWidth: string; euiToastWidth: string; euiToastTypes: { primary: string; success: string; warning: string; danger: string; }; euiTokenGrayColor: string; euiTokenTypes: { 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; }; gray: { graphic: string; behindText: string; }; }; euiTokenTypeKeys: 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; secondary: string; success: string; warning: string; danger: string; subdued: string; ghost: string; text: string; }; euiColorGhost: string; euiColorInk: string; euiColorPrimary: string; euiColorSecondary: 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; euiColorSecondaryText: string; euiColorAccentText: string; euiColorWarningText: string; euiColorDangerText: string; euiColorDisabledText: string; euiColorSuccessText: string; euiLinkColor: 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; euiColorChartLines: string; euiColorChartBand: 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; euiFormMaxWidth: string; euiFormControlHeight: string; euiFormControlCompressedHeight: string; euiFormControlPadding: string; euiFormControlCompressedPadding: string; euiFormControlBorderRadius: number; 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; 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; euiShadowColorLarge: string; euiSize: string; euiSizeXS: string; euiSizeS: string; euiSizeM: string; euiSizeL: string; euiSizeXL: string; euiSizeXXL: string; euiButtonMinWidth: string; euiScrollBar: string; euiScrollBarCorner: string; euiFocusRingColor: string; euiFocusRingAnimStartColor: string; euiFocusRingAnimStartSize: string; euiFocusRingAnimStartSizeLarge: string; euiFocusRingSizeLarge: string; euiFocusRingSize: string; euiFocusTransparency: number; euiFocusBackgroundColor: string; euiTooltipBackgroundColor: 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; euiFontWeightLight: number; euiFontWeightRegular: number; euiFontWeightMedium: number; euiFontWeightSemiBold: number; euiFontWeightBold: number; euiCodeFontWeightRegular: number; euiCodeFontWeightBold: 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; 'letter-spacing': string; }; s: { 'font-size': string; 'line-height': string; 'font-weight': number; 'letter-spacing': string; }; m: { 'font-size': string; 'line-height': string; 'font-weight': number; 'letter-spacing': string; }; l: { 'font-size': string; 'line-height': string; 'font-weight': number; 'letter-spacing': string; }; }; 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; }" ], "source": { "path": "src/plugins/kibana_react/common/eui_styled_components.tsx", diff --git a/api_docs/kibana_react.mdx b/api_docs/kibana_react.mdx index da356108593a1..6b3efe2c90ea0 100644 --- a/api_docs/kibana_react.mdx +++ b/api_docs/kibana_react.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'kibanaReact'] warning: 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. --- - import kibanaReactObj from './kibana_react.json'; @@ -19,7 +18,7 @@ import kibanaReactObj from './kibana_react.json'; | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 245 | 1 | 216 | 4 | +| 257 | 5 | 228 | 4 | ## Client diff --git a/api_docs/kibana_utils.json b/api_docs/kibana_utils.json index 99296f3235f0f..93a73f18afac6 100644 --- a/api_docs/kibana_utils.json +++ b/api_docs/kibana_utils.json @@ -6121,71 +6121,6 @@ ], "initialIsOpen": false }, - { - "parentPluginId": "kibanaUtils", - "id": "def-public.JsonArray", - "type": "Interface", - "tags": [], - "label": "JsonArray", - "description": [], - "signature": [ - { - "pluginId": "kibanaUtils", - "scope": "common", - "docId": "kibKibanaUtilsPluginApi", - "section": "def-common.JsonArray", - "text": "JsonArray" - }, - " extends ", - { - "pluginId": "kibanaUtils", - "scope": "common", - "docId": "kibKibanaUtilsPluginApi", - "section": "def-common.JsonValue", - "text": "JsonValue" - }, - "[]" - ], - "source": { - "path": "src/plugins/kibana_utils/common/typed_json.ts", - "lineNumber": 16 - }, - "deprecated": false, - "children": [], - "initialIsOpen": false - }, - { - "parentPluginId": "kibanaUtils", - "id": "def-public.JsonObject", - "type": "Interface", - "tags": [], - "label": "JsonObject", - "description": [], - "source": { - "path": "src/plugins/kibana_utils/common/typed_json.ts", - "lineNumber": 11 - }, - "deprecated": false, - "children": [ - { - "parentPluginId": "kibanaUtils", - "id": "def-public.JsonObject.Unnamed", - "type": "Any", - "tags": [], - "label": "Unnamed", - "description": [], - "signature": [ - "any" - ], - "source": { - "path": "src/plugins/kibana_utils/common/typed_json.ts", - "lineNumber": 12 - }, - "deprecated": false - } - ], - "initialIsOpen": false - }, { "parentPluginId": "kibanaUtils", "id": "def-public.KibanaServerError", @@ -6960,39 +6895,6 @@ "deprecated": false, "initialIsOpen": false }, - { - "parentPluginId": "kibanaUtils", - "id": "def-public.JsonValue", - "type": "Type", - "tags": [], - "label": "JsonValue", - "description": [], - "signature": [ - "string | number | boolean | ", - { - "pluginId": "kibanaUtils", - "scope": "common", - "docId": "kibKibanaUtilsPluginApi", - "section": "def-common.JsonObject", - "text": "JsonObject" - }, - " | ", - { - "pluginId": "kibanaUtils", - "scope": "common", - "docId": "kibKibanaUtilsPluginApi", - "section": "def-common.JsonArray", - "text": "JsonArray" - }, - " | null" - ], - "source": { - "path": "src/plugins/kibana_utils/common/typed_json.ts", - "lineNumber": 9 - }, - "deprecated": false, - "initialIsOpen": false - }, { "parentPluginId": "kibanaUtils", "id": "def-public.MapStateToProps", @@ -10362,71 +10264,6 @@ ], "initialIsOpen": false }, - { - "parentPluginId": "kibanaUtils", - "id": "def-common.JsonArray", - "type": "Interface", - "tags": [], - "label": "JsonArray", - "description": [], - "signature": [ - { - "pluginId": "kibanaUtils", - "scope": "common", - "docId": "kibKibanaUtilsPluginApi", - "section": "def-common.JsonArray", - "text": "JsonArray" - }, - " extends ", - { - "pluginId": "kibanaUtils", - "scope": "common", - "docId": "kibKibanaUtilsPluginApi", - "section": "def-common.JsonValue", - "text": "JsonValue" - }, - "[]" - ], - "source": { - "path": "src/plugins/kibana_utils/common/typed_json.ts", - "lineNumber": 16 - }, - "deprecated": false, - "children": [], - "initialIsOpen": false - }, - { - "parentPluginId": "kibanaUtils", - "id": "def-common.JsonObject", - "type": "Interface", - "tags": [], - "label": "JsonObject", - "description": [], - "source": { - "path": "src/plugins/kibana_utils/common/typed_json.ts", - "lineNumber": 11 - }, - "deprecated": false, - "children": [ - { - "parentPluginId": "kibanaUtils", - "id": "def-common.JsonObject.Unnamed", - "type": "Any", - "tags": [], - "label": "Unnamed", - "description": [], - "signature": [ - "any" - ], - "source": { - "path": "src/plugins/kibana_utils/common/typed_json.ts", - "lineNumber": 12 - }, - "deprecated": false - } - ], - "initialIsOpen": false - }, { "parentPluginId": "kibanaUtils", "id": "def-common.KibanaServerError", @@ -11616,39 +11453,6 @@ "deprecated": false, "initialIsOpen": false }, - { - "parentPluginId": "kibanaUtils", - "id": "def-common.JsonValue", - "type": "Type", - "tags": [], - "label": "JsonValue", - "description": [], - "signature": [ - "string | number | boolean | ", - { - "pluginId": "kibanaUtils", - "scope": "common", - "docId": "kibKibanaUtilsPluginApi", - "section": "def-common.JsonObject", - "text": "JsonObject" - }, - " | ", - { - "pluginId": "kibanaUtils", - "scope": "common", - "docId": "kibKibanaUtilsPluginApi", - "section": "def-common.JsonArray", - "text": "JsonArray" - }, - " | null" - ], - "source": { - "path": "src/plugins/kibana_utils/common/typed_json.ts", - "lineNumber": 9 - }, - "deprecated": false, - "initialIsOpen": false - }, { "parentPluginId": "kibanaUtils", "id": "def-common.MapStateToProps", diff --git a/api_docs/kibana_utils.mdx b/api_docs/kibana_utils.mdx index a76992e0bc2b8..0cc3a3848bb57 100644 --- a/api_docs/kibana_utils.mdx +++ b/api_docs/kibana_utils.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'kibanaUtils'] warning: 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. --- - import kibanaUtilsObj from './kibana_utils.json'; @@ -19,7 +18,7 @@ import kibanaUtilsObj from './kibana_utils.json'; | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 551 | 5 | 373 | 8 | +| 543 | 3 | 365 | 8 | ## Client diff --git a/api_docs/lens.json b/api_docs/lens.json index 782d060f398cb..2edb1e446a5d8 100644 --- a/api_docs/lens.json +++ b/api_docs/lens.json @@ -119,7 +119,7 @@ "description": [], "source": { "path": "x-pack/plugins/lens/public/datatable_visualization/visualization.tsx", - "lineNumber": 48 + "lineNumber": 51 }, "deprecated": false, "children": [ @@ -136,7 +136,7 @@ ], "source": { "path": "x-pack/plugins/lens/public/datatable_visualization/visualization.tsx", - "lineNumber": 49 + "lineNumber": 52 }, "deprecated": false }, @@ -149,7 +149,7 @@ "description": [], "source": { "path": "x-pack/plugins/lens/public/datatable_visualization/visualization.tsx", - "lineNumber": 50 + "lineNumber": 53 }, "deprecated": false }, @@ -166,7 +166,7 @@ ], "source": { "path": "x-pack/plugins/lens/public/datatable_visualization/visualization.tsx", - "lineNumber": 51 + "lineNumber": 54 }, "deprecated": false } @@ -227,7 +227,7 @@ "label": "params", "description": [], "signature": [ - "{ interval: string; timeZone?: string | undefined; }" + "{ interval: string; }" ], "source": { "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/date_histogram.tsx", @@ -299,6 +299,65 @@ ], "initialIsOpen": false }, + { + "parentPluginId": "lens", + "id": "def-public.FormulaIndexPatternColumn", + "type": "Interface", + "tags": [], + "label": "FormulaIndexPatternColumn", + "description": [], + "signature": [ + { + "pluginId": "lens", + "scope": "public", + "docId": "kibLensPluginApi", + "section": "def-public.FormulaIndexPatternColumn", + "text": "FormulaIndexPatternColumn" + }, + " extends ", + "ReferenceBasedIndexPatternColumn" + ], + "source": { + "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/formula/formula.tsx", + "lineNumber": 23 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "lens", + "id": "def-public.FormulaIndexPatternColumn.operationType", + "type": "string", + "tags": [], + "label": "operationType", + "description": [], + "signature": [ + "\"formula\"" + ], + "source": { + "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/formula/formula.tsx", + "lineNumber": 24 + }, + "deprecated": false + }, + { + "parentPluginId": "lens", + "id": "def-public.FormulaIndexPatternColumn.params", + "type": "Object", + "tags": [], + "label": "params", + "description": [], + "signature": [ + "{ formula?: string | undefined; isFormulaBroken?: boolean | undefined; format?: { id: string; params?: { decimals: number; } | undefined; } | undefined; }" + ], + "source": { + "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/formula/formula.tsx", + "lineNumber": 25 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, { "parentPluginId": "lens", "id": "def-public.IncompleteColumn", @@ -320,7 +379,7 @@ "label": "operationType", "description": [], "signature": [ - "\"range\" | \"filters\" | \"count\" | \"max\" | \"min\" | \"date_histogram\" | \"sum\" | \"average\" | \"percentile\" | \"terms\" | \"median\" | \"cumulative_sum\" | \"moving_average\" | \"math\" | \"counter_rate\" | \"differences\" | \"unique_count\" | \"last_value\" | \"formula\" | undefined" + "\"range\" | \"filters\" | \"count\" | \"max\" | \"min\" | \"date_histogram\" | \"sum\" | \"average\" | \"percentile\" | \"terms\" | \"median\" | \"cumulative_sum\" | \"moving_average\" | \"math\" | \"overall_sum\" | \"overall_min\" | \"overall_max\" | \"overall_average\" | \"counter_rate\" | \"differences\" | \"unique_count\" | \"last_value\" | \"formula\" | undefined" ], "source": { "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/column_types.ts", @@ -356,7 +415,7 @@ "description": [], "source": { "path": "x-pack/plugins/lens/public/indexpattern_datasource/types.ts", - "lineNumber": 73 + "lineNumber": 76 }, "deprecated": false, "children": [ @@ -374,7 +433,7 @@ ], "source": { "path": "x-pack/plugins/lens/public/indexpattern_datasource/types.ts", - "lineNumber": 74 + "lineNumber": 77 }, "deprecated": false } @@ -522,7 +581,7 @@ "description": [], "source": { "path": "x-pack/plugins/lens/public/plugin.ts", - "lineNumber": 84 + "lineNumber": 89 }, "deprecated": false, "children": [ @@ -558,7 +617,31 @@ ], "source": { "path": "x-pack/plugins/lens/public/plugin.ts", - "lineNumber": 93 + "lineNumber": 98 + }, + "deprecated": false + }, + { + "parentPluginId": "lens", + "id": "def-public.LensPublicStart.SaveModalComponent", + "type": "CompoundType", + "tags": [ + "experimental" + ], + "label": "SaveModalComponent", + "description": [ + "\nReact component which can be used to embed a Lens Visualization Save Modal Component.\nSee `x-pack/examples/embedded_lens_example` for exemplary usage.\n\nThis API might undergo breaking changes even in minor versions.\n" + ], + "signature": [ + "React.ComponentClass, any> | React.FunctionComponent>" + ], + "source": { + "path": "x-pack/plugins/lens/public/plugin.ts", + "lineNumber": 107 }, "deprecated": false }, @@ -575,12 +658,18 @@ ], "signature": [ "(input: ", - "LensEmbeddableInput", + { + "pluginId": "lens", + "scope": "public", + "docId": "kibLensPluginApi", + "section": "def-public.LensEmbeddableInput", + "text": "LensEmbeddableInput" + }, ", openInNewTab?: boolean | undefined) => void" ], "source": { "path": "x-pack/plugins/lens/public/plugin.ts", - "lineNumber": 102 + "lineNumber": 116 }, "deprecated": false, "returnComment": [], @@ -599,7 +688,7 @@ ], "source": { "path": "x-pack/plugins/lens/public/plugin.ts", - "lineNumber": 102 + "lineNumber": 116 }, "deprecated": false }, @@ -615,7 +704,7 @@ ], "source": { "path": "x-pack/plugins/lens/public/plugin.ts", - "lineNumber": 102 + "lineNumber": 116 }, "deprecated": false } @@ -635,7 +724,7 @@ ], "source": { "path": "x-pack/plugins/lens/public/plugin.ts", - "lineNumber": 106 + "lineNumber": 120 }, "deprecated": false, "returnComment": [], @@ -657,7 +746,7 @@ ], "source": { "path": "x-pack/plugins/lens/public/plugin.ts", - "lineNumber": 111 + "lineNumber": 125 }, "deprecated": false, "returnComment": [], @@ -666,6 +755,71 @@ ], "initialIsOpen": false }, + { + "parentPluginId": "lens", + "id": "def-public.MathIndexPatternColumn", + "type": "Interface", + "tags": [], + "label": "MathIndexPatternColumn", + "description": [], + "signature": [ + { + "pluginId": "lens", + "scope": "public", + "docId": "kibLensPluginApi", + "section": "def-public.MathIndexPatternColumn", + "text": "MathIndexPatternColumn" + }, + " extends ", + "ReferenceBasedIndexPatternColumn" + ], + "source": { + "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/formula/math.tsx", + "lineNumber": 13 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "lens", + "id": "def-public.MathIndexPatternColumn.operationType", + "type": "string", + "tags": [], + "label": "operationType", + "description": [], + "signature": [ + "\"math\"" + ], + "source": { + "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/formula/math.tsx", + "lineNumber": 14 + }, + "deprecated": false + }, + { + "parentPluginId": "lens", + "id": "def-public.MathIndexPatternColumn.params", + "type": "Object", + "tags": [], + "label": "params", + "description": [], + "signature": [ + "{ tinymathAst: string | number | ", + "TinymathVariable", + " | ", + "TinymathFunction", + " | ", + "TinymathNamedArgument", + "; format?: { id: string; params?: { decimals: number; } | undefined; } | undefined; }" + ], + "source": { + "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/formula/math.tsx", + "lineNumber": 15 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, { "parentPluginId": "lens", "id": "def-public.MetricState", @@ -720,7 +874,7 @@ "description": [], "source": { "path": "x-pack/plugins/lens/public/types.ts", - "lineNumber": 362 + "lineNumber": 372 }, "deprecated": false, "children": [ @@ -736,7 +890,7 @@ ], "source": { "path": "x-pack/plugins/lens/public/types.ts", - "lineNumber": 364 + "lineNumber": 374 }, "deprecated": false }, @@ -749,7 +903,7 @@ "description": [], "source": { "path": "x-pack/plugins/lens/public/types.ts", - "lineNumber": 367 + "lineNumber": 377 }, "deprecated": false }, @@ -767,7 +921,7 @@ ], "source": { "path": "x-pack/plugins/lens/public/types.ts", - "lineNumber": 373 + "lineNumber": 383 }, "deprecated": false } @@ -1759,7 +1913,7 @@ ], "source": { "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/metrics.tsx", - "lineNumber": 139 + "lineNumber": 162 }, "deprecated": false, "initialIsOpen": false @@ -1842,7 +1996,7 @@ ], "source": { "path": "x-pack/plugins/lens/public/types.ts", - "lineNumber": 351 + "lineNumber": 361 }, "deprecated": false, "initialIsOpen": false @@ -1875,19 +2029,53 @@ "label": "EmbeddableComponentProps", "description": [], "signature": [ + "(Pick<", + "LensByValueInput", + ", \"palette\" | \"timeRange\" | \"syncColors\" | \"viewMode\" | \"filters\" | \"title\" | \"query\" | \"hidePanelTitles\" | \"id\" | \"lastReloadRequestTime\" | \"enhancements\" | \"disabledActions\" | \"disableTriggers\" | \"searchSessionId\" | \"className\" | \"style\" | \"onLoad\" | \"renderMode\" | \"onBrushEnd\" | \"onFilter\" | \"onTableRowClick\"> & { attributes: LensAttributes<\"lnsXY\", ", { "pluginId": "lens", "scope": "public", "docId": "kibLensPluginApi", - "section": "def-public.TypedLensByValueInput", - "text": "TypedLensByValueInput" + "section": "def-public.XYState", + "text": "XYState" }, - " | ", - "LensByReferenceInput" + "> | LensAttributes<\"lnsPie\", ", + { + "pluginId": "lens", + "scope": "public", + "docId": "kibLensPluginApi", + "section": "def-public.PieVisualizationState", + "text": "PieVisualizationState" + }, + "> | LensAttributes<\"lnsDatatable\", ", + { + "pluginId": "lens", + "scope": "public", + "docId": "kibLensPluginApi", + "section": "def-public.DatatableVisualizationState", + "text": "DatatableVisualizationState" + }, + "> | LensAttributes<\"lnsMetric\", ", + { + "pluginId": "lens", + "scope": "public", + "docId": "kibLensPluginApi", + "section": "def-public.MetricState", + "text": "MetricState" + }, + ">; } & { withActions?: boolean | undefined; }) | (", + { + "pluginId": "embeddable", + "scope": "common", + "docId": "kibEmbeddablePluginApi", + "section": "def-common.SavedObjectEmbeddableInput", + "text": "SavedObjectEmbeddableInput" + }, + " & LensBaseEmbeddableInput & { withActions?: boolean | undefined; })" ], "source": { "path": "x-pack/plugins/lens/public/editor_frame_service/embeddable/embeddable_component.tsx", - "lineNumber": 46 + "lineNumber": 54 }, "deprecated": false, "initialIsOpen": false @@ -1958,7 +2146,7 @@ ], "source": { "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/index.ts", - "lineNumber": 80 + "lineNumber": 92 }, "deprecated": false, "initialIsOpen": false @@ -2044,7 +2232,7 @@ "section": "def-public.CumulativeSumIndexPatternColumn", "text": "CumulativeSumIndexPatternColumn" }, - " | ", + " | OverallMetricIndexPatternColumn<\"overall_sum\"> | OverallMetricIndexPatternColumn<\"overall_min\"> | OverallMetricIndexPatternColumn<\"overall_max\"> | OverallMetricIndexPatternColumn<\"overall_average\"> | ", { "pluginId": "lens", "scope": "public", @@ -2069,13 +2257,44 @@ "text": "MovingAverageIndexPatternColumn" }, " | ", - "MathIndexPatternColumn", + { + "pluginId": "lens", + "scope": "public", + "docId": "kibLensPluginApi", + "section": "def-public.MathIndexPatternColumn", + "text": "MathIndexPatternColumn" + }, " | ", - "FormulaIndexPatternColumn" + { + "pluginId": "lens", + "scope": "public", + "docId": "kibLensPluginApi", + "section": "def-public.FormulaIndexPatternColumn", + "text": "FormulaIndexPatternColumn" + } ], "source": { "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/index.ts", - "lineNumber": 59 + "lineNumber": 67 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "lens", + "id": "def-public.LensEmbeddableInput", + "type": "Type", + "tags": [], + "label": "LensEmbeddableInput", + "description": [], + "signature": [ + "LensByValueInput", + " | ", + "LensByReferenceInput" + ], + "source": { + "path": "x-pack/plugins/lens/public/editor_frame_service/embeddable/embeddable.tsx", + "lineNumber": 82 }, "deprecated": false, "initialIsOpen": false @@ -2101,7 +2320,7 @@ ], "source": { "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/metrics.tsx", - "lineNumber": 141 + "lineNumber": 164 }, "deprecated": false, "initialIsOpen": false @@ -2127,7 +2346,7 @@ ], "source": { "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/metrics.tsx", - "lineNumber": 142 + "lineNumber": 165 }, "deprecated": false, "initialIsOpen": false @@ -2153,7 +2372,7 @@ ], "source": { "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/metrics.tsx", - "lineNumber": 140 + "lineNumber": 163 }, "deprecated": false, "initialIsOpen": false @@ -2188,11 +2407,31 @@ "\nA union type of all available operation types. The operation type is a unique id of an operation.\nEach column is assigned to exactly one operation type." ], "signature": [ - "\"range\" | \"filters\" | \"count\" | \"max\" | \"min\" | \"date_histogram\" | \"sum\" | \"average\" | \"percentile\" | \"terms\" | \"median\" | \"cumulative_sum\" | \"moving_average\" | \"math\" | \"counter_rate\" | \"differences\" | \"unique_count\" | \"last_value\" | \"formula\"" + "\"range\" | \"filters\" | \"count\" | \"max\" | \"min\" | \"date_histogram\" | \"sum\" | \"average\" | \"percentile\" | \"terms\" | \"median\" | \"cumulative_sum\" | \"moving_average\" | \"math\" | \"overall_sum\" | \"overall_min\" | \"overall_max\" | \"overall_average\" | \"counter_rate\" | \"differences\" | \"unique_count\" | \"last_value\" | \"formula\"" ], "source": { "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/index.ts", - "lineNumber": 533 + "lineNumber": 573 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "lens", + "id": "def-public.OverallSumIndexPatternColumn", + "type": "Type", + "tags": [], + "label": "OverallSumIndexPatternColumn", + "description": [], + "signature": [ + "BaseIndexPatternColumn", + " & { params?: { format?: { id: string; params?: { decimals: number; } | undefined; } | undefined; } | undefined; } & ", + "ReferenceBasedIndexPatternColumn", + " & { operationType: \"overall_sum\"; }" + ], + "source": { + "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/calculations/overall_metric.tsx", + "lineNumber": 19 }, "deprecated": false, "initialIsOpen": false @@ -2225,7 +2464,7 @@ ], "source": { "path": "x-pack/plugins/lens/public/indexpattern_datasource/types.ts", - "lineNumber": 77 + "lineNumber": 80 }, "deprecated": false, "initialIsOpen": false @@ -2292,7 +2531,7 @@ ], "source": { "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/metrics.tsx", - "lineNumber": 138 + "lineNumber": 161 }, "deprecated": false, "initialIsOpen": false @@ -2345,7 +2584,7 @@ ], "source": { "path": "x-pack/plugins/lens/public/editor_frame_service/embeddable/embeddable_component.tsx", - "lineNumber": 38 + "lineNumber": 46 }, "deprecated": false, "initialIsOpen": false diff --git a/api_docs/lens.mdx b/api_docs/lens.mdx index 8c47be1b5897c..9408921e6e59d 100644 --- a/api_docs/lens.mdx +++ b/api_docs/lens.mdx @@ -8,18 +8,17 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'lens'] warning: 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. --- - import lensObj from './lens.json'; +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. - - +Contact [Kibana App](https://github.com/orgs/elastic/teams/kibana-app) for questions regarding this plugin. **Code health stats** | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 172 | 0 | 161 | 16 | +| 181 | 0 | 169 | 14 | ## Client diff --git a/api_docs/license_api_guard.mdx b/api_docs/license_api_guard.mdx index a2859cc03f877..e8cbe775d1e5f 100644 --- a/api_docs/license_api_guard.mdx +++ b/api_docs/license_api_guard.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'licenseApiGuard'] warning: 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. --- - import licenseApiGuardObj from './license_api_guard.json'; diff --git a/api_docs/license_management.mdx b/api_docs/license_management.mdx index b198e83acebf3..8594a9d214caa 100644 --- a/api_docs/license_management.mdx +++ b/api_docs/license_management.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'licenseManagement'] warning: 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. --- - import licenseManagementObj from './license_management.json'; diff --git a/api_docs/licensing.json b/api_docs/licensing.json index 862a00e65215f..9f1403e7ed0ac 100644 --- a/api_docs/licensing.json +++ b/api_docs/licensing.json @@ -942,73 +942,73 @@ "deprecated": true, "references": [ { - "plugin": "reporting", + "plugin": "licenseManagement", "link": { - "path": "x-pack/plugins/reporting/public/panel_actions/get_csv_panel_action.tsx", - "lineNumber": 40 + "path": "x-pack/plugins/license_management/public/plugin.ts", + "lineNumber": 61 } }, { - "plugin": "reporting", + "plugin": "security", "link": { - "path": "x-pack/plugins/reporting/public/share_context_menu/register_csv_reporting.tsx", - "lineNumber": 33 + "path": "x-pack/plugins/security/public/plugin.tsx", + "lineNumber": 86 } }, { - "plugin": "reporting", + "plugin": "ml", "link": { - "path": "x-pack/plugins/reporting/public/share_context_menu/register_pdf_png_reporting.tsx", - "lineNumber": 81 + "path": "x-pack/plugins/ml/public/application/license/check_license.tsx", + "lineNumber": 26 } }, { - "plugin": "reporting", + "plugin": "ml", "link": { - "path": "x-pack/plugins/reporting/public/plugin.ts", - "lineNumber": 116 + "path": "x-pack/plugins/ml/public/plugin.ts", + "lineNumber": 138 } }, { - "plugin": "reporting", + "plugin": "apm", "link": { - "path": "x-pack/plugins/reporting/public/components/report_listing.tsx", - "lineNumber": 61 + "path": "x-pack/plugins/apm/public/context/license/license_context.tsx", + "lineNumber": 19 } }, { - "plugin": "licenseManagement", + "plugin": "reporting", "link": { - "path": "x-pack/plugins/license_management/public/plugin.ts", - "lineNumber": 61 + "path": "x-pack/plugins/reporting/public/panel_actions/get_csv_panel_action.tsx", + "lineNumber": 40 } }, { - "plugin": "security", + "plugin": "reporting", "link": { - "path": "x-pack/plugins/security/public/plugin.tsx", - "lineNumber": 84 + "path": "x-pack/plugins/reporting/public/share_context_menu/register_csv_reporting.tsx", + "lineNumber": 33 } }, { - "plugin": "ml", + "plugin": "reporting", "link": { - "path": "x-pack/plugins/ml/public/application/license/check_license.tsx", - "lineNumber": 26 + "path": "x-pack/plugins/reporting/public/share_context_menu/register_pdf_png_reporting.tsx", + "lineNumber": 81 } }, { - "plugin": "ml", + "plugin": "reporting", "link": { - "path": "x-pack/plugins/ml/public/plugin.ts", - "lineNumber": 141 + "path": "x-pack/plugins/reporting/public/management/report_listing.tsx", + "lineNumber": 55 } }, { - "plugin": "apm", + "plugin": "reporting", "link": { - "path": "x-pack/plugins/apm/public/context/license/license_context.tsx", - "lineNumber": 19 + "path": "x-pack/plugins/reporting/public/plugin.ts", + "lineNumber": 122 } }, { @@ -1022,7 +1022,7 @@ "plugin": "fleet", "link": { "path": "x-pack/plugins/fleet/public/plugin.ts", - "lineNumber": 94 + "lineNumber": 100 } }, { @@ -3053,7 +3053,7 @@ "plugin": "spaces", "link": { "path": "x-pack/plugins/spaces/server/usage_collection/spaces_usage_collector.ts", - "lineNumber": 431 + "lineNumber": 437 } }, { @@ -3074,7 +3074,7 @@ "plugin": "security", "link": { "path": "x-pack/plugins/security/server/plugin.ts", - "lineNumber": 229 + "lineNumber": 228 } }, { @@ -3102,7 +3102,7 @@ "plugin": "alerting", "link": { "path": "x-pack/plugins/alerting/server/plugin.ts", - "lineNumber": 168 + "lineNumber": 170 } }, { @@ -3120,17 +3120,17 @@ } }, { - "plugin": "remoteClusters", + "plugin": "fleet", "link": { - "path": "x-pack/plugins/remote_clusters/server/plugin.ts", - "lineNumber": 73 + "path": "x-pack/plugins/fleet/server/plugin.ts", + "lineNumber": 214 } }, { - "plugin": "fleet", + "plugin": "remoteClusters", "link": { - "path": "x-pack/plugins/fleet/server/plugin.ts", - "lineNumber": 214 + "path": "x-pack/plugins/remote_clusters/server/plugin.ts", + "lineNumber": 73 } }, { @@ -3200,7 +3200,7 @@ "plugin": "spaces", "link": { "path": "x-pack/plugins/spaces/server/usage_collection/spaces_usage_collector.test.ts", - "lineNumber": 62 + "lineNumber": 63 } }, { diff --git a/api_docs/licensing.mdx b/api_docs/licensing.mdx index af26b10762d27..be974eb82bf61 100644 --- a/api_docs/licensing.mdx +++ b/api_docs/licensing.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'licensing'] warning: 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. --- - import licensingObj from './licensing.json'; diff --git a/api_docs/lists.json b/api_docs/lists.json index 061227499d67f..36fb301ac0d6a 100644 --- a/api_docs/lists.json +++ b/api_docs/lists.json @@ -341,7 +341,7 @@ "description": [], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 59 + "lineNumber": 58 }, "deprecated": false, "children": [ @@ -357,7 +357,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 64 + "lineNumber": 63 }, "deprecated": false, "children": [ @@ -373,7 +373,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 64 + "lineNumber": 63 }, "deprecated": false, "isRequired": true @@ -395,7 +395,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 69 + "lineNumber": 68 }, "deprecated": false, "children": [ @@ -411,7 +411,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 69 + "lineNumber": 68 }, "deprecated": false, "isRequired": true @@ -433,7 +433,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 78 + "lineNumber": 77 }, "deprecated": false, "children": [ @@ -449,7 +449,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 78 + "lineNumber": 77 }, "deprecated": false, "isRequired": true @@ -471,7 +471,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 87 + "lineNumber": 86 }, "deprecated": false, "children": [ @@ -487,7 +487,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 87 + "lineNumber": 86 }, "deprecated": false, "isRequired": true @@ -509,7 +509,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 102 + "lineNumber": 101 }, "deprecated": false, "children": [], @@ -531,27 +531,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 114 - }, - "deprecated": false, - "children": [], - "returnComment": [] - }, - { - "parentPluginId": "lists", - "id": "def-server.ExceptionListClient.createEndpointEventFiltersList", - "type": "Function", - "tags": [], - "label": "createEndpointEventFiltersList", - "description": [ - "\nCreate the Endpoint Event Filters Agnostic list if it does not yet exist (`null` is returned if it does exist)" - ], - "signature": [ - "() => Promise<{ _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\" | \"endpoint_events\"; updated_at: string; updated_by: string; version: number; } | null>" - ], - "source": { - "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 126 + "lineNumber": 113 }, "deprecated": false, "children": [], @@ -573,7 +553,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 140 + "lineNumber": 127 }, "deprecated": false, "children": [ @@ -589,7 +569,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 140 + "lineNumber": 127 }, "deprecated": false, "isRequired": true @@ -613,7 +593,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 176 + "lineNumber": 163 }, "deprecated": false, "children": [ @@ -629,7 +609,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 176 + "lineNumber": 163 }, "deprecated": false, "isRequired": true @@ -653,7 +633,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 212 + "lineNumber": 199 }, "deprecated": false, "children": [ @@ -669,7 +649,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 212 + "lineNumber": 199 }, "deprecated": false, "isRequired": true @@ -691,7 +671,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 220 + "lineNumber": 207 }, "deprecated": false, "children": [ @@ -707,7 +687,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 220 + "lineNumber": 207 }, "deprecated": false, "isRequired": true @@ -729,7 +709,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 247 + "lineNumber": 234 }, "deprecated": false, "children": [ @@ -745,7 +725,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 247 + "lineNumber": 234 }, "deprecated": false, "isRequired": true @@ -767,7 +747,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 278 + "lineNumber": 265 }, "deprecated": false, "children": [ @@ -783,7 +763,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 278 + "lineNumber": 265 }, "deprecated": false, "isRequired": true @@ -811,7 +791,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 292 + "lineNumber": 279 }, "deprecated": false, "children": [ @@ -833,7 +813,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 292 + "lineNumber": 279 }, "deprecated": false, "isRequired": true @@ -861,7 +841,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 323 + "lineNumber": 310 }, "deprecated": false, "children": [ @@ -883,7 +863,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 323 + "lineNumber": 310 }, "deprecated": false, "isRequired": true @@ -905,7 +885,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 356 + "lineNumber": 343 }, "deprecated": false, "children": [ @@ -921,7 +901,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 356 + "lineNumber": 343 }, "deprecated": false, "isRequired": true @@ -943,7 +923,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 370 + "lineNumber": 357 }, "deprecated": false, "children": [ @@ -959,7 +939,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 370 + "lineNumber": 357 }, "deprecated": false, "isRequired": true @@ -983,7 +963,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 385 + "lineNumber": 372 }, "deprecated": false, "children": [ @@ -999,7 +979,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 385 + "lineNumber": 372 }, "deprecated": false, "isRequired": true @@ -1021,7 +1001,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 398 + "lineNumber": 385 }, "deprecated": false, "children": [ @@ -1037,7 +1017,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 398 + "lineNumber": 385 }, "deprecated": false, "isRequired": true @@ -1059,7 +1039,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 420 + "lineNumber": 407 }, "deprecated": false, "children": [ @@ -1075,7 +1055,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 420 + "lineNumber": 407 }, "deprecated": false, "isRequired": true @@ -1097,7 +1077,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 442 + "lineNumber": 429 }, "deprecated": false, "children": [ @@ -1113,7 +1093,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 442 + "lineNumber": 429 }, "deprecated": false, "isRequired": true @@ -1135,7 +1115,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 460 + "lineNumber": 447 }, "deprecated": false, "children": [ @@ -1151,7 +1131,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 460 + "lineNumber": 447 }, "deprecated": false, "isRequired": true @@ -1175,7 +1155,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 488 + "lineNumber": 475 }, "deprecated": false, "children": [ @@ -1191,7 +1171,7 @@ ], "source": { "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", - "lineNumber": 488 + "lineNumber": 475 }, "deprecated": false, "isRequired": true diff --git a/api_docs/lists.mdx b/api_docs/lists.mdx index 47b1bde5c0782..16cab072460bf 100644 --- a/api_docs/lists.mdx +++ b/api_docs/lists.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'lists'] warning: 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. --- - import listsObj from './lists.json'; @@ -19,7 +18,7 @@ import listsObj from './lists.json'; | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 151 | 0 | 143 | 38 | +| 150 | 0 | 143 | 38 | ## Client diff --git a/api_docs/management.json b/api_docs/management.json index 41801e2f2bafc..de8bb8ad13060 100644 --- a/api_docs/management.json +++ b/api_docs/management.json @@ -73,7 +73,7 @@ ], "source": { "path": "src/plugins/management/public/types.ts", - "lineNumber": 56 + "lineNumber": 59 }, "deprecated": false } @@ -382,7 +382,7 @@ "description": [], "source": { "path": "src/plugins/management/public/types.ts", - "lineNumber": 17 + "lineNumber": 20 }, "deprecated": false, "children": [ @@ -404,7 +404,7 @@ ], "source": { "path": "src/plugins/management/public/types.ts", - "lineNumber": 18 + "lineNumber": 21 }, "deprecated": false }, @@ -426,7 +426,7 @@ ], "source": { "path": "src/plugins/management/public/types.ts", - "lineNumber": 19 + "lineNumber": 22 }, "deprecated": false }, @@ -448,7 +448,7 @@ ], "source": { "path": "src/plugins/management/public/types.ts", - "lineNumber": 20 + "lineNumber": 23 }, "deprecated": false }, @@ -470,7 +470,7 @@ ], "source": { "path": "src/plugins/management/public/types.ts", - "lineNumber": 21 + "lineNumber": 24 }, "deprecated": false }, @@ -492,7 +492,7 @@ ], "source": { "path": "src/plugins/management/public/types.ts", - "lineNumber": 22 + "lineNumber": 25 }, "deprecated": false }, @@ -514,7 +514,7 @@ ], "source": { "path": "src/plugins/management/public/types.ts", - "lineNumber": 23 + "lineNumber": 26 }, "deprecated": false } @@ -530,7 +530,7 @@ "description": [], "source": { "path": "src/plugins/management/public/types.ts", - "lineNumber": 58 + "lineNumber": 61 }, "deprecated": false, "children": [ @@ -543,7 +543,7 @@ "description": [], "source": { "path": "src/plugins/management/public/types.ts", - "lineNumber": 59 + "lineNumber": 62 }, "deprecated": false }, @@ -559,7 +559,7 @@ ], "source": { "path": "src/plugins/management/public/types.ts", - "lineNumber": 60 + "lineNumber": 63 }, "deprecated": false }, @@ -577,7 +577,7 @@ ], "source": { "path": "src/plugins/management/public/types.ts", - "lineNumber": 61 + "lineNumber": 64 }, "deprecated": false, "returnComment": [], @@ -595,7 +595,7 @@ ], "source": { "path": "src/plugins/management/public/types.ts", - "lineNumber": 61 + "lineNumber": 64 }, "deprecated": false } @@ -620,7 +620,7 @@ ], "source": { "path": "src/plugins/management/public/types.ts", - "lineNumber": 62 + "lineNumber": 65 }, "deprecated": false } @@ -698,7 +698,7 @@ ], "source": { "path": "src/plugins/management/public/types.ts", - "lineNumber": 56 + "lineNumber": 59 }, "deprecated": false } @@ -767,7 +767,7 @@ "description": [], "source": { "path": "src/plugins/management/public/types.ts", - "lineNumber": 13 + "lineNumber": 15 }, "deprecated": false, "children": [ @@ -783,7 +783,32 @@ ], "source": { "path": "src/plugins/management/public/types.ts", - "lineNumber": 14 + "lineNumber": 16 + }, + "deprecated": false + }, + { + "parentPluginId": "management", + "id": "def-public.ManagementSetup.locator", + "type": "Object", + "tags": [], + "label": "locator", + "description": [], + "signature": [ + { + "pluginId": "share", + "scope": "common", + "docId": "kibSharePluginApi", + "section": "def-common.LocatorPublic", + "text": "LocatorPublic" + }, + "<", + "ManagementAppLocatorParams", + ">" + ], + "source": { + "path": "src/plugins/management/public/types.ts", + "lineNumber": 17 }, "deprecated": false } @@ -800,7 +825,7 @@ "description": [], "source": { "path": "src/plugins/management/public/types.ts", - "lineNumber": 27 + "lineNumber": 30 }, "deprecated": false, "children": [], @@ -821,7 +846,34 @@ "functions": [], "interfaces": [], "enums": [], - "misc": [], + "misc": [ + { + "parentPluginId": "management", + "id": "def-common.ManagementAppLocator", + "type": "Type", + "tags": [], + "label": "ManagementAppLocator", + "description": [], + "signature": [ + { + "pluginId": "share", + "scope": "common", + "docId": "kibSharePluginApi", + "section": "def-common.LocatorPublic", + "text": "LocatorPublic" + }, + "<", + "ManagementAppLocatorParams", + ">" + ], + "source": { + "path": "src/plugins/management/common/locator.ts", + "lineNumber": 20 + }, + "deprecated": false, + "initialIsOpen": false + } + ], "objects": [] } } \ No newline at end of file diff --git a/api_docs/management.mdx b/api_docs/management.mdx index 22586c7b58b49..fff52d8d9bf07 100644 --- a/api_docs/management.mdx +++ b/api_docs/management.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'management'] warning: 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. --- - import managementObj from './management.json'; @@ -19,7 +18,7 @@ import managementObj from './management.json'; | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 38 | 0 | 38 | 4 | +| 40 | 0 | 40 | 5 | ## Client @@ -38,3 +37,8 @@ import managementObj from './management.json'; ### Consts, variables and types +## Common + +### Consts, variables and types + + diff --git a/api_docs/maps.json b/api_docs/maps.json index 9c1c7243a41bc..de1a1f9f6f55e 100644 --- a/api_docs/maps.json +++ b/api_docs/maps.json @@ -57,7 +57,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 93 + "lineNumber": 94 }, "deprecated": false, "children": [ @@ -70,7 +70,7 @@ "description": [], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 96 + "lineNumber": 97 }, "deprecated": false }, @@ -86,7 +86,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 115 + "lineNumber": 116 }, "deprecated": false, "children": [ @@ -102,7 +102,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 115 + "lineNumber": 116 }, "deprecated": false, "isRequired": true @@ -125,7 +125,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 115 + "lineNumber": 116 }, "deprecated": false, "isRequired": true @@ -165,7 +165,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 115 + "lineNumber": 116 }, "deprecated": false, "isRequired": false @@ -194,7 +194,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 194 + "lineNumber": 195 }, "deprecated": false, "children": [ @@ -216,7 +216,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 195 + "lineNumber": 196 }, "deprecated": false, "isRequired": true @@ -238,7 +238,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 200 + "lineNumber": 201 }, "deprecated": false, "children": [], @@ -258,7 +258,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 208 + "lineNumber": 209 }, "deprecated": false, "children": [], @@ -276,7 +276,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 213 + "lineNumber": 214 }, "deprecated": false, "children": [], @@ -294,7 +294,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 217 + "lineNumber": 218 }, "deprecated": false, "children": [], @@ -314,7 +314,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 221 + "lineNumber": 222 }, "deprecated": false, "children": [ @@ -330,7 +330,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 221 + "lineNumber": 222 }, "deprecated": false, "isRequired": true @@ -352,7 +352,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 225 + "lineNumber": 226 }, "deprecated": false, "children": [ @@ -368,7 +368,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 225 + "lineNumber": 226 }, "deprecated": false, "isRequired": true @@ -395,7 +395,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 229 + "lineNumber": 230 }, "deprecated": false, "children": [], @@ -413,7 +413,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 233 + "lineNumber": 234 }, "deprecated": false, "children": [], @@ -439,7 +439,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 273 + "lineNumber": 274 }, "deprecated": false, "children": [], @@ -457,7 +457,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 281 + "lineNumber": 282 }, "deprecated": false, "children": [], @@ -475,7 +475,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 291 + "lineNumber": 292 }, "deprecated": false, "children": [ @@ -488,7 +488,7 @@ "description": [], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 291 + "lineNumber": 292 }, "deprecated": false, "children": [ @@ -501,7 +501,7 @@ "description": [], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 291 + "lineNumber": 292 }, "deprecated": false } @@ -522,7 +522,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 311 + "lineNumber": 312 }, "deprecated": false, "children": [ @@ -538,7 +538,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 311 + "lineNumber": 312 }, "deprecated": false, "isRequired": false @@ -560,7 +560,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 329 + "lineNumber": 330 }, "deprecated": false, "children": [ @@ -576,7 +576,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 329 + "lineNumber": 330 }, "deprecated": false, "isRequired": true @@ -598,7 +598,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 355 + "lineNumber": 357 }, "deprecated": false, "children": [ @@ -615,7 +615,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 355 + "lineNumber": 357 }, "deprecated": false, "isRequired": true @@ -643,7 +643,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 372 + "lineNumber": 374 }, "deprecated": false, "children": [ @@ -659,7 +659,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 372 + "lineNumber": 374 }, "deprecated": false, "isRequired": true @@ -676,7 +676,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 372 + "lineNumber": 374 }, "deprecated": false, "isRequired": true @@ -699,7 +699,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 372 + "lineNumber": 374 }, "deprecated": false, "isRequired": false @@ -727,7 +727,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 386 + "lineNumber": 388 }, "deprecated": false, "children": [ @@ -750,7 +750,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 386 + "lineNumber": 388 }, "deprecated": false, "isRequired": true @@ -767,7 +767,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 386 + "lineNumber": 388 }, "deprecated": false, "isRequired": true @@ -795,7 +795,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 398 + "lineNumber": 400 }, "deprecated": false, "children": [], @@ -821,7 +821,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 419 + "lineNumber": 421 }, "deprecated": false, "children": [], @@ -839,7 +839,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 430 + "lineNumber": 432 }, "deprecated": false, "children": [], @@ -857,7 +857,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 466 + "lineNumber": 468 }, "deprecated": false, "children": [], @@ -875,7 +875,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 480 + "lineNumber": 482 }, "deprecated": false, "children": [], @@ -893,7 +893,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 496 + "lineNumber": 498 }, "deprecated": false, "children": [], @@ -911,7 +911,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "lineNumber": 502 + "lineNumber": 504 }, "deprecated": false, "children": [], @@ -932,7 +932,7 @@ "description": [], "source": { "path": "x-pack/plugins/maps/public/ems_autosuggest/ems_autosuggest.ts", - "lineNumber": 18 + "lineNumber": 16 }, "deprecated": false, "children": [ @@ -945,7 +945,7 @@ "description": [], "source": { "path": "x-pack/plugins/maps/public/ems_autosuggest/ems_autosuggest.ts", - "lineNumber": 19 + "lineNumber": 17 }, "deprecated": false }, @@ -958,7 +958,7 @@ "description": [], "source": { "path": "x-pack/plugins/maps/public/ems_autosuggest/ems_autosuggest.ts", - "lineNumber": 20 + "lineNumber": 18 }, "deprecated": false } @@ -1238,26 +1238,10 @@ "description": [], "source": { "path": "x-pack/plugins/maps/public/ems_autosuggest/ems_autosuggest.ts", - "lineNumber": 12 + "lineNumber": 11 }, "deprecated": false, "children": [ - { - "parentPluginId": "maps", - "id": "def-public.SampleValuesConfig.emsLayerIds", - "type": "Array", - "tags": [], - "label": "emsLayerIds", - "description": [], - "signature": [ - "string[] | undefined" - ], - "source": { - "path": "x-pack/plugins/maps/public/ems_autosuggest/ems_autosuggest.ts", - "lineNumber": 13 - }, - "deprecated": false - }, { "parentPluginId": "maps", "id": "def-public.SampleValuesConfig.sampleValues", @@ -1270,7 +1254,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/ems_autosuggest/ems_autosuggest.ts", - "lineNumber": 14 + "lineNumber": 12 }, "deprecated": false }, @@ -1286,7 +1270,7 @@ ], "source": { "path": "x-pack/plugins/maps/public/ems_autosuggest/ems_autosuggest.ts", - "lineNumber": 15 + "lineNumber": 13 }, "deprecated": false } @@ -1561,7 +1545,7 @@ "label": "getEditPath", "description": [], "signature": [ - "(id: string) => string" + "(id: string | undefined) => string" ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", @@ -1577,14 +1561,14 @@ "label": "id", "description": [], "signature": [ - "string" + "string | undefined" ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", "lineNumber": 67 }, "deprecated": false, - "isRequired": true + "isRequired": false } ], "returnComment": [], @@ -1592,13 +1576,13 @@ }, { "parentPluginId": "maps", - "id": "def-common.getExistingMapPath", + "id": "def-common.getFullPath", "type": "Function", "tags": [], - "label": "getExistingMapPath", + "label": "getFullPath", "description": [], "signature": [ - "(id: string) => string" + "(id: string | undefined) => string" ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", @@ -1608,20 +1592,20 @@ "children": [ { "parentPluginId": "maps", - "id": "def-common.getExistingMapPath.$1", + "id": "def-common.getFullPath.$1", "type": "string", "tags": [], "label": "id", "description": [], "signature": [ - "string" + "string | undefined" ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", "lineNumber": 64 }, "deprecated": false, - "isRequired": true + "isRequired": false } ], "returnComment": [], @@ -1657,7 +1641,7 @@ "description": [], "source": { "path": "x-pack/plugins/maps/common/types.ts", - "lineNumber": 23 + "lineNumber": 29 }, "deprecated": false, "children": [ @@ -1673,7 +1657,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/types.ts", - "lineNumber": 24 + "lineNumber": 30 }, "deprecated": false } @@ -1750,7 +1734,7 @@ "description": [], "source": { "path": "x-pack/plugins/maps/common/types.ts", - "lineNumber": 14 + "lineNumber": 20 }, "deprecated": false, "children": [ @@ -1766,7 +1750,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/types.ts", - "lineNumber": 15 + "lineNumber": 21 }, "deprecated": false }, @@ -1782,7 +1766,68 @@ ], "source": { "path": "x-pack/plugins/maps/common/types.ts", - "lineNumber": 18 + "lineNumber": 24 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "maps", + "id": "def-common.MatchingIndexesResp", + "type": "Interface", + "tags": [], + "label": "MatchingIndexesResp", + "description": [], + "source": { + "path": "x-pack/plugins/maps/common/types.ts", + "lineNumber": 14 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "maps", + "id": "def-common.MatchingIndexesResp.matchingIndexes", + "type": "Array", + "tags": [], + "label": "matchingIndexes", + "description": [], + "signature": [ + "string[] | undefined" + ], + "source": { + "path": "x-pack/plugins/maps/common/types.ts", + "lineNumber": 15 + }, + "deprecated": false + }, + { + "parentPluginId": "maps", + "id": "def-common.MatchingIndexesResp.success", + "type": "boolean", + "tags": [], + "label": "success", + "description": [], + "source": { + "path": "x-pack/plugins/maps/common/types.ts", + "lineNumber": 16 + }, + "deprecated": false + }, + { + "parentPluginId": "maps", + "id": "def-common.MatchingIndexesResp.error", + "type": "Object", + "tags": [], + "label": "error", + "description": [], + "signature": [ + "Error | undefined" + ], + "source": { + "path": "x-pack/plugins/maps/common/types.ts", + "lineNumber": 17 }, "deprecated": false } @@ -1798,7 +1843,7 @@ "description": [], "source": { "path": "x-pack/plugins/maps/common/types.ts", - "lineNumber": 27 + "lineNumber": 33 }, "deprecated": false, "children": [ @@ -1811,7 +1856,7 @@ "description": [], "source": { "path": "x-pack/plugins/maps/common/types.ts", - "lineNumber": 28 + "lineNumber": 34 }, "deprecated": false }, @@ -1827,7 +1872,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/types.ts", - "lineNumber": 29 + "lineNumber": 35 }, "deprecated": false }, @@ -1843,7 +1888,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/types.ts", - "lineNumber": 30 + "lineNumber": 36 }, "deprecated": false } @@ -1861,7 +1906,7 @@ "description": [], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 164 + "lineNumber": 176 }, "deprecated": false, "initialIsOpen": false @@ -1875,7 +1920,7 @@ "description": [], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 212 + "lineNumber": 224 }, "deprecated": false, "initialIsOpen": false @@ -1889,77 +1934,77 @@ "description": [], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 293 + "lineNumber": 300 }, "deprecated": false, "initialIsOpen": false }, { "parentPluginId": "maps", - "id": "def-common.DRAW_TYPE", + "id": "def-common.DRAW_MODE", "type": "Enum", "tags": [], - "label": "DRAW_TYPE", + "label": "DRAW_MODE", "description": [], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 157 + "lineNumber": 158 }, "deprecated": false, "initialIsOpen": false }, { "parentPluginId": "maps", - "id": "def-common.ES_GEO_FIELD_TYPE", + "id": "def-common.DRAW_SHAPE", "type": "Enum", "tags": [], - "label": "ES_GEO_FIELD_TYPE", + "label": "DRAW_SHAPE", "description": [], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 124 + "lineNumber": 165 }, "deprecated": false, "initialIsOpen": false }, { "parentPluginId": "maps", - "id": "def-common.ES_SPATIAL_RELATIONS", + "id": "def-common.ES_GEO_FIELD_TYPE", "type": "Enum", "tags": [], - "label": "ES_SPATIAL_RELATIONS", + "label": "ES_GEO_FIELD_TYPE", "description": [], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 132 + "lineNumber": 125 }, "deprecated": false, "initialIsOpen": false }, { "parentPluginId": "maps", - "id": "def-common.FIELD_ORIGIN", + "id": "def-common.ES_SPATIAL_RELATIONS", "type": "Enum", "tags": [], - "label": "FIELD_ORIGIN", + "label": "ES_SPATIAL_RELATIONS", "description": [], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 97 + "lineNumber": 133 }, "deprecated": false, "initialIsOpen": false }, { "parentPluginId": "maps", - "id": "def-common.FORMAT_TYPE", + "id": "def-common.FIELD_ORIGIN", "type": "Enum", "tags": [], - "label": "FORMAT_TYPE", + "label": "FIELD_ORIGIN", "description": [], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 256 + "lineNumber": 97 }, "deprecated": false, "initialIsOpen": false @@ -1973,7 +2018,7 @@ "description": [], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 138 + "lineNumber": 139 }, "deprecated": false, "initialIsOpen": false @@ -1987,7 +2032,7 @@ "description": [], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 181 + "lineNumber": 193 }, "deprecated": false, "initialIsOpen": false @@ -2001,7 +2046,7 @@ "description": [], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 268 + "lineNumber": 275 }, "deprecated": false, "initialIsOpen": false @@ -2015,7 +2060,7 @@ "description": [], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 225 + "lineNumber": 237 }, "deprecated": false, "initialIsOpen": false @@ -2029,7 +2074,7 @@ "description": [], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 206 + "lineNumber": 218 }, "deprecated": false, "initialIsOpen": false @@ -2057,7 +2102,7 @@ "description": [], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 275 + "lineNumber": 282 }, "deprecated": false, "initialIsOpen": false @@ -2071,7 +2116,7 @@ "description": [], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 288 + "lineNumber": 295 }, "deprecated": false, "initialIsOpen": false @@ -2085,7 +2130,7 @@ "description": [], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 261 + "lineNumber": 268 }, "deprecated": false, "initialIsOpen": false @@ -2099,7 +2144,7 @@ "description": [], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 175 + "lineNumber": 187 }, "deprecated": false, "initialIsOpen": false @@ -2113,7 +2158,7 @@ "description": [], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 249 + "lineNumber": 261 }, "deprecated": false, "initialIsOpen": false @@ -2141,7 +2186,7 @@ "description": [], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 201 + "lineNumber": 213 }, "deprecated": false, "initialIsOpen": false @@ -2155,7 +2200,7 @@ "description": [], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 220 + "lineNumber": 232 }, "deprecated": false, "initialIsOpen": false @@ -2169,7 +2214,7 @@ "description": [], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 281 + "lineNumber": 288 }, "deprecated": false, "initialIsOpen": false @@ -2183,7 +2228,7 @@ "description": [], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 234 + "lineNumber": 246 }, "deprecated": false, "initialIsOpen": false @@ -2202,7 +2247,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 163 + "lineNumber": 175 }, "deprecated": false, "initialIsOpen": false @@ -2216,7 +2261,7 @@ "description": [], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 45 + "lineNumber": 44 }, "deprecated": false, "initialIsOpen": false @@ -2298,7 +2343,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 217 + "lineNumber": 229 }, "deprecated": false, "initialIsOpen": false @@ -2312,7 +2357,7 @@ "description": [], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 195 + "lineNumber": 207 }, "deprecated": false, "initialIsOpen": false @@ -2329,7 +2374,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 199 + "lineNumber": 211 }, "deprecated": false, "initialIsOpen": false @@ -2346,7 +2391,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 113 + "lineNumber": 114 }, "deprecated": false, "initialIsOpen": false @@ -2363,7 +2408,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 232 + "lineNumber": 244 }, "deprecated": false, "initialIsOpen": false @@ -2380,7 +2425,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 117 + "lineNumber": 118 }, "deprecated": false, "initialIsOpen": false @@ -2397,7 +2442,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 116 + "lineNumber": 117 }, "deprecated": false, "initialIsOpen": false @@ -2414,7 +2459,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 115 + "lineNumber": 116 }, "deprecated": false, "initialIsOpen": false @@ -2431,7 +2476,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 193 + "lineNumber": 205 }, "deprecated": false, "initialIsOpen": false @@ -2448,7 +2493,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 297 + "lineNumber": 304 }, "deprecated": false, "initialIsOpen": false @@ -2703,7 +2748,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 308 + "lineNumber": 315 }, "deprecated": false, "initialIsOpen": false @@ -2720,7 +2765,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 309 + "lineNumber": 316 }, "deprecated": false, "initialIsOpen": false @@ -2737,7 +2782,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 307 + "lineNumber": 314 }, "deprecated": false, "initialIsOpen": false @@ -2754,7 +2799,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 130 + "lineNumber": 131 }, "deprecated": false, "initialIsOpen": false @@ -2771,7 +2816,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 119 + "lineNumber": 120 }, "deprecated": false, "initialIsOpen": false @@ -2788,7 +2833,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 120 + "lineNumber": 121 }, "deprecated": false, "initialIsOpen": false @@ -2813,7 +2858,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 301 + "lineNumber": 308 }, "deprecated": false, "initialIsOpen": false @@ -2861,7 +2906,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 190 + "lineNumber": 202 }, "deprecated": false, "initialIsOpen": false @@ -2878,7 +2923,21 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 189 + "lineNumber": 201 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "maps", + "id": "def-common.GET_MATCHING_INDEXES_PATH", + "type": "string", + "tags": [], + "label": "GET_MATCHING_INDEXES_PATH", + "description": [], + "source": { + "path": "x-pack/plugins/maps/common/constants.ts", + "lineNumber": 46 }, "deprecated": false, "initialIsOpen": false @@ -2906,7 +2965,7 @@ "description": [], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 44 + "lineNumber": 45 }, "deprecated": false, "initialIsOpen": false @@ -2923,7 +2982,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 303 + "lineNumber": 310 }, "deprecated": false, "initialIsOpen": false @@ -3002,7 +3061,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 56 + "lineNumber": 57 }, "deprecated": false, "initialIsOpen": false @@ -3019,7 +3078,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 53 + "lineNumber": 54 }, "deprecated": false, "initialIsOpen": false @@ -3036,7 +3095,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 52 + "lineNumber": 53 }, "deprecated": false, "initialIsOpen": false @@ -3053,7 +3112,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 150 + "lineNumber": 151 }, "deprecated": false, "initialIsOpen": false @@ -3070,7 +3129,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 149 + "lineNumber": 150 }, "deprecated": false, "initialIsOpen": false @@ -3135,7 +3194,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 305 + "lineNumber": 312 }, "deprecated": false, "initialIsOpen": false @@ -3152,7 +3211,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 111 + "lineNumber": 112 }, "deprecated": false, "initialIsOpen": false @@ -3169,7 +3228,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 122 + "lineNumber": 123 }, "deprecated": false, "initialIsOpen": false @@ -3203,7 +3262,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 110 + "lineNumber": 111 }, "deprecated": false, "initialIsOpen": false @@ -3220,7 +3279,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 48 + "lineNumber": 49 }, "deprecated": false, "initialIsOpen": false @@ -3237,7 +3296,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 47 + "lineNumber": 48 }, "deprecated": false, "initialIsOpen": false @@ -3254,7 +3313,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 49 + "lineNumber": 50 }, "deprecated": false, "initialIsOpen": false @@ -3271,7 +3330,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 58 + "lineNumber": 59 }, "deprecated": false, "initialIsOpen": false @@ -3288,7 +3347,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 218 + "lineNumber": 230 }, "deprecated": false, "initialIsOpen": false @@ -3305,7 +3364,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 148 + "lineNumber": 149 }, "deprecated": false, "initialIsOpen": false @@ -3322,7 +3381,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 299 + "lineNumber": 306 }, "deprecated": false, "initialIsOpen": false @@ -3398,7 +3457,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 266 + "lineNumber": 273 }, "deprecated": false, "initialIsOpen": false @@ -3415,7 +3474,24 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 188 + "lineNumber": 200 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "maps", + "id": "def-common.SUPPORTS_FEATURE_EDITING_REQUEST_ID", + "type": "string", + "tags": [], + "label": "SUPPORTS_FEATURE_EDITING_REQUEST_ID", + "description": [], + "signature": [ + "\"SUPPORTS_FEATURE_EDITING_REQUEST_ID\"" + ], + "source": { + "path": "x-pack/plugins/maps/common/constants.ts", + "lineNumber": 109 }, "deprecated": false, "initialIsOpen": false @@ -3432,7 +3508,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 192 + "lineNumber": 204 }, "deprecated": false, "initialIsOpen": false @@ -3449,7 +3525,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 114 + "lineNumber": 115 }, "deprecated": false, "initialIsOpen": false @@ -3465,7 +3541,7 @@ "description": [], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 152 + "lineNumber": 153 }, "deprecated": false, "children": [ @@ -3481,7 +3557,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 153 + "lineNumber": 154 }, "deprecated": false }, @@ -3497,7 +3573,7 @@ ], "source": { "path": "x-pack/plugins/maps/common/constants.ts", - "lineNumber": 154 + "lineNumber": 155 }, "deprecated": false } diff --git a/api_docs/maps.mdx b/api_docs/maps.mdx index efa7ddb5fddf5..e9d882d11c40f 100644 --- a/api_docs/maps.mdx +++ b/api_docs/maps.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'maps'] warning: 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. --- - import mapsObj from './maps.json'; @@ -19,7 +18,7 @@ import mapsObj from './maps.json'; | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 196 | 2 | 195 | 11 | +| 201 | 2 | 200 | 11 | ## Client diff --git a/api_docs/maps_ems.json b/api_docs/maps_ems.json index 347d2f28996b4..13db0329b4f77 100644 --- a/api_docs/maps_ems.json +++ b/api_docs/maps_ems.json @@ -822,7 +822,7 @@ "label": "MapsEmsConfig", "description": [], "signature": [ - "{ readonly includeElasticMapsService: boolean; readonly proxyElasticMapsServiceInMaps: boolean; readonly regionmap: Readonly<{} & { includeElasticMapsService: boolean; layers: Readonly<{} & { name: string; fields: Readonly<{} & { description: string; name: string; }>[]; meta: Readonly<{} & { feature_collection_path: string; }>; format: Readonly<{} & { type: string; }>; url: string; attribution: string; }>[]; }>; 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 manifestServiceUrl: string; readonly emsUrl: string; readonly emsFileApiUrl: string; readonly emsTileApiUrl: string; readonly emsLandingPageUrl: string; readonly emsFontLibraryUrl: string; readonly emsTileLayerId: Readonly<{} & { bright: string; desaturated: string; dark: string; }>; }" + "{ readonly includeElasticMapsService: boolean; readonly proxyElasticMapsServiceInMaps: boolean; readonly regionmap: Readonly<{} & { layers: Readonly<{} & { name: string; fields: Readonly<{} & { description: string; name: string; }>[]; meta: Readonly<{} & { feature_collection_path: string; }>; format: Readonly<{} & { type: string; }>; url: string; attribution: string; }>[]; includeElasticMapsService: boolean; }>; 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 manifestServiceUrl: string; readonly emsUrl: string; readonly emsFileApiUrl: string; readonly emsTileApiUrl: string; readonly emsLandingPageUrl: string; readonly emsFontLibraryUrl: string; readonly emsTileLayerId: Readonly<{} & { bright: string; desaturated: string; dark: string; }>; }" ], "source": { "path": "src/plugins/maps_ems/config.ts", @@ -914,7 +914,7 @@ "label": "config", "description": [], "signature": [ - "{ readonly includeElasticMapsService: boolean; readonly proxyElasticMapsServiceInMaps: boolean; readonly regionmap: Readonly<{} & { includeElasticMapsService: boolean; layers: Readonly<{} & { name: string; fields: Readonly<{} & { description: string; name: string; }>[]; meta: Readonly<{} & { feature_collection_path: string; }>; format: Readonly<{} & { type: string; }>; url: string; attribution: string; }>[]; }>; 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 manifestServiceUrl: string; readonly emsUrl: string; readonly emsFileApiUrl: string; readonly emsTileApiUrl: string; readonly emsLandingPageUrl: string; readonly emsFontLibraryUrl: string; readonly emsTileLayerId: Readonly<{} & { bright: string; desaturated: string; dark: string; }>; }" + "{ readonly includeElasticMapsService: boolean; readonly proxyElasticMapsServiceInMaps: boolean; readonly regionmap: Readonly<{} & { layers: Readonly<{} & { name: string; fields: Readonly<{} & { description: string; name: string; }>[]; meta: Readonly<{} & { feature_collection_path: string; }>; format: Readonly<{} & { type: string; }>; url: string; attribution: string; }>[]; includeElasticMapsService: boolean; }>; 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 manifestServiceUrl: string; readonly emsUrl: string; readonly emsFileApiUrl: string; readonly emsTileApiUrl: string; readonly emsLandingPageUrl: string; readonly emsFontLibraryUrl: string; readonly emsTileLayerId: Readonly<{} & { bright: string; desaturated: string; dark: string; }>; }" ], "source": { "path": "src/plugins/maps_ems/public/index.ts", @@ -1027,7 +1027,7 @@ "section": "def-server.PluginInitializerContext", "text": "PluginInitializerContext" }, - "[]; meta: Readonly<{} & { feature_collection_path: string; }>; format: Readonly<{} & { type: string; }>; url: string; attribution: string; }>[]; }>; 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; }>; }>; manifestServiceUrl: string; emsUrl: string; emsFileApiUrl: string; emsTileApiUrl: string; emsLandingPageUrl: string; emsFontLibraryUrl: string; emsTileLayerId: Readonly<{} & { bright: string; desaturated: string; dark: string; }>; }>>" + "[]; meta: Readonly<{} & { feature_collection_path: string; }>; format: Readonly<{} & { type: string; }>; url: string; attribution: string; }>[]; includeElasticMapsService: boolean; }>; 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; }>; }>; manifestServiceUrl: string; emsUrl: string; emsFileApiUrl: string; emsTileApiUrl: string; emsLandingPageUrl: string; emsFontLibraryUrl: string; emsTileLayerId: Readonly<{} & { bright: string; desaturated: string; dark: string; }>; }>>" ], "source": { "path": "src/plugins/maps_ems/server/index.ts", @@ -1066,7 +1066,7 @@ "section": "def-server.PluginInitializerContext", "text": "PluginInitializerContext" }, - "[]; meta: Readonly<{} & { feature_collection_path: string; }>; format: Readonly<{} & { type: string; }>; url: string; attribution: string; }>[]; }>; 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; }>; }>; manifestServiceUrl: string; emsUrl: string; emsFileApiUrl: string; emsTileApiUrl: string; emsLandingPageUrl: string; emsFontLibraryUrl: string; emsTileLayerId: Readonly<{} & { bright: string; desaturated: string; dark: string; }>; }>>" + "[]; meta: Readonly<{} & { feature_collection_path: string; }>; format: Readonly<{} & { type: string; }>; url: string; attribution: string; }>[]; includeElasticMapsService: boolean; }>; 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; }>; }>; manifestServiceUrl: string; emsUrl: string; emsFileApiUrl: string; emsTileApiUrl: string; emsLandingPageUrl: string; emsFontLibraryUrl: string; emsTileLayerId: Readonly<{} & { bright: string; desaturated: string; dark: string; }>; }>>" ], "source": { "path": "src/plugins/maps_ems/server/index.ts", @@ -1094,7 +1094,7 @@ "section": "def-server.CoreSetup", "text": "CoreSetup" }, - ") => { config: Readonly<{} & { includeElasticMapsService: boolean; proxyElasticMapsServiceInMaps: boolean; regionmap: Readonly<{} & { includeElasticMapsService: boolean; layers: Readonly<{} & { name: string; fields: Readonly<{} & { description: string; name: string; }>[]; meta: Readonly<{} & { feature_collection_path: string; }>; format: Readonly<{} & { type: string; }>; url: string; attribution: string; }>[]; }>; 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; }>; }>; manifestServiceUrl: string; emsUrl: string; emsFileApiUrl: string; emsTileApiUrl: string; emsLandingPageUrl: string; emsFontLibraryUrl: string; emsTileLayerId: Readonly<{} & { bright: string; desaturated: string; dark: string; }>; }>; }" + ") => { config: Readonly<{} & { includeElasticMapsService: boolean; proxyElasticMapsServiceInMaps: boolean; regionmap: Readonly<{} & { layers: Readonly<{} & { name: string; fields: Readonly<{} & { description: string; name: string; }>[]; meta: Readonly<{} & { feature_collection_path: string; }>; format: Readonly<{} & { type: string; }>; url: string; attribution: string; }>[]; includeElasticMapsService: boolean; }>; 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; }>; }>; manifestServiceUrl: string; emsUrl: string; emsFileApiUrl: string; emsTileApiUrl: string; emsLandingPageUrl: string; emsFontLibraryUrl: string; emsTileLayerId: Readonly<{} & { bright: string; desaturated: string; dark: string; }>; }>; }" ], "source": { "path": "src/plugins/maps_ems/server/index.ts", @@ -1174,7 +1174,7 @@ "label": "config", "description": [], "signature": [ - "{ readonly includeElasticMapsService: boolean; readonly proxyElasticMapsServiceInMaps: boolean; readonly regionmap: Readonly<{} & { includeElasticMapsService: boolean; layers: Readonly<{} & { name: string; fields: Readonly<{} & { description: string; name: string; }>[]; meta: Readonly<{} & { feature_collection_path: string; }>; format: Readonly<{} & { type: string; }>; url: string; attribution: string; }>[]; }>; 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 manifestServiceUrl: string; readonly emsUrl: string; readonly emsFileApiUrl: string; readonly emsTileApiUrl: string; readonly emsLandingPageUrl: string; readonly emsFontLibraryUrl: string; readonly emsTileLayerId: Readonly<{} & { bright: string; desaturated: string; dark: string; }>; }" + "{ readonly includeElasticMapsService: boolean; readonly proxyElasticMapsServiceInMaps: boolean; readonly regionmap: Readonly<{} & { layers: Readonly<{} & { name: string; fields: Readonly<{} & { description: string; name: string; }>[]; meta: Readonly<{} & { feature_collection_path: string; }>; format: Readonly<{} & { type: string; }>; url: string; attribution: string; }>[]; includeElasticMapsService: boolean; }>; 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 manifestServiceUrl: string; readonly emsUrl: string; readonly emsFileApiUrl: string; readonly emsTileApiUrl: string; readonly emsLandingPageUrl: string; readonly emsFontLibraryUrl: string; readonly emsTileLayerId: Readonly<{} & { bright: string; desaturated: string; dark: string; }>; }" ], "source": { "path": "src/plugins/maps_ems/server/index.ts", diff --git a/api_docs/maps_ems.mdx b/api_docs/maps_ems.mdx index 0abd9d511cf90..667c126b5197e 100644 --- a/api_docs/maps_ems.mdx +++ b/api_docs/maps_ems.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'mapsEms'] warning: 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. --- - import mapsEmsObj from './maps_ems.json'; diff --git a/api_docs/metrics_entities.mdx b/api_docs/metrics_entities.mdx index 182a78cd0ddc1..99c2045d683b3 100644 --- a/api_docs/metrics_entities.mdx +++ b/api_docs/metrics_entities.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'metricsEntities'] warning: 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. --- - import metricsEntitiesObj from './metrics_entities.json'; diff --git a/api_docs/ml.json b/api_docs/ml.json index 2e0e6364993d5..99038a2d1842d 100644 --- a/api_docs/ml.json +++ b/api_docs/ml.json @@ -1299,6 +1299,22 @@ "lineNumber": 38 }, "deprecated": false + }, + { + "parentPluginId": "ml", + "id": "def-public.MlSummaryJob.jobTags", + "type": "Object", + "tags": [], + "label": "jobTags", + "description": [], + "signature": [ + "{ [x: string]: string; }" + ], + "source": { + "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", + "lineNumber": 39 + }, + "deprecated": false } ], "initialIsOpen": false @@ -1563,7 +1579,7 @@ ], "source": { "path": "x-pack/plugins/ml/public/plugin.ts", - "lineNumber": 212 + "lineNumber": 203 }, "deprecated": false, "lifecycle": "start", @@ -2757,7 +2773,7 @@ "description": [], "source": { "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "lineNumber": 41 + "lineNumber": 42 }, "deprecated": false, "children": [ @@ -2770,7 +2786,7 @@ "description": [], "source": { "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "lineNumber": 42 + "lineNumber": 43 }, "deprecated": false }, @@ -2783,7 +2799,7 @@ "description": [], "source": { "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "lineNumber": 43 + "lineNumber": 44 }, "deprecated": false }, @@ -2796,7 +2812,7 @@ "description": [], "source": { "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "lineNumber": 44 + "lineNumber": 45 }, "deprecated": false }, @@ -2809,7 +2825,7 @@ "description": [], "source": { "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "lineNumber": 45 + "lineNumber": 46 }, "deprecated": false }, @@ -2822,7 +2838,7 @@ "description": [], "source": { "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "lineNumber": 46 + "lineNumber": 47 }, "deprecated": false }, @@ -2835,7 +2851,7 @@ "description": [], "source": { "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "lineNumber": 47 + "lineNumber": 48 }, "deprecated": false } @@ -3009,7 +3025,7 @@ ], "source": { "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "lineNumber": 52 + "lineNumber": 53 }, "deprecated": false, "children": [ @@ -3022,7 +3038,7 @@ "description": [], "source": { "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "lineNumber": 53 + "lineNumber": 54 }, "deprecated": false }, @@ -3038,7 +3054,7 @@ ], "source": { "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "lineNumber": 54 + "lineNumber": 55 }, "deprecated": false }, @@ -3054,7 +3070,7 @@ ], "source": { "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "lineNumber": 55 + "lineNumber": 56 }, "deprecated": false }, @@ -3070,7 +3086,7 @@ ], "source": { "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "lineNumber": 56 + "lineNumber": 57 }, "deprecated": false } @@ -3446,6 +3462,22 @@ "lineNumber": 38 }, "deprecated": false + }, + { + "parentPluginId": "ml", + "id": "def-server.MlSummaryJob.jobTags", + "type": "Object", + "tags": [], + "label": "jobTags", + "description": [], + "signature": [ + "{ [x: string]: string; }" + ], + "source": { + "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", + "lineNumber": 39 + }, + "deprecated": false } ], "initialIsOpen": false @@ -3896,7 +3928,7 @@ ], "source": { "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "lineNumber": 50 + "lineNumber": 51 }, "deprecated": false, "initialIsOpen": false diff --git a/api_docs/ml.mdx b/api_docs/ml.mdx index 4a9b98a326837..322cd6ea89927 100644 --- a/api_docs/ml.mdx +++ b/api_docs/ml.mdx @@ -8,18 +8,17 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'ml'] warning: 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. --- - import mlObj from './ml.json'; +This plugin provides access to the machine learning features provided by Elastic. - - +Contact [Machine Learning UI](https://github.com/orgs/elastic/teams/ml-ui) for questions regarding this plugin. **Code health stats** | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 274 | 10 | 270 | 32 | +| 276 | 10 | 272 | 32 | ## Client diff --git a/api_docs/monitoring.mdx b/api_docs/monitoring.mdx index e3dd2a0bbb6a5..1f60e4d1bcd4c 100644 --- a/api_docs/monitoring.mdx +++ b/api_docs/monitoring.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'monitoring'] warning: 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. --- - import monitoringObj from './monitoring.json'; diff --git a/api_docs/navigation.json b/api_docs/navigation.json index f04e195e95ec8..b78eb2882888b 100644 --- a/api_docs/navigation.json +++ b/api_docs/navigation.json @@ -546,7 +546,7 @@ "section": "def-public.SearchBarProps", "text": "SearchBarProps" }, - ", \"filters\" | \"query\" | \"placeholder\" | \"iconType\" | \"indexPatterns\" | \"isLoading\" | \"customSubmitButton\" | \"screenTitle\" | \"dataTestSubj\" | \"showQueryBar\" | \"showQueryInput\" | \"showFilterBar\" | \"showDatePicker\" | \"showAutoRefreshOnly\" | \"isRefreshPaused\" | \"refreshInterval\" | \"dateRangeFrom\" | \"dateRangeTo\" | \"showSaveQuery\" | \"savedQuery\" | \"onQueryChange\" | \"onQuerySubmit\" | \"onSaved\" | \"onSavedQueryUpdated\" | \"onClearSavedQuery\" | \"onRefresh\" | \"indicateNoData\" | \"isClearable\" | \"nonKqlMode\" | \"nonKqlModeHelpText\" | \"onFiltersUpdated\" | \"onRefreshChange\"> & { config?: ", + ", \"filters\" | \"query\" | \"placeholder\" | \"iconType\" | \"isClearable\" | \"isLoading\" | \"indexPatterns\" | \"customSubmitButton\" | \"screenTitle\" | \"dataTestSubj\" | \"showQueryBar\" | \"showQueryInput\" | \"showFilterBar\" | \"showDatePicker\" | \"showAutoRefreshOnly\" | \"isRefreshPaused\" | \"refreshInterval\" | \"dateRangeFrom\" | \"dateRangeTo\" | \"showSaveQuery\" | \"savedQuery\" | \"onQueryChange\" | \"onQuerySubmit\" | \"onSaved\" | \"onSavedQueryUpdated\" | \"onClearSavedQuery\" | \"onRefresh\" | \"indicateNoData\" | \"nonKqlMode\" | \"nonKqlModeHelpText\" | \"onFiltersUpdated\" | \"onRefreshChange\"> & { config?: ", { "pluginId": "navigation", "scope": "public", diff --git a/api_docs/navigation.mdx b/api_docs/navigation.mdx index b8b6f82162916..023fabfe95728 100644 --- a/api_docs/navigation.mdx +++ b/api_docs/navigation.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'navigation'] warning: 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. --- - import navigationObj from './navigation.json'; diff --git a/api_docs/newsfeed.json b/api_docs/newsfeed.json index eec5a9c5642e5..bceefa127faf0 100644 --- a/api_docs/newsfeed.json +++ b/api_docs/newsfeed.json @@ -13,7 +13,7 @@ "description": [], "source": { "path": "src/plugins/newsfeed/public/types.ts", - "lineNumber": 45 + "lineNumber": 49 }, "deprecated": false, "children": [ @@ -26,7 +26,7 @@ "description": [], "source": { "path": "src/plugins/newsfeed/public/types.ts", - "lineNumber": 46 + "lineNumber": 50 }, "deprecated": false }, @@ -39,7 +39,7 @@ "description": [], "source": { "path": "src/plugins/newsfeed/public/types.ts", - "lineNumber": 47 + "lineNumber": 51 }, "deprecated": false }, @@ -62,7 +62,7 @@ ], "source": { "path": "src/plugins/newsfeed/public/types.ts", - "lineNumber": 48 + "lineNumber": 52 }, "deprecated": false }, @@ -78,7 +78,7 @@ ], "source": { "path": "src/plugins/newsfeed/public/types.ts", - "lineNumber": 49 + "lineNumber": 53 }, "deprecated": false } @@ -94,7 +94,7 @@ "description": [], "source": { "path": "src/plugins/newsfeed/public/types.ts", - "lineNumber": 34 + "lineNumber": 38 }, "deprecated": false, "children": [ @@ -107,7 +107,7 @@ "description": [], "source": { "path": "src/plugins/newsfeed/public/types.ts", - "lineNumber": 35 + "lineNumber": 39 }, "deprecated": false }, @@ -120,7 +120,7 @@ "description": [], "source": { "path": "src/plugins/newsfeed/public/types.ts", - "lineNumber": 36 + "lineNumber": 40 }, "deprecated": false }, @@ -136,7 +136,7 @@ ], "source": { "path": "src/plugins/newsfeed/public/types.ts", - "lineNumber": 37 + "lineNumber": 41 }, "deprecated": false }, @@ -149,7 +149,7 @@ "description": [], "source": { "path": "src/plugins/newsfeed/public/types.ts", - "lineNumber": 38 + "lineNumber": 42 }, "deprecated": false }, @@ -165,7 +165,7 @@ ], "source": { "path": "src/plugins/newsfeed/public/types.ts", - "lineNumber": 39 + "lineNumber": 43 }, "deprecated": false }, @@ -181,7 +181,7 @@ ], "source": { "path": "src/plugins/newsfeed/public/types.ts", - "lineNumber": 40 + "lineNumber": 44 }, "deprecated": false }, @@ -197,7 +197,7 @@ ], "source": { "path": "src/plugins/newsfeed/public/types.ts", - "lineNumber": 41 + "lineNumber": 45 }, "deprecated": false }, @@ -210,7 +210,7 @@ "description": [], "source": { "path": "src/plugins/newsfeed/public/types.ts", - "lineNumber": 42 + "lineNumber": 46 }, "deprecated": false } @@ -228,7 +228,7 @@ "description": [], "source": { "path": "src/plugins/newsfeed/public/lib/api.ts", - "lineNumber": 16 + "lineNumber": 17 }, "deprecated": false, "initialIsOpen": false diff --git a/api_docs/newsfeed.mdx b/api_docs/newsfeed.mdx index 0c3fe2bbc6640..7a073230ba33f 100644 --- a/api_docs/newsfeed.mdx +++ b/api_docs/newsfeed.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'newsfeed'] warning: 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. --- - import newsfeedObj from './newsfeed.json'; diff --git a/api_docs/observability.json b/api_docs/observability.json index f59cf6407de75..ac70815fcddc0 100644 --- a/api_docs/observability.json +++ b/api_docs/observability.json @@ -79,7 +79,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/utils.ts", - "lineNumber": 38 + "lineNumber": 41 }, "deprecated": false, "children": [ @@ -103,7 +103,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/utils.ts", - "lineNumber": 38 + "lineNumber": 41 }, "deprecated": false, "isRequired": true @@ -120,7 +120,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/utils.ts", - "lineNumber": 38 + "lineNumber": 41 }, "deprecated": false, "isRequired": true @@ -149,11 +149,11 @@ "Formatter", "; }) => void; getFormatter: (typeId: string) => ", "Formatter", - " | undefined; } & { registerFormatter: () => void; }" + " | undefined; } & { getFormatter: () => () => string; registerFormatter: () => void; }" ], "source": { "path": "x-pack/plugins/observability/public/rules/observability_rule_type_registry_mock.ts", - "lineNumber": 14 + "lineNumber": 15 }, "deprecated": false, "children": [], @@ -174,7 +174,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/components/shared/index.tsx", - "lineNumber": 36 + "lineNumber": 37 }, "deprecated": false, "children": [ @@ -190,7 +190,44 @@ ], "source": { "path": "x-pack/plugins/observability/public/components/shared/index.tsx", - "lineNumber": 36 + "lineNumber": 37 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "observability", + "id": "def-public.FilterValueLabel", + "type": "Function", + "tags": [], + "label": "FilterValueLabel", + "description": [], + "signature": [ + "({\n label,\n field,\n value,\n negate,\n indexPattern,\n invertFilter,\n removeFilter,\n allowExclusion = true,\n}: Props) => JSX.Element | null" + ], + "source": { + "path": "x-pack/plugins/observability/public/components/shared/filter_value_label/filter_value_label.tsx", + "lineNumber": 50 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "observability", + "id": "def-public.FilterValueLabel.$1", + "type": "Object", + "tags": [], + "label": "{\n label,\n field,\n value,\n negate,\n indexPattern,\n invertFilter,\n removeFilter,\n allowExclusion = true,\n}", + "description": [], + "signature": [ + "Props" + ], + "source": { + "path": "x-pack/plugins/observability/public/components/shared/filter_value_label/filter_value_label.tsx", + "lineNumber": 50 }, "deprecated": false, "isRequired": true @@ -287,7 +324,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/components/shared/index.tsx", - "lineNumber": 16 + "lineNumber": 17 }, "deprecated": false, "children": [ @@ -303,7 +340,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/components/shared/index.tsx", - "lineNumber": 16 + "lineNumber": 17 }, "deprecated": false, "isRequired": true @@ -326,7 +363,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/components/shared/index.tsx", - "lineNumber": 26 + "lineNumber": 27 }, "deprecated": false, "children": [ @@ -342,7 +379,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/components/shared/index.tsx", - "lineNumber": 26 + "lineNumber": 27 }, "deprecated": false, "isRequired": true @@ -351,6 +388,42 @@ "returnComment": [], "initialIsOpen": false }, + { + "parentPluginId": "observability", + "id": "def-public.LazyAlertsFlyout", + "type": "Function", + "tags": [], + "label": "LazyAlertsFlyout", + "description": [], + "signature": [ + "React.ExoticComponent & { readonly _result: ({ alerts, isInApp, observabilityRuleTypeRegistry, onClose, selectedAlertId, }: AlertsFlyoutProps) => JSX.Element | null; }" + ], + "source": { + "path": "x-pack/plugins/observability/public/index.ts", + "lineNumber": 58 + }, + "deprecated": false, + "returnComment": [], + "children": [ + { + "parentPluginId": "observability", + "id": "def-public.props", + "type": "Uncategorized", + "tags": [], + "label": "props", + "description": [], + "signature": [ + "P" + ], + "source": { + "path": "node_modules/@types/react/index.d.ts", + "lineNumber": 359 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, { "parentPluginId": "observability", "id": "def-public.Section", @@ -591,7 +664,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/hooks/use_breadcrumbs.ts", - "lineNumber": 43 + "lineNumber": 37 }, "deprecated": false, "children": [ @@ -608,7 +681,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/hooks/use_breadcrumbs.ts", - "lineNumber": 43 + "lineNumber": 37 }, "deprecated": false, "isRequired": true @@ -1010,7 +1083,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 114 + "lineNumber": 125 }, "deprecated": false, "children": [ @@ -1042,7 +1115,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 115 + "lineNumber": 126 }, "deprecated": false }, @@ -1066,7 +1139,52 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 119 + "lineNumber": 130 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "observability", + "id": "def-public.APMHasDataResponse", + "type": "Interface", + "tags": [], + "label": "APMHasDataResponse", + "description": [], + "source": { + "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", + "lineNumber": 50 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "observability", + "id": "def-public.APMHasDataResponse.hasData", + "type": "boolean", + "tags": [], + "label": "hasData", + "description": [], + "source": { + "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", + "lineNumber": 51 + }, + "deprecated": false + }, + { + "parentPluginId": "observability", + "id": "def-public.APMHasDataResponse.indices", + "type": "Object", + "tags": [], + "label": "indices", + "description": [], + "signature": [ + "ApmIndicesConfig" + ], + "source": { + "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", + "lineNumber": 52 }, "deprecated": false } @@ -1082,7 +1200,7 @@ "description": [], "source": { "path": "x-pack/plugins/observability/public/index.ts", - "lineNumber": 24 + "lineNumber": 25 }, "deprecated": false, "children": [ @@ -1098,7 +1216,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/index.ts", - "lineNumber": 25 + "lineNumber": 26 }, "deprecated": false } @@ -1114,7 +1232,7 @@ "description": [], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 15 + "lineNumber": 17 }, "deprecated": false, "children": [ @@ -1127,7 +1245,7 @@ "description": [], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 16 + "lineNumber": 18 }, "deprecated": false }, @@ -1143,7 +1261,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 17 + "lineNumber": 19 }, "deprecated": false } @@ -1169,7 +1287,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 57 + "lineNumber": 68 }, "deprecated": false, "children": [ @@ -1201,7 +1319,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 60 + "lineNumber": 71 }, "deprecated": false, "returnComment": [], @@ -1224,7 +1342,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 45 + "lineNumber": 56 }, "deprecated": false } @@ -1258,7 +1376,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 61 + "lineNumber": 72 }, "deprecated": false, "returnComment": [], @@ -1282,7 +1400,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 49 + "lineNumber": 60 }, "deprecated": false } @@ -1300,7 +1418,7 @@ "description": [], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 24 + "lineNumber": 26 }, "deprecated": false, "children": [ @@ -1316,7 +1434,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 25 + "lineNumber": 27 }, "deprecated": false }, @@ -1332,7 +1450,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 26 + "lineNumber": 28 }, "deprecated": false }, @@ -1345,7 +1463,7 @@ "description": [], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 27 + "lineNumber": 29 }, "deprecated": false }, @@ -1361,7 +1479,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 28 + "lineNumber": 30 }, "deprecated": false } @@ -1377,7 +1495,7 @@ "description": [], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 64 + "lineNumber": 75 }, "deprecated": false, "children": [ @@ -1390,7 +1508,7 @@ "description": [], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 65 + "lineNumber": 76 }, "deprecated": false } @@ -1406,7 +1524,7 @@ "description": [], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 31 + "lineNumber": 33 }, "deprecated": false, "children": [ @@ -1422,7 +1540,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 32 + "lineNumber": 34 }, "deprecated": false } @@ -1438,7 +1556,7 @@ "description": [], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 35 + "lineNumber": 37 }, "deprecated": false, "children": [ @@ -1451,20 +1569,7 @@ "description": [], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 36 - }, - "deprecated": false - }, - { - "parentPluginId": "observability", - "id": "def-public.HasDataResponse.indices", - "type": "string", - "tags": [], - "label": "indices", - "description": [], - "source": { - "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 37 + "lineNumber": 38 }, "deprecated": false } @@ -1497,7 +1602,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 68 + "lineNumber": 79 }, "deprecated": false, "children": [ @@ -1521,7 +1626,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 69 + "lineNumber": 80 }, "deprecated": false }, @@ -1545,7 +1650,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 70 + "lineNumber": 81 }, "deprecated": false } @@ -1578,7 +1683,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 97 + "lineNumber": 108 }, "deprecated": false, "children": [ @@ -1602,7 +1707,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 98 + "lineNumber": 109 }, "deprecated": false, "returnComment": [], @@ -1616,7 +1721,7 @@ "description": [], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 98 + "lineNumber": 109 }, "deprecated": false }, @@ -1629,7 +1734,7 @@ "description": [], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 98 + "lineNumber": 109 }, "deprecated": false } @@ -1654,7 +1759,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 99 + "lineNumber": 110 }, "deprecated": false } @@ -1670,7 +1775,7 @@ "description": [], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 76 + "lineNumber": 87 }, "deprecated": false, "children": [ @@ -1683,7 +1788,7 @@ "description": [], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 77 + "lineNumber": 88 }, "deprecated": false }, @@ -1699,7 +1804,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 78 + "lineNumber": 89 }, "deprecated": false }, @@ -1715,7 +1820,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 79 + "lineNumber": 90 }, "deprecated": false }, @@ -1731,7 +1836,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 80 + "lineNumber": 91 }, "deprecated": false }, @@ -1747,7 +1852,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 81 + "lineNumber": 92 }, "deprecated": false }, @@ -1763,7 +1868,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 82 + "lineNumber": 93 }, "deprecated": false }, @@ -1779,7 +1884,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 83 + "lineNumber": 94 }, "deprecated": false }, @@ -1795,7 +1900,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 84 + "lineNumber": 95 }, "deprecated": false }, @@ -1811,7 +1916,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 85 + "lineNumber": 96 }, "deprecated": false }, @@ -1827,7 +1932,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 86 + "lineNumber": 97 }, "deprecated": false }, @@ -1843,7 +1948,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 87 + "lineNumber": 98 }, "deprecated": false } @@ -1859,7 +1964,7 @@ "description": [], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 128 + "lineNumber": 139 }, "deprecated": false, "children": [ @@ -1881,7 +1986,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 129 + "lineNumber": 140 }, "deprecated": false }, @@ -1903,7 +2008,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 130 + "lineNumber": 141 }, "deprecated": false }, @@ -1925,7 +2030,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 131 + "lineNumber": 142 }, "deprecated": false }, @@ -1947,7 +2052,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 132 + "lineNumber": 143 }, "deprecated": false }, @@ -1969,7 +2074,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 133 + "lineNumber": 144 }, "deprecated": false } @@ -1985,20 +2090,29 @@ "description": [], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 136 + "lineNumber": 147 }, "deprecated": false, "children": [ { "parentPluginId": "observability", "id": "def-public.ObservabilityHasDataResponse.apm", - "type": "boolean", + "type": "Object", "tags": [], "label": "apm", "description": [], + "signature": [ + { + "pluginId": "observability", + "scope": "public", + "docId": "kibObservabilityPluginApi", + "section": "def-public.APMHasDataResponse", + "text": "APMHasDataResponse" + } + ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 137 + "lineNumber": 148 }, "deprecated": false }, @@ -2011,7 +2125,7 @@ "description": [], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 138 + "lineNumber": 149 }, "deprecated": false }, @@ -2024,7 +2138,7 @@ "description": [], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 139 + "lineNumber": 150 }, "deprecated": false }, @@ -2040,13 +2154,13 @@ "pluginId": "observability", "scope": "public", "docId": "kibObservabilityPluginApi", - "section": "def-public.HasDataResponse", - "text": "HasDataResponse" + "section": "def-public.SyntheticsHasDataResponse", + "text": "SyntheticsHasDataResponse" } ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 140 + "lineNumber": 151 }, "deprecated": false }, @@ -2068,7 +2182,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 141 + "lineNumber": 152 }, "deprecated": false } @@ -2084,7 +2198,7 @@ "description": [], "source": { "path": "x-pack/plugins/observability/public/plugin.ts", - "lineNumber": 42 + "lineNumber": 47 }, "deprecated": false, "children": [ @@ -2106,7 +2220,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/plugin.ts", - "lineNumber": 43 + "lineNumber": 48 }, "deprecated": false }, @@ -2128,7 +2242,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/plugin.ts", - "lineNumber": 44 + "lineNumber": 49 }, "deprecated": false }, @@ -2151,7 +2265,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/plugin.ts", - "lineNumber": 45 + "lineNumber": 50 }, "deprecated": false } @@ -2167,10 +2281,32 @@ "description": [], "source": { "path": "x-pack/plugins/observability/public/plugin.ts", - "lineNumber": 48 + "lineNumber": 53 }, "deprecated": false, "children": [ + { + "parentPluginId": "observability", + "id": "def-public.ObservabilityPublicPluginsStart.cases", + "type": "Object", + "tags": [], + "label": "cases", + "description": [], + "signature": [ + { + "pluginId": "cases", + "scope": "public", + "docId": "kibCasesPluginApi", + "section": "def-public.CasesUiStart", + "text": "CasesUiStart" + } + ], + "source": { + "path": "x-pack/plugins/observability/public/plugin.ts", + "lineNumber": 54 + }, + "deprecated": false + }, { "parentPluginId": "observability", "id": "def-public.ObservabilityPublicPluginsStart.home", @@ -2190,7 +2326,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/plugin.ts", - "lineNumber": 49 + "lineNumber": 55 }, "deprecated": false }, @@ -2212,7 +2348,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/plugin.ts", - "lineNumber": 50 + "lineNumber": 56 }, "deprecated": false }, @@ -2234,7 +2370,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/plugin.ts", - "lineNumber": 51 + "lineNumber": 57 }, "deprecated": false }, @@ -2256,7 +2392,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/plugin.ts", - "lineNumber": 52 + "lineNumber": 58 }, "deprecated": false } @@ -2272,7 +2408,7 @@ "description": [], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 20 + "lineNumber": 22 }, "deprecated": false, "children": [ @@ -2295,7 +2431,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 21 + "lineNumber": 23 }, "deprecated": false } @@ -2311,7 +2447,7 @@ "description": [], "source": { "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "lineNumber": 82 + "lineNumber": 71 }, "deprecated": false, "children": [ @@ -2327,7 +2463,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "lineNumber": 83 + "lineNumber": 72 }, "deprecated": false }, @@ -2343,7 +2479,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "lineNumber": 87 + "lineNumber": 76 }, "deprecated": false }, @@ -2360,7 +2496,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "lineNumber": 88 + "lineNumber": 77 }, "deprecated": false }, @@ -2376,7 +2512,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "lineNumber": 89 + "lineNumber": 78 }, "deprecated": false }, @@ -2388,11 +2524,11 @@ "label": "reportType", "description": [], "signature": [ - "\"logs\" | \"cpu\" | \"pld\" | \"kpi\" | \"cwv\" | \"upd\" | \"upp\" | \"svl\" | \"tpt\" | \"mem\" | \"nwk\"" + "\"data-distribution\" | \"kpi-over-time\" | \"core-web-vitals\" | \"device-data-distribution\"" ], "source": { "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "lineNumber": 90 + "lineNumber": 79 }, "deprecated": false }, @@ -2404,11 +2540,11 @@ "label": "operationType", "description": [], "signature": [ - "\"range\" | \"filters\" | \"count\" | \"max\" | \"min\" | \"date_histogram\" | \"sum\" | \"average\" | \"percentile\" | \"terms\" | \"median\" | \"cumulative_sum\" | \"moving_average\" | \"math\" | \"counter_rate\" | \"differences\" | \"unique_count\" | \"last_value\" | \"formula\" | undefined" + "\"range\" | \"filters\" | \"count\" | \"max\" | \"min\" | \"date_histogram\" | \"sum\" | \"average\" | \"percentile\" | \"terms\" | \"median\" | \"cumulative_sum\" | \"moving_average\" | \"math\" | \"overall_sum\" | \"overall_min\" | \"overall_max\" | \"overall_average\" | \"counter_rate\" | \"differences\" | \"unique_count\" | \"last_value\" | \"formula\" | undefined" ], "source": { "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "lineNumber": 91 + "lineNumber": 80 }, "deprecated": false }, @@ -2420,11 +2556,11 @@ "label": "dataType", "description": [], "signature": [ - "\"apm\" | \"infra_metrics\" | \"infra_logs\" | \"synthetics\" | \"ux\"" + "\"mobile\" | \"apm\" | \"infra_metrics\" | \"infra_logs\" | \"synthetics\" | \"ux\"" ], "source": { "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "lineNumber": 92 + "lineNumber": 81 }, "deprecated": false }, @@ -2440,7 +2576,39 @@ ], "source": { "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "lineNumber": 93 + "lineNumber": 82 + }, + "deprecated": false + }, + { + "parentPluginId": "observability", + "id": "def-public.SeriesUrl.selectedMetricField", + "type": "string", + "tags": [], + "label": "selectedMetricField", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", + "lineNumber": 83 + }, + "deprecated": false + }, + { + "parentPluginId": "observability", + "id": "def-public.SeriesUrl.isNew", + "type": "CompoundType", + "tags": [], + "label": "isNew", + "description": [], + "signature": [ + "boolean | undefined" + ], + "source": { + "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", + "lineNumber": 84 }, "deprecated": false } @@ -2456,7 +2624,7 @@ "description": [], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 10 + "lineNumber": 12 }, "deprecated": false, "children": [ @@ -2472,7 +2640,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 11 + "lineNumber": 13 }, "deprecated": false }, @@ -2485,7 +2653,53 @@ "description": [], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 12 + "lineNumber": 14 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "observability", + "id": "def-public.SyntheticsHasDataResponse", + "type": "Interface", + "tags": [], + "label": "SyntheticsHasDataResponse", + "description": [], + "signature": [ + { + "pluginId": "observability", + "scope": "public", + "docId": "kibObservabilityPluginApi", + "section": "def-public.SyntheticsHasDataResponse", + "text": "SyntheticsHasDataResponse" + }, + " extends ", + { + "pluginId": "observability", + "scope": "public", + "docId": "kibObservabilityPluginApi", + "section": "def-public.HasDataResponse", + "text": "HasDataResponse" + } + ], + "source": { + "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", + "lineNumber": 46 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "observability", + "id": "def-public.SyntheticsHasDataResponse.indices", + "type": "string", + "tags": [], + "label": "indices", + "description": [], + "source": { + "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", + "lineNumber": 47 }, "deprecated": false } @@ -2518,7 +2732,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 102 + "lineNumber": 113 }, "deprecated": false, "children": [ @@ -2558,7 +2772,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 103 + "lineNumber": 114 }, "deprecated": false }, @@ -2590,7 +2804,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 108 + "lineNumber": 119 }, "deprecated": false } @@ -2623,7 +2837,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 124 + "lineNumber": 135 }, "deprecated": false, "children": [ @@ -2645,7 +2859,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 125 + "lineNumber": 136 }, "deprecated": false } @@ -2678,7 +2892,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 40 + "lineNumber": 41 }, "deprecated": false, "children": [ @@ -2694,7 +2908,23 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 41 + "lineNumber": 42 + }, + "deprecated": false + }, + { + "parentPluginId": "observability", + "id": "def-public.UXHasDataResponse.indices", + "type": "string", + "tags": [], + "label": "indices", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", + "lineNumber": 43 }, "deprecated": false } @@ -2962,7 +3192,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 44 + "lineNumber": 55 }, "deprecated": false, "initialIsOpen": false @@ -2995,7 +3225,32 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 48 + "lineNumber": 59 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "observability", + "id": "def-public.LazyObservabilityPageTemplateProps", + "type": "Type", + "tags": [], + "label": "LazyObservabilityPageTemplateProps", + "description": [], + "signature": [ + "{ children?: React.ReactNode; 'data-test-subj'?: string | undefined; paddingSize?: \"none\" | \"m\" | \"s\" | \"l\" | undefined; restrictWidth?: string | number | boolean | undefined; template?: \"default\" | \"empty\" | \"centeredBody\" | \"centeredContent\" | undefined; pageHeader?: ", + "EuiPageHeaderProps", + " | undefined; isEmptyState?: boolean | undefined; pageBodyProps?: ", + "EuiPageBodyProps", + "<\"main\"> | undefined; pageContentProps?: ", + "EuiPageContentProps", + " | undefined; pageContentBodyProps?: ", + "EuiPageContentBodyProps", + " | undefined; }" + ], + "source": { + "path": "x-pack/plugins/observability/public/components/shared/page_template/lazy_page_template.tsx", + "lineNumber": 16 }, "deprecated": false, "initialIsOpen": false @@ -3012,7 +3267,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 74 + "lineNumber": 85 }, "deprecated": false, "initialIsOpen": false @@ -3029,7 +3284,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 52 + "lineNumber": 63 }, "deprecated": false, "initialIsOpen": false @@ -3119,7 +3374,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "lineNumber": 73 + "lineNumber": 84 }, "deprecated": false, "initialIsOpen": false @@ -3204,7 +3459,7 @@ ], "source": { "path": "x-pack/plugins/observability/public/plugin.ts", - "lineNumber": 40 + "lineNumber": 45 }, "deprecated": false, "lifecycle": "setup", @@ -3218,13 +3473,19 @@ "label": "ObservabilityPublicStart", "description": [], "signature": [ - "{ navigation: { PageTemplate: (pageTemplateProps: ", - "WrappedPageTemplateProps", - ") => JSX.Element; }; }" + "{ navigation: { PageTemplate: (pageTemplateProps: Pick<", + { + "pluginId": "kibanaReact", + "scope": "public", + "docId": "kibKibanaReactPluginApi", + "section": "def-public.KibanaPageTemplateProps", + "text": "KibanaPageTemplateProps" + }, + ", \"children\" | \"data-test-subj\" | \"paddingSize\" | \"restrictWidth\" | \"template\" | \"pageHeader\" | \"isEmptyState\" | \"pageBodyProps\" | \"pageContentProps\" | \"pageContentBodyProps\">) => JSX.Element; }; }" ], "source": { "path": "x-pack/plugins/observability/public/plugin.ts", - "lineNumber": 55 + "lineNumber": 61 }, "deprecated": false, "lifecycle": "start", @@ -4182,7 +4443,7 @@ ], "source": { "path": "x-pack/plugins/observability/server/plugin.ts", - "lineNumber": 21 + "lineNumber": 29 }, "deprecated": false, "lifecycle": "setup", @@ -4194,7 +4455,59 @@ "functions": [], "interfaces": [], "enums": [], - "misc": [], + "misc": [ + { + "parentPluginId": "observability", + "id": "def-common.casesFeatureId", + "type": "string", + "tags": [], + "label": "casesFeatureId", + "description": [], + "signature": [ + "\"observabilityCases\"" + ], + "source": { + "path": "x-pack/plugins/observability/common/index.ts", + "lineNumber": 8 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "observability", + "id": "def-common.observabilityAppId", + "type": "string", + "tags": [], + "label": "observabilityAppId", + "description": [], + "signature": [ + "\"observability-overview\"" + ], + "source": { + "path": "x-pack/plugins/observability/common/index.ts", + "lineNumber": 13 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "observability", + "id": "def-common.observabilityFeatureId", + "type": "string", + "tags": [], + "label": "observabilityFeatureId", + "description": [], + "signature": [ + "\"observability\"" + ], + "source": { + "path": "x-pack/plugins/observability/common/index.ts", + "lineNumber": 16 + }, + "deprecated": false, + "initialIsOpen": false + } + ], "objects": [] } } \ No newline at end of file diff --git a/api_docs/observability.mdx b/api_docs/observability.mdx index 6787e3f0238c8..6fc08a1a70e0f 100644 --- a/api_docs/observability.mdx +++ b/api_docs/observability.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'observability'] warning: 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. --- - import observabilityObj from './observability.json'; @@ -19,7 +18,7 @@ import observabilityObj from './observability.json'; | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 194 | 0 | 194 | 10 | +| 210 | 0 | 210 | 10 | ## Client @@ -58,3 +57,8 @@ import observabilityObj from './observability.json'; ### Consts, variables and types +## Common + +### Consts, variables and types + + diff --git a/api_docs/osquery.json b/api_docs/osquery.json index 88a7e3ec7477b..c58c04f977d57 100644 --- a/api_docs/osquery.json +++ b/api_docs/osquery.json @@ -16,7 +16,7 @@ "description": [], "source": { "path": "x-pack/plugins/osquery/public/types.ts", - "lineNumber": 20 + "lineNumber": 21 }, "deprecated": false, "children": [], @@ -32,7 +32,7 @@ "description": [], "source": { "path": "x-pack/plugins/osquery/public/types.ts", - "lineNumber": 22 + "lineNumber": 23 }, "deprecated": false, "children": [], @@ -56,7 +56,7 @@ "description": [], "source": { "path": "x-pack/plugins/osquery/server/types.ts", - "lineNumber": 17 + "lineNumber": 19 }, "deprecated": false, "children": [], @@ -72,7 +72,7 @@ "description": [], "source": { "path": "x-pack/plugins/osquery/server/types.ts", - "lineNumber": 19 + "lineNumber": 21 }, "deprecated": false, "children": [], diff --git a/api_docs/osquery.mdx b/api_docs/osquery.mdx index a981f8f4b8c65..fb6531e498406 100644 --- a/api_docs/osquery.mdx +++ b/api_docs/osquery.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'osquery'] warning: 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. --- - import osqueryObj from './osquery.json'; diff --git a/api_docs/presentation_util.json b/api_docs/presentation_util.json index bde8373e4450e..d72410f9322c0 100644 --- a/api_docs/presentation_util.json +++ b/api_docs/presentation_util.json @@ -791,7 +791,7 @@ "label": "isProjectEnabled", "description": [], "signature": [ - "(id: \"labs:presentation:timeToPresent\" | \"labs:canvas:useDataService\" | \"labs:dashboard:deferBelowFold\") => boolean" + "(id: \"labs:presentation:timeToPresent\" | \"labs:dashboard:deferBelowFold\") => boolean" ], "source": { "path": "src/plugins/presentation_util/public/services/labs.ts", @@ -808,7 +808,7 @@ "label": "id", "description": [], "signature": [ - "\"labs:presentation:timeToPresent\" | \"labs:canvas:useDataService\" | \"labs:dashboard:deferBelowFold\"" + "\"labs:presentation:timeToPresent\" | \"labs:dashboard:deferBelowFold\"" ], "source": { "path": "src/plugins/presentation_util/public/services/labs.ts", @@ -826,7 +826,7 @@ "label": "getProjectIDs", "description": [], "signature": [ - "() => readonly [\"labs:presentation:timeToPresent\", \"labs:canvas:useDataService\", \"labs:dashboard:deferBelowFold\"]" + "() => readonly [\"labs:presentation:timeToPresent\", \"labs:dashboard:deferBelowFold\"]" ], "source": { "path": "src/plugins/presentation_util/public/services/labs.ts", @@ -844,7 +844,7 @@ "label": "getProject", "description": [], "signature": [ - "(id: \"labs:presentation:timeToPresent\" | \"labs:canvas:useDataService\" | \"labs:dashboard:deferBelowFold\") => ", + "(id: \"labs:presentation:timeToPresent\" | \"labs:dashboard:deferBelowFold\") => ", { "pluginId": "presentationUtil", "scope": "common", @@ -868,7 +868,7 @@ "label": "id", "description": [], "signature": [ - "\"labs:presentation:timeToPresent\" | \"labs:canvas:useDataService\" | \"labs:dashboard:deferBelowFold\"" + "\"labs:presentation:timeToPresent\" | \"labs:dashboard:deferBelowFold\"" ], "source": { "path": "src/plugins/presentation_util/public/services/labs.ts", @@ -886,7 +886,7 @@ "label": "getProjects", "description": [], "signature": [ - "(solutions?: (\"dashboard\" | \"canvas\" | \"presentation\")[] | undefined) => Record<\"labs:presentation:timeToPresent\" | \"labs:canvas:useDataService\" | \"labs:dashboard:deferBelowFold\", ", + "(solutions?: (\"dashboard\" | \"canvas\" | \"presentation\")[] | undefined) => Record<\"labs:presentation:timeToPresent\" | \"labs:dashboard:deferBelowFold\", ", { "pluginId": "presentationUtil", "scope": "common", @@ -929,7 +929,7 @@ "label": "setProjectStatus", "description": [], "signature": [ - "(id: \"labs:presentation:timeToPresent\" | \"labs:canvas:useDataService\" | \"labs:dashboard:deferBelowFold\", env: \"kibana\" | \"browser\" | \"session\", status: boolean) => void" + "(id: \"labs:presentation:timeToPresent\" | \"labs:dashboard:deferBelowFold\", env: \"kibana\" | \"browser\" | \"session\", status: boolean) => void" ], "source": { "path": "src/plugins/presentation_util/public/services/labs.ts", @@ -946,7 +946,7 @@ "label": "id", "description": [], "signature": [ - "\"labs:presentation:timeToPresent\" | \"labs:canvas:useDataService\" | \"labs:dashboard:deferBelowFold\"" + "\"labs:presentation:timeToPresent\" | \"labs:dashboard:deferBelowFold\"" ], "source": { "path": "src/plugins/presentation_util/public/services/labs.ts", @@ -1261,7 +1261,7 @@ ], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 94 + "lineNumber": 77 }, "deprecated": false, "initialIsOpen": false @@ -1274,11 +1274,11 @@ "label": "ProjectID", "description": [], "signature": [ - "\"labs:presentation:timeToPresent\" | \"labs:canvas:useDataService\" | \"labs:dashboard:deferBelowFold\"" + "\"labs:presentation:timeToPresent\" | \"labs:dashboard:deferBelowFold\"" ], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 70 + "lineNumber": 53 }, "deprecated": false, "initialIsOpen": false @@ -1293,11 +1293,11 @@ "label": "projectIDs", "description": [], "signature": [ - "readonly [\"labs:presentation:timeToPresent\", \"labs:canvas:useDataService\", \"labs:dashboard:deferBelowFold\"]" + "readonly [\"labs:presentation:timeToPresent\", \"labs:dashboard:deferBelowFold\"]" ], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 16 + "lineNumber": 15 }, "deprecated": false, "initialIsOpen": false @@ -1447,11 +1447,11 @@ "label": "getProjectIDs", "description": [], "signature": [ - "() => readonly [\"labs:presentation:timeToPresent\", \"labs:canvas:useDataService\", \"labs:dashboard:deferBelowFold\"]" + "() => readonly [\"labs:presentation:timeToPresent\", \"labs:dashboard:deferBelowFold\"]" ], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 96 + "lineNumber": 79 }, "deprecated": false, "children": [], @@ -1478,7 +1478,7 @@ ], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 98 + "lineNumber": 81 }, "deprecated": false, "children": [ @@ -1494,7 +1494,7 @@ ], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 98 + "lineNumber": 81 }, "deprecated": false, "isRequired": true @@ -1517,7 +1517,7 @@ ], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 98 + "lineNumber": 81 }, "deprecated": false, "isRequired": true @@ -1537,7 +1537,7 @@ "description": [], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 84 + "lineNumber": 67 }, "deprecated": false, "children": [ @@ -1549,11 +1549,11 @@ "label": "id", "description": [], "signature": [ - "\"labs:presentation:timeToPresent\" | \"labs:canvas:useDataService\" | \"labs:dashboard:deferBelowFold\"" + "\"labs:presentation:timeToPresent\" | \"labs:dashboard:deferBelowFold\"" ], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 85 + "lineNumber": 68 }, "deprecated": false }, @@ -1566,7 +1566,7 @@ "description": [], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 86 + "lineNumber": 69 }, "deprecated": false }, @@ -1579,7 +1579,7 @@ "description": [], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 87 + "lineNumber": 70 }, "deprecated": false }, @@ -1592,7 +1592,7 @@ "description": [], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 88 + "lineNumber": 71 }, "deprecated": false }, @@ -1608,7 +1608,7 @@ ], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 89 + "lineNumber": 72 }, "deprecated": false }, @@ -1621,7 +1621,7 @@ "description": [], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 90 + "lineNumber": 73 }, "deprecated": false }, @@ -1637,7 +1637,7 @@ ], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 91 + "lineNumber": 74 }, "deprecated": false } @@ -1659,7 +1659,7 @@ ], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 14 + "lineNumber": 13 }, "deprecated": false, "initialIsOpen": false @@ -1676,7 +1676,7 @@ ], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 71 + "lineNumber": 54 }, "deprecated": false, "initialIsOpen": false @@ -1693,7 +1693,7 @@ ], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 74 + "lineNumber": 57 }, "deprecated": false, "initialIsOpen": false @@ -1776,7 +1776,7 @@ ], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 94 + "lineNumber": 77 }, "deprecated": false, "initialIsOpen": false @@ -1789,11 +1789,11 @@ "label": "ProjectID", "description": [], "signature": [ - "\"labs:presentation:timeToPresent\" | \"labs:canvas:useDataService\" | \"labs:dashboard:deferBelowFold\"" + "\"labs:presentation:timeToPresent\" | \"labs:dashboard:deferBelowFold\"" ], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 70 + "lineNumber": 53 }, "deprecated": false, "initialIsOpen": false @@ -1817,7 +1817,7 @@ ], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 78 + "lineNumber": 61 }, "deprecated": false, "initialIsOpen": false @@ -1834,7 +1834,7 @@ ], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 72 + "lineNumber": 55 }, "deprecated": false, "initialIsOpen": false @@ -1849,23 +1849,6 @@ "signature": [ "\"labs:presentation:timeToPresent\"" ], - "source": { - "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 13 - }, - "deprecated": false, - "initialIsOpen": false - }, - { - "parentPluginId": "presentationUtil", - "id": "def-common.USE_DATA_SERVICE", - "type": "string", - "tags": [], - "label": "USE_DATA_SERVICE", - "description": [], - "signature": [ - "\"labs:canvas:useDataService\"" - ], "source": { "path": "src/plugins/presentation_util/common/labs.ts", "lineNumber": 12 @@ -1887,7 +1870,7 @@ ], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 17 + "lineNumber": 16 }, "deprecated": false, "initialIsOpen": false @@ -1900,11 +1883,11 @@ "label": "projectIDs", "description": [], "signature": [ - "readonly [\"labs:presentation:timeToPresent\", \"labs:canvas:useDataService\", \"labs:dashboard:deferBelowFold\"]" + "readonly [\"labs:presentation:timeToPresent\", \"labs:dashboard:deferBelowFold\"]" ], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 16 + "lineNumber": 15 }, "deprecated": false, "initialIsOpen": false @@ -1920,7 +1903,7 @@ ], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 24 + "lineNumber": 23 }, "deprecated": false, "children": [ @@ -1933,7 +1916,7 @@ "description": [], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 25 + "lineNumber": 24 }, "deprecated": false, "children": [ @@ -1949,7 +1932,7 @@ ], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 26 + "lineNumber": 25 }, "deprecated": false }, @@ -1965,7 +1948,7 @@ ], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 27 + "lineNumber": 26 }, "deprecated": false }, @@ -1981,7 +1964,7 @@ ], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 28 + "lineNumber": 27 }, "deprecated": false }, @@ -1997,7 +1980,7 @@ ], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 29 + "lineNumber": 28 }, "deprecated": false }, @@ -2010,7 +1993,7 @@ "description": [], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 30 + "lineNumber": 29 }, "deprecated": false }, @@ -2023,7 +2006,7 @@ "description": [], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 33 + "lineNumber": 32 }, "deprecated": false }, @@ -2039,128 +2022,7 @@ ], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 36 - }, - "deprecated": false - } - ] - }, - { - "parentPluginId": "presentationUtil", - "id": "def-common.projects.USE_DATA_SERVICE", - "type": "Object", - "tags": [], - "label": "[USE_DATA_SERVICE]", - "description": [], - "source": { - "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 38 - }, - "deprecated": false, - "children": [ - { - "parentPluginId": "presentationUtil", - "id": "def-common.projects.USE_DATA_SERVICE.id", - "type": "string", - "tags": [], - "label": "id", - "description": [], - "signature": [ - "\"labs:canvas:useDataService\"" - ], - "source": { - "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 39 - }, - "deprecated": false - }, - { - "parentPluginId": "presentationUtil", - "id": "def-common.projects.USE_DATA_SERVICE.isActive", - "type": "boolean", - "tags": [], - "label": "isActive", - "description": [], - "signature": [ - "true" - ], - "source": { - "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 40 - }, - "deprecated": false - }, - { - "parentPluginId": "presentationUtil", - "id": "def-common.projects.USE_DATA_SERVICE.isDisplayed", - "type": "boolean", - "tags": [], - "label": "isDisplayed", - "description": [], - "signature": [ - "true" - ], - "source": { - "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 41 - }, - "deprecated": false - }, - { - "parentPluginId": "presentationUtil", - "id": "def-common.projects.USE_DATA_SERVICE.environments", - "type": "Array", - "tags": [], - "label": "environments", - "description": [], - "signature": [ - "(\"kibana\" | \"browser\" | \"session\")[]" - ], - "source": { - "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 42 - }, - "deprecated": false - }, - { - "parentPluginId": "presentationUtil", - "id": "def-common.projects.USE_DATA_SERVICE.name", - "type": "string", - "tags": [], - "label": "name", - "description": [], - "source": { - "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 43 - }, - "deprecated": false - }, - { - "parentPluginId": "presentationUtil", - "id": "def-common.projects.USE_DATA_SERVICE.description", - "type": "string", - "tags": [], - "label": "description", - "description": [], - "source": { - "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 46 - }, - "deprecated": false - }, - { - "parentPluginId": "presentationUtil", - "id": "def-common.projects.USE_DATA_SERVICE.solutions", - "type": "Array", - "tags": [], - "label": "solutions", - "description": [], - "signature": [ - "\"canvas\"[]" - ], - "source": { - "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 52 + "lineNumber": 35 }, "deprecated": false } @@ -2175,7 +2037,7 @@ "description": [], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 54 + "lineNumber": 37 }, "deprecated": false, "children": [ @@ -2191,7 +2053,7 @@ ], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 55 + "lineNumber": 38 }, "deprecated": false }, @@ -2207,7 +2069,7 @@ ], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 56 + "lineNumber": 39 }, "deprecated": false }, @@ -2223,7 +2085,7 @@ ], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 57 + "lineNumber": 40 }, "deprecated": false }, @@ -2239,7 +2101,7 @@ ], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 58 + "lineNumber": 41 }, "deprecated": false }, @@ -2252,7 +2114,7 @@ "description": [], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 59 + "lineNumber": 42 }, "deprecated": false }, @@ -2265,7 +2127,7 @@ "description": [], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 62 + "lineNumber": 45 }, "deprecated": false }, @@ -2281,7 +2143,7 @@ ], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 66 + "lineNumber": 49 }, "deprecated": false } @@ -2302,7 +2164,7 @@ ], "source": { "path": "src/plugins/presentation_util/common/labs.ts", - "lineNumber": 18 + "lineNumber": 17 }, "deprecated": false, "initialIsOpen": false diff --git a/api_docs/presentation_util.mdx b/api_docs/presentation_util.mdx index 3df30c54e4390..21f5b89d3a591 100644 --- a/api_docs/presentation_util.mdx +++ b/api_docs/presentation_util.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'presentationUtil'] warning: 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. --- - import presentationUtilObj from './presentation_util.json'; @@ -19,7 +18,7 @@ import presentationUtilObj from './presentation_util.json'; | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 125 | 1 | 121 | 3 | +| 116 | 1 | 112 | 3 | ## Client diff --git a/api_docs/remote_clusters.mdx b/api_docs/remote_clusters.mdx index 166aeee82153e..3726d744ea954 100644 --- a/api_docs/remote_clusters.mdx +++ b/api_docs/remote_clusters.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'remoteClusters'] warning: 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. --- - import remoteClustersObj from './remote_clusters.json'; diff --git a/api_docs/reporting.json b/api_docs/reporting.json index b2529f510bc2e..47ea0f2f4a0e8 100644 --- a/api_docs/reporting.json +++ b/api_docs/reporting.json @@ -640,7 +640,7 @@ ], "source": { "path": "x-pack/plugins/reporting/public/plugin.ts", - "lineNumber": 81 + "lineNumber": 79 }, "deprecated": false, "children": [ @@ -656,7 +656,7 @@ ], "source": { "path": "x-pack/plugins/reporting/public/plugin.ts", - "lineNumber": 99 + "lineNumber": 97 }, "deprecated": false, "children": [ @@ -679,7 +679,7 @@ ], "source": { "path": "x-pack/plugins/reporting/public/plugin.ts", - "lineNumber": 99 + "lineNumber": 97 }, "deprecated": false, "isRequired": true @@ -716,7 +716,7 @@ ], "source": { "path": "x-pack/plugins/reporting/public/plugin.ts", - "lineNumber": 110 + "lineNumber": 117 }, "deprecated": false, "children": [ @@ -739,7 +739,7 @@ ], "source": { "path": "x-pack/plugins/reporting/public/plugin.ts", - "lineNumber": 110 + "lineNumber": 117 }, "deprecated": false, "isRequired": true @@ -756,7 +756,7 @@ ], "source": { "path": "x-pack/plugins/reporting/public/plugin.ts", - "lineNumber": 110 + "lineNumber": 117 }, "deprecated": false, "isRequired": true @@ -791,7 +791,7 @@ ], "source": { "path": "x-pack/plugins/reporting/public/plugin.ts", - "lineNumber": 190 + "lineNumber": 200 }, "deprecated": false, "children": [ @@ -813,7 +813,7 @@ ], "source": { "path": "x-pack/plugins/reporting/public/plugin.ts", - "lineNumber": 190 + "lineNumber": 200 }, "deprecated": false, "isRequired": true @@ -833,7 +833,7 @@ ], "source": { "path": "x-pack/plugins/reporting/public/plugin.ts", - "lineNumber": 209 + "lineNumber": 219 }, "deprecated": false, "children": [], @@ -887,7 +887,7 @@ ], "source": { "path": "x-pack/plugins/reporting/public/index.ts", - "lineNumber": 24 + "lineNumber": 20 }, "deprecated": false, "lifecycle": "start", @@ -2171,7 +2171,7 @@ ], "source": { "path": "x-pack/plugins/reporting/server/config/config.ts", - "lineNumber": 57 + "lineNumber": 55 }, "deprecated": false, "children": [ @@ -2187,7 +2187,7 @@ ], "source": { "path": "x-pack/plugins/reporting/server/config/config.ts", - "lineNumber": 58 + "lineNumber": 56 }, "deprecated": false } diff --git a/api_docs/reporting.mdx b/api_docs/reporting.mdx index f349b223ddf97..f2b0b0b840558 100644 --- a/api_docs/reporting.mdx +++ b/api_docs/reporting.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'reporting'] warning: 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. --- - import reportingObj from './reporting.json'; @@ -19,7 +18,7 @@ import reportingObj from './reporting.json'; | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 133 | 1 | 132 | 19 | +| 132 | 1 | 131 | 18 | ## Client diff --git a/api_docs/rollup.mdx b/api_docs/rollup.mdx index 7a7765dfe1584..60eeae0a0d1f3 100644 --- a/api_docs/rollup.mdx +++ b/api_docs/rollup.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'rollup'] warning: 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. --- - import rollupObj from './rollup.json'; diff --git a/api_docs/rule_registry.json b/api_docs/rule_registry.json index f114f1bf22751..ec570c7a7e813 100644 --- a/api_docs/rule_registry.json +++ b/api_docs/rule_registry.json @@ -36,7 +36,7 @@ ], "source": { "path": "x-pack/plugins/rule_registry/server/rule_data_client/index.ts", - "lineNumber": 21 + "lineNumber": 23 }, "deprecated": false, "children": [ @@ -52,7 +52,7 @@ ], "source": { "path": "x-pack/plugins/rule_registry/server/rule_data_client/index.ts", - "lineNumber": 22 + "lineNumber": 24 }, "deprecated": false, "children": [ @@ -68,7 +68,7 @@ ], "source": { "path": "x-pack/plugins/rule_registry/server/rule_data_client/index.ts", - "lineNumber": 22 + "lineNumber": 24 }, "deprecated": false, "isRequired": true @@ -89,7 +89,7 @@ ], "source": { "path": "x-pack/plugins/rule_registry/server/rule_data_client/index.ts", - "lineNumber": 29 + "lineNumber": 31 }, "deprecated": false, "children": [ @@ -102,7 +102,7 @@ "description": [], "source": { "path": "x-pack/plugins/rule_registry/server/rule_data_client/index.ts", - "lineNumber": 29 + "lineNumber": 31 }, "deprecated": false, "children": [ @@ -118,7 +118,7 @@ ], "source": { "path": "x-pack/plugins/rule_registry/server/rule_data_client/index.ts", - "lineNumber": 29 + "lineNumber": 31 }, "deprecated": false } @@ -140,7 +140,7 @@ ], "source": { "path": "x-pack/plugins/rule_registry/server/rule_data_client/index.ts", - "lineNumber": 60 + "lineNumber": 73 }, "deprecated": false, "children": [ @@ -153,7 +153,7 @@ "description": [], "source": { "path": "x-pack/plugins/rule_registry/server/rule_data_client/index.ts", - "lineNumber": 60 + "lineNumber": 73 }, "deprecated": false, "children": [ @@ -169,7 +169,7 @@ ], "source": { "path": "x-pack/plugins/rule_registry/server/rule_data_client/index.ts", - "lineNumber": 60 + "lineNumber": 73 }, "deprecated": false } @@ -190,7 +190,7 @@ ], "source": { "path": "x-pack/plugins/rule_registry/server/rule_data_client/index.ts", - "lineNumber": 92 + "lineNumber": 105 }, "deprecated": false, "children": [ @@ -203,7 +203,7 @@ "description": [], "source": { "path": "x-pack/plugins/rule_registry/server/rule_data_client/index.ts", - "lineNumber": 92 + "lineNumber": 105 }, "deprecated": false, "children": [ @@ -219,7 +219,7 @@ ], "source": { "path": "x-pack/plugins/rule_registry/server/rule_data_client/index.ts", - "lineNumber": 92 + "lineNumber": 105 }, "deprecated": false } @@ -251,7 +251,9 @@ }, "; logger: ", "Logger", - "; }) => , TAlertInstanceContext extends { [x: string]: unknown; }, TServices extends { alertWithLifecycle: LifecycleAlertService; }>(type: ", + "; }) => , TAlertInstanceContext extends { [x: string]: unknown; }, TServices extends { alertWithLifecycle: ", + "LifecycleAlertService", + "; }>(type: ", "AlertTypeWithExecutor", ") => { executor: (options: ", { @@ -303,7 +305,7 @@ "section": "def-common.ActionVariable", "text": "ActionVariable" }, - "[] | undefined; } | undefined; minimumLicenseRequired: \"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\"; }" + "[] | undefined; } | undefined; minimumLicenseRequired: \"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\"; isExportable: boolean; }" ], "source": { "path": "x-pack/plugins/rule_registry/server/utils/create_lifecycle_rule_type_factory.ts", @@ -412,7 +414,7 @@ "section": "def-common.ActionVariable", "text": "ActionVariable" }, - "[] | undefined; } | undefined; minimumLicenseRequired: \"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\"; }" + "[] | undefined; } | undefined; minimumLicenseRequired: \"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\"; isExportable: boolean; }" ], "source": { "path": "x-pack/plugins/rule_registry/server/utils/create_persistence_rule_type_factory.ts", @@ -893,7 +895,7 @@ "signature": [ "(input: unknown) => OutputOf<", "Optional", - "<{ readonly \"kibana.rac.alert.producer\": { readonly type: \"keyword\"; }; readonly \"kibana.rac.alert.uuid\": { readonly type: \"keyword\"; }; readonly \"kibana.rac.alert.id\": { readonly type: \"keyword\"; }; readonly \"kibana.rac.alert.start\": { readonly type: \"date\"; }; readonly \"kibana.rac.alert.end\": { readonly type: \"date\"; }; readonly \"kibana.rac.alert.duration.us\": { readonly type: \"long\"; }; readonly \"kibana.rac.alert.severity.level\": { readonly type: \"keyword\"; }; readonly \"kibana.rac.alert.severity.value\": { readonly type: \"long\"; }; readonly \"kibana.rac.alert.status\": { readonly type: \"keyword\"; }; readonly \"kibana.rac.alert.evaluation.threshold\": { readonly type: \"scaled_float\"; readonly scaling_factor: 100; }; readonly \"kibana.rac.alert.evaluation.value\": { readonly type: \"scaled_float\"; readonly scaling_factor: 100; }; readonly tags: { readonly type: \"keyword\"; readonly array: true; readonly required: false; }; readonly '@timestamp': { readonly type: \"date\"; readonly array: false; readonly required: true; }; readonly 'event.kind': { readonly type: \"keyword\"; readonly array: false; readonly required: false; }; readonly 'event.action': { readonly type: \"keyword\"; readonly array: false; readonly required: false; }; readonly 'rule.uuid': { readonly type: \"keyword\"; readonly array: false; readonly required: false; }; readonly 'rule.id': { readonly type: \"keyword\"; readonly array: false; readonly required: false; }; readonly 'rule.name': { readonly type: \"keyword\"; readonly array: false; readonly required: false; }; readonly 'rule.category': { readonly type: \"keyword\"; readonly array: false; readonly required: false; }; }, \"tags\" | \"kibana.rac.alert.uuid\" | \"event.kind\" | \"event.action\" | \"rule.uuid\" | \"rule.id\" | \"rule.name\" | \"rule.category\" | \"kibana.rac.alert.producer\" | \"kibana.rac.alert.id\" | \"kibana.rac.alert.start\" | \"kibana.rac.alert.end\" | \"kibana.rac.alert.duration.us\" | \"kibana.rac.alert.severity.level\" | \"kibana.rac.alert.severity.value\" | \"kibana.rac.alert.status\" | \"kibana.rac.alert.evaluation.threshold\" | \"kibana.rac.alert.evaluation.value\">>" + "<{ readonly \"kibana.rac.alert.producer\": { readonly type: \"keyword\"; }; readonly \"kibana.rac.alert.uuid\": { readonly type: \"keyword\"; }; readonly \"kibana.rac.alert.id\": { readonly type: \"keyword\"; }; readonly \"kibana.rac.alert.start\": { readonly type: \"date\"; }; readonly \"kibana.rac.alert.end\": { readonly type: \"date\"; }; readonly \"kibana.rac.alert.duration.us\": { readonly type: \"long\"; }; readonly \"kibana.rac.alert.severity.level\": { readonly type: \"keyword\"; }; readonly \"kibana.rac.alert.severity.value\": { readonly type: \"long\"; }; readonly \"kibana.rac.alert.status\": { readonly type: \"keyword\"; }; readonly \"kibana.rac.alert.evaluation.threshold\": { readonly type: \"scaled_float\"; readonly scaling_factor: 100; }; readonly \"kibana.rac.alert.evaluation.value\": { readonly type: \"scaled_float\"; readonly scaling_factor: 100; }; readonly tags: { readonly type: \"keyword\"; readonly array: true; readonly required: false; }; readonly '@timestamp': { readonly type: \"date\"; readonly array: false; readonly required: true; }; readonly 'event.kind': { readonly type: \"keyword\"; readonly array: false; readonly required: false; }; readonly 'event.action': { readonly type: \"keyword\"; readonly array: false; readonly required: false; }; readonly 'rule.uuid': { readonly type: \"keyword\"; readonly array: false; readonly required: false; }; readonly 'rule.id': { readonly type: \"keyword\"; readonly array: false; readonly required: false; }; readonly 'rule.name': { readonly type: \"keyword\"; readonly array: false; readonly required: false; }; readonly 'rule.category': { readonly type: \"keyword\"; readonly array: false; readonly required: false; }; }, \"tags\" | \"event.kind\" | \"event.action\" | \"rule.uuid\" | \"rule.id\" | \"rule.name\" | \"rule.category\" | \"kibana.rac.alert.producer\" | \"kibana.rac.alert.id\" | \"kibana.rac.alert.uuid\" | \"kibana.rac.alert.start\" | \"kibana.rac.alert.end\" | \"kibana.rac.alert.duration.us\" | \"kibana.rac.alert.severity.level\" | \"kibana.rac.alert.severity.value\" | \"kibana.rac.alert.status\" | \"kibana.rac.alert.evaluation.threshold\" | \"kibana.rac.alert.evaluation.value\">>" ], "source": { "path": "x-pack/plugins/rule_registry/common/parse_technical_fields.ts", diff --git a/api_docs/rule_registry.mdx b/api_docs/rule_registry.mdx index a0171607e8eeb..6515310c6213e 100644 --- a/api_docs/rule_registry.mdx +++ b/api_docs/rule_registry.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'ruleRegistry'] warning: 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. --- - import ruleRegistryObj from './rule_registry.json'; @@ -19,7 +18,7 @@ import ruleRegistryObj from './rule_registry.json'; | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 43 | 0 | 43 | 6 | +| 43 | 0 | 43 | 7 | ## Server diff --git a/api_docs/runtime_fields.mdx b/api_docs/runtime_fields.mdx index 2b9585f558ad5..6474253a2ff97 100644 --- a/api_docs/runtime_fields.mdx +++ b/api_docs/runtime_fields.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'runtimeFields'] warning: 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. --- - import runtimeFieldsObj from './runtime_fields.json'; diff --git a/api_docs/saved_objects.json b/api_docs/saved_objects.json index 6af18c749db67..d7147a92b725d 100644 --- a/api_docs/saved_objects.json +++ b/api_docs/saved_objects.json @@ -23,7 +23,7 @@ ], "source": { "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", - "lineNumber": 103 + "lineNumber": 104 }, "deprecated": false, "children": [ @@ -36,7 +36,7 @@ "description": [], "source": { "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", - "lineNumber": 107 + "lineNumber": 108 }, "deprecated": false, "children": [ @@ -53,7 +53,7 @@ ], "source": { "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", - "lineNumber": 108 + "lineNumber": 109 }, "deprecated": false, "returnComment": [], @@ -143,7 +143,7 @@ ], "source": { "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", - "lineNumber": 109 + "lineNumber": 110 }, "deprecated": false, "returnComment": [], @@ -231,7 +231,7 @@ ], "source": { "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", - "lineNumber": 110 + "lineNumber": 111 }, "deprecated": false, "returnComment": [], @@ -319,7 +319,7 @@ ], "source": { "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", - "lineNumber": 111 + "lineNumber": 112 }, "deprecated": false, "returnComment": [], @@ -407,7 +407,7 @@ ], "source": { "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", - "lineNumber": 112 + "lineNumber": 113 }, "deprecated": false, "returnComment": [], @@ -495,7 +495,7 @@ ], "source": { "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", - "lineNumber": 113 + "lineNumber": 114 }, "deprecated": false, "returnComment": [], @@ -584,7 +584,7 @@ ], "source": { "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", - "lineNumber": 173 + "lineNumber": 174 }, "deprecated": false, "children": [ @@ -600,7 +600,7 @@ ], "source": { "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", - "lineNumber": 173 + "lineNumber": 174 }, "deprecated": false, "isRequired": true @@ -620,7 +620,7 @@ ], "source": { "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", - "lineNumber": 188 + "lineNumber": 189 }, "deprecated": false, "children": [], @@ -638,7 +638,7 @@ ], "source": { "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", - "lineNumber": 193 + "lineNumber": 194 }, "deprecated": false, "children": [], @@ -656,7 +656,7 @@ ], "source": { "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", - "lineNumber": 198 + "lineNumber": 199 }, "deprecated": false, "children": [], @@ -680,6 +680,20 @@ }, "deprecated": true, "references": [ + { + "plugin": "visualizations", + "link": { + "path": "src/plugins/visualizations/public/saved_visualizations/find_list_items.ts", + "lineNumber": 16 + } + }, + { + "plugin": "visualizations", + "link": { + "path": "src/plugins/visualizations/public/saved_visualizations/find_list_items.ts", + "lineNumber": 35 + } + }, { "plugin": "discover", "link": { @@ -705,21 +719,7 @@ "plugin": "discover", "link": { "path": "src/plugins/discover/public/plugin.tsx", - "lineNumber": 88 - } - }, - { - "plugin": "visualizations", - "link": { - "path": "src/plugins/visualizations/public/saved_visualizations/find_list_items.ts", - "lineNumber": 16 - } - }, - { - "plugin": "visualizations", - "link": { - "path": "src/plugins/visualizations/public/saved_visualizations/find_list_items.ts", - "lineNumber": 35 + "lineNumber": 122 } }, { @@ -803,7 +803,7 @@ "plugin": "dashboard", "link": { "path": "src/plugins/dashboard/public/plugin.tsx", - "lineNumber": 127 + "lineNumber": 130 } }, { @@ -817,7 +817,7 @@ "plugin": "dashboard", "link": { "path": "src/plugins/dashboard/public/url_generator.ts", - "lineNumber": 95 + "lineNumber": 101 } }, { @@ -983,7 +983,7 @@ "section": "def-public.SavedObjectsClient", "text": "SavedObjectsClient" }, - ", \"get\" | \"delete\" | \"create\" | \"bulkCreate\" | \"find\" | \"bulkGet\" | \"update\" | \"bulkUpdate\">" + ", \"get\" | \"delete\" | \"create\" | \"bulkCreate\" | \"find\" | \"bulkGet\" | \"resolve\" | \"update\" | \"bulkUpdate\">" ], "source": { "path": "src/plugins/saved_objects/public/saved_object/saved_object_loader.ts", @@ -1707,7 +1707,7 @@ ], "source": { "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", - "lineNumber": 526 + "lineNumber": 527 }, "deprecated": false, "children": [ @@ -1729,7 +1729,7 @@ ], "source": { "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", - "lineNumber": 526 + "lineNumber": 527 }, "deprecated": false, "isRequired": true @@ -1752,7 +1752,7 @@ ], "source": { "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", - "lineNumber": 526 + "lineNumber": 527 }, "deprecated": false, "isRequired": true @@ -1892,7 +1892,7 @@ "section": "def-public.SavedObjectsClient", "text": "SavedObjectsClient" }, - ", \"get\" | \"delete\" | \"create\" | \"bulkCreate\" | \"find\" | \"bulkGet\" | \"update\" | \"bulkUpdate\">; overlays: ", + ", \"get\" | \"delete\" | \"create\" | \"bulkCreate\" | \"find\" | \"bulkGet\" | \"resolve\" | \"update\" | \"bulkUpdate\">; overlays: ", { "pluginId": "core", "scope": "public", @@ -2116,7 +2116,15 @@ "section": "def-public.SavedObjectsBatchResponse", "text": "SavedObjectsBatchResponse" }, - ">; update: (type: string, id: string, attributes: T, { version, references, upsert }?: ", + ">; resolve: (type: string, id: string) => Promise<", + { + "pluginId": "core", + "scope": "public", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-public.ResolvedSimpleSavedObject", + "text": "ResolvedSimpleSavedObject" + }, + ">; update: (type: string, id: string, attributes: T, { version, references, upsert }?: ", { "pluginId": "core", "scope": "public", @@ -2569,31 +2577,31 @@ } }, { - "plugin": "discover", + "plugin": "visualizations", "link": { - "path": "src/plugins/discover/public/saved_searches/_saved_search.ts", + "path": "src/plugins/visualizations/public/types.ts", "lineNumber": 9 } }, { - "plugin": "discover", + "plugin": "visualizations", "link": { - "path": "src/plugins/discover/public/saved_searches/_saved_search.ts", - "lineNumber": 61 + "path": "src/plugins/visualizations/public/types.ts", + "lineNumber": 41 } }, { - "plugin": "visualizations", + "plugin": "discover", "link": { - "path": "src/plugins/visualizations/public/types.ts", + "path": "src/plugins/discover/public/saved_searches/_saved_search.ts", "lineNumber": 9 } }, { - "plugin": "visualizations", + "plugin": "discover", "link": { - "path": "src/plugins/visualizations/public/types.ts", - "lineNumber": 41 + "path": "src/plugins/discover/public/saved_searches/_saved_search.ts", + "lineNumber": 61 } }, { @@ -4003,6 +4011,57 @@ ], "returnComment": [] }, + { + "parentPluginId": "savedObjects", + "id": "def-public.SavedObjectMetaData.getSavedObjectSubType", + "type": "Function", + "tags": [], + "label": "getSavedObjectSubType", + "description": [], + "signature": [ + "((savedObject: ", + { + "pluginId": "core", + "scope": "public", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-public.SimpleSavedObject", + "text": "SimpleSavedObject" + }, + ") => string) | undefined" + ], + "source": { + "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", + "lineNumber": 49 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "savedObjects", + "id": "def-public.SavedObjectMetaData.getSavedObjectSubType.$1", + "type": "Object", + "tags": [], + "label": "savedObject", + "description": [], + "signature": [ + { + "pluginId": "core", + "scope": "public", + "docId": "kibCoreSavedObjectsPluginApi", + "section": "def-public.SimpleSavedObject", + "text": "SimpleSavedObject" + }, + "" + ], + "source": { + "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", + "lineNumber": 49 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [] + }, { "parentPluginId": "savedObjects", "id": "def-public.SavedObjectMetaData.includeFields", @@ -4015,7 +4074,7 @@ ], "source": { "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", - "lineNumber": 49 + "lineNumber": 50 }, "deprecated": false } diff --git a/api_docs/saved_objects.mdx b/api_docs/saved_objects.mdx index 66579c3e3b0ca..0e64b52cbe31f 100644 --- a/api_docs/saved_objects.mdx +++ b/api_docs/saved_objects.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedObjects'] warning: 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. --- - import savedObjectsObj from './saved_objects.json'; @@ -19,7 +18,7 @@ import savedObjectsObj from './saved_objects.json'; | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 211 | 3 | 197 | 5 | +| 213 | 3 | 199 | 5 | ## Client diff --git a/api_docs/saved_objects_management.json b/api_docs/saved_objects_management.json index 8e8e7850261a3..27257784f5fbf 100644 --- a/api_docs/saved_objects_management.json +++ b/api_docs/saved_objects_management.json @@ -102,7 +102,7 @@ "label": "refreshOnFinish", "description": [], "signature": [ - "(() => boolean) | undefined" + "(() => { type: string; id: string; }[]) | undefined" ], "source": { "path": "src/plugins/saved_objects_management/public/services/types/action.ts", diff --git a/api_docs/saved_objects_management.mdx b/api_docs/saved_objects_management.mdx index 0ee0660609f14..884febcea6b3d 100644 --- a/api_docs/saved_objects_management.mdx +++ b/api_docs/saved_objects_management.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedObjectsManagement'] warning: 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. --- - import savedObjectsManagementObj from './saved_objects_management.json'; diff --git a/api_docs/saved_objects_tagging.mdx b/api_docs/saved_objects_tagging.mdx index fe1d90171a2c1..0f176e1617ea2 100644 --- a/api_docs/saved_objects_tagging.mdx +++ b/api_docs/saved_objects_tagging.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedObjectsTagging'] warning: 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. --- - import savedObjectsTaggingObj from './saved_objects_tagging.json'; diff --git a/api_docs/saved_objects_tagging_oss.mdx b/api_docs/saved_objects_tagging_oss.mdx index 6fe8b4c6d4698..407c9244349aa 100644 --- a/api_docs/saved_objects_tagging_oss.mdx +++ b/api_docs/saved_objects_tagging_oss.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedObjectsTaggingOss'] warning: 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. --- - import savedObjectsTaggingOssObj from './saved_objects_tagging_oss.json'; diff --git a/api_docs/screenshot_mode.json b/api_docs/screenshot_mode.json index 22b613bf0b04b..9cd9a2eefce94 100644 --- a/api_docs/screenshot_mode.json +++ b/api_docs/screenshot_mode.json @@ -63,17 +63,17 @@ "objects": [], "setup": { "parentPluginId": "screenshotMode", - "id": "def-public.ScreenshotModePluginSetup", + "id": "def-public.ScreenshotModePluginStart", "type": "Type", "tags": [], - "label": "ScreenshotModePluginSetup", + "label": "ScreenshotModePluginStart", "description": [], "signature": [ "IScreenshotModeService" ], "source": { "path": "src/plugins/screenshot_mode/public/types.ts", - "lineNumber": 17 + "lineNumber": 18 }, "deprecated": false, "lifecycle": "setup", diff --git a/api_docs/screenshot_mode.mdx b/api_docs/screenshot_mode.mdx index a098e5f296d69..9f3b076dc2510 100644 --- a/api_docs/screenshot_mode.mdx +++ b/api_docs/screenshot_mode.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'screenshotMode'] warning: 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. --- - import screenshotModeObj from './screenshot_mode.json'; @@ -19,7 +18,7 @@ import screenshotModeObj from './screenshot_mode.json'; | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 21 | 0 | 16 | 1 | +| 22 | 0 | 17 | 1 | ## Client diff --git a/api_docs/security.json b/api_docs/security.json index f7547221cec66..ac0982be3f19e 100644 --- a/api_docs/security.json +++ b/api_docs/security.json @@ -705,7 +705,7 @@ "description": [], "source": { "path": "x-pack/plugins/security/public/plugin.tsx", - "lineNumber": 167 + "lineNumber": 170 }, "deprecated": false, "children": [ @@ -729,7 +729,7 @@ ], "source": { "path": "x-pack/plugins/security/public/plugin.tsx", - "lineNumber": 171 + "lineNumber": 174 }, "deprecated": false }, @@ -753,7 +753,7 @@ ], "source": { "path": "x-pack/plugins/security/public/plugin.tsx", - "lineNumber": 175 + "lineNumber": 178 }, "deprecated": false } @@ -770,7 +770,7 @@ "description": [], "source": { "path": "x-pack/plugins/security/public/plugin.tsx", - "lineNumber": 178 + "lineNumber": 181 }, "deprecated": false, "children": [ @@ -794,7 +794,7 @@ ], "source": { "path": "x-pack/plugins/security/public/plugin.tsx", - "lineNumber": 182 + "lineNumber": 185 }, "deprecated": false }, @@ -818,7 +818,25 @@ ], "source": { "path": "x-pack/plugins/security/public/plugin.tsx", - "lineNumber": 186 + "lineNumber": 189 + }, + "deprecated": false + }, + { + "parentPluginId": "security", + "id": "def-public.SecurityPluginStart.uiApi", + "type": "Object", + "tags": [], + "label": "uiApi", + "description": [ + "\nExposes UI components that will be loaded asynchronously." + ], + "signature": [ + "UiApi" + ], + "source": { + "path": "x-pack/plugins/security/public/plugin.tsx", + "lineNumber": 193 }, "deprecated": false } @@ -1847,7 +1865,7 @@ ], "source": { "path": "x-pack/plugins/security/server/plugin.ts", - "lineNumber": 72 + "lineNumber": 71 }, "deprecated": false, "children": [ @@ -1881,7 +1899,7 @@ ], "source": { "path": "x-pack/plugins/security/server/plugin.ts", - "lineNumber": 76 + "lineNumber": 75 }, "deprecated": true, "references": [ @@ -1931,7 +1949,7 @@ "plugin": "dataEnhanced", "link": { "path": "x-pack/plugins/data_enhanced/server/search/session/session_service.ts", - "lineNumber": 448 + "lineNumber": 514 } }, { @@ -1991,7 +2009,7 @@ ], "source": { "path": "x-pack/plugins/security/server/plugin.ts", - "lineNumber": 80 + "lineNumber": 79 }, "deprecated": true, "references": [ @@ -2073,7 +2091,7 @@ ], "source": { "path": "x-pack/plugins/security/server/plugin.ts", - "lineNumber": 84 + "lineNumber": 83 }, "deprecated": false }, @@ -2097,7 +2115,7 @@ ], "source": { "path": "x-pack/plugins/security/server/plugin.ts", - "lineNumber": 88 + "lineNumber": 87 }, "deprecated": false } @@ -2116,7 +2134,7 @@ ], "source": { "path": "x-pack/plugins/security/server/plugin.ts", - "lineNumber": 94 + "lineNumber": 93 }, "deprecated": false, "children": [ @@ -2140,7 +2158,7 @@ ], "source": { "path": "x-pack/plugins/security/server/plugin.ts", - "lineNumber": 98 + "lineNumber": 97 }, "deprecated": false }, @@ -2164,7 +2182,7 @@ ], "source": { "path": "x-pack/plugins/security/server/plugin.ts", - "lineNumber": 102 + "lineNumber": 101 }, "deprecated": false } diff --git a/api_docs/security.mdx b/api_docs/security.mdx index e31fa44014c94..f387a764cd788 100644 --- a/api_docs/security.mdx +++ b/api_docs/security.mdx @@ -8,18 +8,17 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'security'] warning: 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. --- - import securityObj from './security.json'; +This plugin provides authentication and authorization features, and exposes functionality to understand the capabilities of the currently authenticated user. - - +Contact [Platform Security](https://github.com/orgs/elastic/teams/kibana-security) for questions regarding this plugin. **Code health stats** | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 95 | 0 | 45 | 11 | +| 110 | 0 | 49 | 6 | ## Client diff --git a/api_docs/security_oss.mdx b/api_docs/security_oss.mdx index ada97232ffe84..8d85247ecedf3 100644 --- a/api_docs/security_oss.mdx +++ b/api_docs/security_oss.mdx @@ -8,12 +8,11 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'securityOss'] warning: 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. --- - import securityOssObj from './security_oss.json'; +This plugin exposes a limited set of security functionality to OSS plugins. - - +Contact [Platform Security](https://github.com/orgs/elastic/teams/kibana-security) for questions regarding this plugin. **Code health stats** diff --git a/api_docs/security_solution.json b/api_docs/security_solution.json index 747ef4b4b715b..06d5dea44b8fa 100644 --- a/api_docs/security_solution.json +++ b/api_docs/security_solution.json @@ -43,7 +43,7 @@ ], "source": { "path": "x-pack/plugins/security_solution/public/plugin.tsx", - "lineNumber": 75 + "lineNumber": 64 }, "deprecated": false, "children": [ @@ -59,7 +59,7 @@ ], "source": { "path": "x-pack/plugins/security_solution/public/plugin.tsx", - "lineNumber": 79 + "lineNumber": 68 }, "deprecated": false, "children": [ @@ -82,7 +82,7 @@ ], "source": { "path": "x-pack/plugins/security_solution/public/plugin.tsx", - "lineNumber": 79 + "lineNumber": 68 }, "deprecated": false, "isRequired": true @@ -123,7 +123,7 @@ ], "source": { "path": "x-pack/plugins/security_solution/public/plugin.tsx", - "lineNumber": 103 + "lineNumber": 89 }, "deprecated": false, "children": [ @@ -150,7 +150,7 @@ ], "source": { "path": "x-pack/plugins/security_solution/public/plugin.tsx", - "lineNumber": 103 + "lineNumber": 89 }, "deprecated": false, "isRequired": true @@ -167,7 +167,7 @@ ], "source": { "path": "x-pack/plugins/security_solution/public/plugin.tsx", - "lineNumber": 103 + "lineNumber": 89 }, "deprecated": false, "isRequired": true @@ -197,7 +197,7 @@ ], "source": { "path": "x-pack/plugins/security_solution/public/plugin.tsx", - "lineNumber": 344 + "lineNumber": 194 }, "deprecated": false, "children": [ @@ -219,7 +219,7 @@ ], "source": { "path": "x-pack/plugins/security_solution/public/plugin.tsx", - "lineNumber": 344 + "lineNumber": 194 }, "deprecated": false, "isRequired": true @@ -236,7 +236,7 @@ ], "source": { "path": "x-pack/plugins/security_solution/public/plugin.tsx", - "lineNumber": 344 + "lineNumber": 194 }, "deprecated": false, "isRequired": true @@ -256,7 +256,7 @@ ], "source": { "path": "x-pack/plugins/security_solution/public/plugin.tsx", - "lineNumber": 389 + "lineNumber": 241 }, "deprecated": false, "children": [], @@ -269,7 +269,73 @@ "functions": [], "interfaces": [], "enums": [], - "misc": [], + "misc": [ + { + "parentPluginId": "securitySolution", + "id": "def-public.TimelineModel", + "type": "Type", + "tags": [], + "label": "TimelineModel", + "description": [], + "signature": [ + "Pick<", + "TGridModel", + ", \"columns\" | \"filters\" | \"title\" | \"id\" | \"sort\" | \"version\" | \"isLoading\" | \"savedObjectId\" | \"dateRange\" | \"deletedEventIds\" | \"excludedRowRendererIds\" | \"expandedDetail\" | \"graphEventId\" | \"kqlQuery\" | \"indexNames\" | \"isSelectAllChecked\" | \"itemsPerPage\" | \"itemsPerPageOptions\" | \"loadingEventIds\" | \"showCheckboxes\" | \"selectedEventIds\"> & { activeTab: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineTabs", + "text": "TimelineTabs" + }, + "; prevActiveTab: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineTabs", + "text": "TimelineTabs" + }, + "; createdBy?: string | undefined; dataProviders: ", + "DataProvider", + "[]; description: string; eqlOptions: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.EqlOptionsSelected", + "text": "EqlOptionsSelected" + }, + "; eventType?: \"all\" | \"custom\" | \"raw\" | \"alert\" | \"eql\" | \"signal\" | undefined; eventIdToNoteIds: Record; historyIds: string[]; highlightedDropAndProviderId: string; isFavorite: boolean; isLive: boolean; kqlMode: ", + "KqlMode", + "; title: string; timelineType: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + "; templateTimelineId: string | null; templateTimelineVersion: number | null; noteIds: string[]; pinnedEventIds: Record; pinnedEventsSaveObject: Record; showSaveModal?: boolean | undefined; savedQueryId?: string | null | undefined; show: boolean; status: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + "; updated?: number | undefined; isSaving: boolean; version: string | null; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/public/timelines/store/timeline/model.ts", + "lineNumber": 23 + }, + "deprecated": false, + "initialIsOpen": false + } + ], "objects": [], "setup": { "parentPluginId": "securitySolution", @@ -280,7 +346,7 @@ "description": [], "source": { "path": "x-pack/plugins/security_solution/public/types.ts", - "lineNumber": 69 + "lineNumber": 75 }, "deprecated": false, "children": [ @@ -298,7 +364,7 @@ ], "source": { "path": "x-pack/plugins/security_solution/public/types.ts", - "lineNumber": 70 + "lineNumber": 76 }, "deprecated": false, "returnComment": [], @@ -445,7 +511,7 @@ ], "source": { "path": "x-pack/plugins/security_solution/server/plugin.ts", - "lineNumber": 143 + "lineNumber": 127 }, "deprecated": false, "children": [ @@ -461,7 +527,7 @@ ], "source": { "path": "x-pack/plugins/security_solution/server/plugin.ts", - "lineNumber": 159 + "lineNumber": 143 }, "deprecated": false, "children": [ @@ -484,7 +550,7 @@ ], "source": { "path": "x-pack/plugins/security_solution/server/plugin.ts", - "lineNumber": 159 + "lineNumber": 143 }, "deprecated": false, "isRequired": true @@ -524,7 +590,7 @@ ], "source": { "path": "x-pack/plugins/security_solution/server/plugin.ts", - "lineNumber": 171 + "lineNumber": 155 }, "deprecated": false, "children": [ @@ -557,7 +623,7 @@ ], "source": { "path": "x-pack/plugins/security_solution/server/plugin.ts", - "lineNumber": 171 + "lineNumber": 155 }, "deprecated": false, "isRequired": true @@ -574,7 +640,7 @@ ], "source": { "path": "x-pack/plugins/security_solution/server/plugin.ts", - "lineNumber": 171 + "lineNumber": 155 }, "deprecated": false, "isRequired": true @@ -604,7 +670,7 @@ ], "source": { "path": "x-pack/plugins/security_solution/server/plugin.ts", - "lineNumber": 471 + "lineNumber": 439 }, "deprecated": false, "children": [ @@ -626,7 +692,7 @@ ], "source": { "path": "x-pack/plugins/security_solution/server/plugin.ts", - "lineNumber": 471 + "lineNumber": 439 }, "deprecated": false, "isRequired": true @@ -643,7 +709,7 @@ ], "source": { "path": "x-pack/plugins/security_solution/server/plugin.ts", - "lineNumber": 471 + "lineNumber": 439 }, "deprecated": false, "isRequired": true @@ -663,7 +729,7 @@ ], "source": { "path": "x-pack/plugins/security_solution/server/plugin.ts", - "lineNumber": 546 + "lineNumber": 514 }, "deprecated": false, "children": [], @@ -747,7 +813,7 @@ "description": [], "source": { "path": "x-pack/plugins/security_solution/server/plugin.ts", - "lineNumber": 127 + "lineNumber": 123 }, "deprecated": false, "children": [], @@ -763,7 +829,7 @@ "description": [], "source": { "path": "x-pack/plugins/security_solution/server/plugin.ts", - "lineNumber": 130 + "lineNumber": 126 }, "deprecated": false, "children": [], @@ -773,10 +839,29679 @@ }, "common": { "classes": [], - "functions": [], - "interfaces": [], - "enums": [], - "misc": [], - "objects": [] + "functions": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.assertUnreachable", + "type": "Function", + "tags": [], + "label": "assertUnreachable", + "description": [ + "\nUnreachable Assertion helper for scenarios like exhaustive switches.\nFor references see: https://stackoverflow.com/questions/39419170/how-do-i-check-that-a-switch-block-is-exhaustive-in-typescript\nThis \"x\" should _always_ be a type of \"never\" and not change to \"unknown\" or any other type. See above link or the generic\nconcept of exhaustive checks in switch blocks.\n\nOptionally you can avoid the use of this by using early returns and TypeScript will clear your type checking without complaints\nbut there are situations and times where this function might still be needed.\n\nIf you see an error, DO NOT cast \"as never\" such as:\nassertUnreachable(x as never) // BUG IN YOUR CODE NOW AND IT WILL THROW DURING RUNTIME\nIf you see code like that remove it, as that deactivates the intent of this utility.\nIf you need to do that, then you should remove assertUnreachable from your code and\nuse a default at the end of the switch instead." + ], + "signature": [ + "(x: never, message?: string) => never" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/utility_types.ts", + "lineNumber": 48 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.assertUnreachable.$1", + "type": "Uncategorized", + "tags": [], + "label": "x", + "description": [ + "Unreachable field" + ], + "signature": [ + "never" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/utility_types.ts", + "lineNumber": 49 + }, + "deprecated": false, + "isRequired": true + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.assertUnreachable.$2", + "type": "string", + "tags": [], + "label": "message", + "description": [ + "Message of error thrown" + ], + "signature": [ + "string" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/utility_types.ts", + "lineNumber": 50 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.stringEnum", + "type": "Function", + "tags": [], + "label": "stringEnum", + "description": [], + "signature": [ + "(enumObj: T, enumName?: string) => ", + "Type", + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/utility_types.ts", + "lineNumber": 20 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.stringEnum.$1", + "type": "Uncategorized", + "tags": [], + "label": "enumObj", + "description": [], + "signature": [ + "T" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/utility_types.ts", + "lineNumber": 20 + }, + "deprecated": false, + "isRequired": true + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.stringEnum.$2", + "type": "string", + "tags": [], + "label": "enumName", + "description": [], + "signature": [ + "string" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/utility_types.ts", + "lineNumber": 20 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.unionWithNullType", + "type": "Function", + "tags": [], + "label": "unionWithNullType", + "description": [], + "signature": [ + "(type: T) => ", + "UnionC", + "<[T, ", + "NullC", + "]>" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/utility_types.ts", + "lineNumber": 17 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.unionWithNullType.$1", + "type": "Uncategorized", + "tags": [], + "label": "type", + "description": [], + "signature": [ + "T" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/utility_types.ts", + "lineNumber": 17 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + } + ], + "interfaces": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.ActionProps", + "type": "Interface", + "tags": [], + "label": "ActionProps", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 16 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.ActionProps.ariaRowindex", + "type": "number", + "tags": [], + "label": "ariaRowindex", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 17 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ActionProps.action", + "type": "CompoundType", + "tags": [], + "label": "action", + "description": [], + "signature": [ + "((props: Pick<", + "EuiDataGridCellValueElementProps", + ", \"columnId\" | \"rowIndex\">) => React.ReactElement React.ReactElement React.Component)> | null) | (new (props: any) => React.Component)> | null) | (new (props: Pick<", + "EuiDataGridCellValueElementProps", + ", \"columnId\" | \"rowIndex\">) => React.Component, any, any>) | ((props: Pick<", + "EuiDataGridCellValueElementProps", + ", \"columnId\" | \"rowIndex\">) => JSX.Element) | ((props: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ActionProps", + "text": "ActionProps" + }, + ") => React.ReactElement React.ReactElement React.Component)> | null) | (new (props: any) => React.Component)> | null) | (new (props: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ActionProps", + "text": "ActionProps" + }, + ") => React.Component<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ActionProps", + "text": "ActionProps" + }, + ", any, any>) | ((props: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ActionProps", + "text": "ActionProps" + }, + ") => JSX.Element) | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 18 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ActionProps.width", + "type": "number", + "tags": [], + "label": "width", + "description": [], + "signature": [ + "number | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 19 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ActionProps.columnId", + "type": "string", + "tags": [], + "label": "columnId", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 20 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ActionProps.columnValues", + "type": "string", + "tags": [], + "label": "columnValues", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 21 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ActionProps.checked", + "type": "boolean", + "tags": [], + "label": "checked", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 22 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ActionProps.onRowSelected", + "type": "Function", + "tags": [], + "label": "onRowSelected", + "description": [], + "signature": [ + "({ eventIds, isSelected, }: { eventIds: string[]; isSelected: boolean; }) => void" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 23 + }, + "deprecated": false, + "returnComment": [], + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.__0", + "type": "Object", + "tags": [], + "label": "__0", + "description": [], + "signature": [ + "{ eventIds: string[]; isSelected: boolean; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 80 + }, + "deprecated": false + } + ] + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ActionProps.eventId", + "type": "string", + "tags": [], + "label": "eventId", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 24 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ActionProps.loadingEventIds", + "type": "Object", + "tags": [], + "label": "loadingEventIds", + "description": [], + "signature": [ + "readonly string[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 25 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ActionProps.onEventDetailsPanelOpened", + "type": "Function", + "tags": [], + "label": "onEventDetailsPanelOpened", + "description": [], + "signature": [ + "() => void" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 26 + }, + "deprecated": false, + "returnComment": [], + "children": [] + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ActionProps.showCheckboxes", + "type": "boolean", + "tags": [], + "label": "showCheckboxes", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 27 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ActionProps.data", + "type": "Array", + "tags": [], + "label": "data", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineNonEcsData", + "text": "TimelineNonEcsData" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 28 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ActionProps.ecsData", + "type": "Object", + "tags": [], + "label": "ecsData", + "description": [], + "signature": [ + "Ecs" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 29 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ActionProps.index", + "type": "number", + "tags": [], + "label": "index", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 30 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ActionProps.eventIdToNoteIds", + "type": "Object", + "tags": [], + "label": "eventIdToNoteIds", + "description": [], + "signature": [ + "Readonly> | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 31 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ActionProps.isEventPinned", + "type": "CompoundType", + "tags": [], + "label": "isEventPinned", + "description": [], + "signature": [ + "boolean | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 32 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ActionProps.isEventViewer", + "type": "CompoundType", + "tags": [], + "label": "isEventViewer", + "description": [], + "signature": [ + "boolean | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 33 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ActionProps.rowIndex", + "type": "number", + "tags": [], + "label": "rowIndex", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 34 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ActionProps.refetch", + "type": "Function", + "tags": [], + "label": "refetch", + "description": [], + "signature": [ + "(() => void) | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 35 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ActionProps.onRuleChange", + "type": "Function", + "tags": [], + "label": "onRuleChange", + "description": [], + "signature": [ + "(() => void) | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 36 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ActionProps.showNotes", + "type": "CompoundType", + "tags": [], + "label": "showNotes", + "description": [], + "signature": [ + "boolean | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 37 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ActionProps.tabType", + "type": "CompoundType", + "tags": [], + "label": "tabType", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineTabs", + "text": "TimelineTabs" + }, + " | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 38 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ActionProps.timelineId", + "type": "string", + "tags": [], + "label": "timelineId", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 39 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ActionProps.toggleShowNotes", + "type": "Function", + "tags": [], + "label": "toggleShowNotes", + "description": [], + "signature": [ + "(() => void) | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 40 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AggregationRequest", + "type": "Interface", + "tags": [], + "label": "AggregationRequest", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/details/index.ts", + "lineNumber": 27 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.AggregationRequest.Unnamed", + "type": "Any", + "tags": [], + "label": "Unnamed", + "description": [], + "signature": [ + "any" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/details/index.ts", + "lineNumber": 28 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AlertsGroupData", + "type": "Interface", + "tags": [], + "label": "AlertsGroupData", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/alerts/index.ts", + "lineNumber": 10 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.AlertsGroupData.key", + "type": "string", + "tags": [], + "label": "key", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/alerts/index.ts", + "lineNumber": 11 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AlertsGroupData.doc_count", + "type": "number", + "tags": [], + "label": "doc_count", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/alerts/index.ts", + "lineNumber": 12 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AlertsGroupData.alerts", + "type": "Object", + "tags": [], + "label": "alerts", + "description": [], + "signature": [ + "{ buckets: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HistogramBucket", + "text": "HistogramBucket" + }, + "[]; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/alerts/index.ts", + "lineNumber": 13 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AnomaliesActionGroupData", + "type": "Interface", + "tags": [], + "label": "AnomaliesActionGroupData", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/anomalies/index.ts", + "lineNumber": 16 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.AnomaliesActionGroupData.key", + "type": "number", + "tags": [], + "label": "key", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/anomalies/index.ts", + "lineNumber": 17 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AnomaliesActionGroupData.anomalies", + "type": "Object", + "tags": [], + "label": "anomalies", + "description": [], + "signature": [ + "{ bucket: AnomaliesOverTimeHistogramData[]; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/anomalies/index.ts", + "lineNumber": 18 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AnomaliesActionGroupData.doc_count", + "type": "number", + "tags": [], + "label": "doc_count", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/anomalies/index.ts", + "lineNumber": 21 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AnomalyHit", + "type": "Interface", + "tags": [], + "label": "AnomalyHit", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.AnomalyHit", + "text": "AnomalyHit" + }, + " extends ", + "SearchHit", + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/anomalies/index.ts", + "lineNumber": 28 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.AnomalyHit.sort", + "type": "Array", + "tags": [], + "label": "sort", + "description": [], + "signature": [ + "string[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/anomalies/index.ts", + "lineNumber": 29 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AnomalyHit._source", + "type": "Object", + "tags": [], + "label": "_source", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.AnomalySource", + "text": "AnomalySource" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/anomalies/index.ts", + "lineNumber": 30 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AnomalyHit.aggregations", + "type": "Object", + "tags": [], + "label": "aggregations", + "description": [], + "signature": [ + "{ [agg: string]: any; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/anomalies/index.ts", + "lineNumber": 31 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AnomalySource", + "type": "Interface", + "tags": [], + "label": "AnomalySource", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/anomalies/index.ts", + "lineNumber": 24 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.AnomalySource.Unnamed", + "type": "Any", + "tags": [], + "label": "Unnamed", + "description": [], + "signature": [ + "any" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/anomalies/index.ts", + "lineNumber": 25 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AuthenticationBucket", + "type": "Interface", + "tags": [], + "label": "AuthenticationBucket", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 68 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.AuthenticationBucket.key", + "type": "Object", + "tags": [], + "label": "key", + "description": [], + "signature": [ + "{ user_uid: string; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 69 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AuthenticationBucket.doc_count", + "type": "number", + "tags": [], + "label": "doc_count", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 72 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AuthenticationBucket.failures", + "type": "Object", + "tags": [], + "label": "failures", + "description": [], + "signature": [ + "{ doc_count: number; value?: number | undefined; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 73 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AuthenticationBucket.successes", + "type": "Object", + "tags": [], + "label": "successes", + "description": [], + "signature": [ + "{ doc_count: number; value?: number | undefined; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 78 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AuthenticationBucket.authentication", + "type": "Object", + "tags": [], + "label": "authentication", + "description": [], + "signature": [ + "{ hits: { total: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TotalHit", + "text": "TotalHit" + }, + "; hits: ArrayLike<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.AuthenticationHit", + "text": "AuthenticationHit" + }, + ">; }; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 83 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AuthenticationHit", + "type": "Interface", + "tags": [], + "label": "AuthenticationHit", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.AuthenticationHit", + "text": "AuthenticationHit" + }, + " extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.Hit", + "text": "Hit" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 55 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.AuthenticationHit._source", + "type": "Object", + "tags": [], + "label": "_source", + "description": [], + "signature": [ + "{ '@timestamp': string; lastSuccess?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.LastSourceHost", + "text": "LastSourceHost" + }, + " | undefined; lastFailure?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.LastSourceHost", + "text": "LastSourceHost" + }, + " | undefined; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 56 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AuthenticationHit.user", + "type": "string", + "tags": [], + "label": "user", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 61 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AuthenticationHit.failures", + "type": "number", + "tags": [], + "label": "failures", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 62 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AuthenticationHit.successes", + "type": "number", + "tags": [], + "label": "successes", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 63 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AuthenticationHit.cursor", + "type": "string", + "tags": [], + "label": "cursor", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 64 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AuthenticationHit.sort", + "type": "Array", + "tags": [], + "label": "sort", + "description": [], + "signature": [ + "React.ReactText[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 65 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AuthenticationItem", + "type": "Interface", + "tags": [], + "label": "AuthenticationItem", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 40 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.AuthenticationItem._id", + "type": "string", + "tags": [], + "label": "_id", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 41 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AuthenticationItem.failures", + "type": "number", + "tags": [], + "label": "failures", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 42 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AuthenticationItem.successes", + "type": "number", + "tags": [], + "label": "successes", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 43 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AuthenticationItem.user", + "type": "Object", + "tags": [], + "label": "user", + "description": [], + "signature": [ + "UserEcs" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 44 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AuthenticationItem.lastSuccess", + "type": "CompoundType", + "tags": [], + "label": "lastSuccess", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.LastSourceHost", + "text": "LastSourceHost" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 45 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AuthenticationItem.lastFailure", + "type": "CompoundType", + "tags": [], + "label": "lastFailure", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.LastSourceHost", + "text": "LastSourceHost" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 46 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AuthenticationsActionGroupData", + "type": "Interface", + "tags": [], + "label": "AuthenticationsActionGroupData", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/authentications/index.ts", + "lineNumber": 14 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.AuthenticationsActionGroupData.key", + "type": "number", + "tags": [], + "label": "key", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/authentications/index.ts", + "lineNumber": 15 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AuthenticationsActionGroupData.events", + "type": "Object", + "tags": [], + "label": "events", + "description": [], + "signature": [ + "{ bucket: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.AuthenticationsOverTimeHistogramData", + "text": "AuthenticationsOverTimeHistogramData" + }, + "[]; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/authentications/index.ts", + "lineNumber": 16 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AuthenticationsActionGroupData.doc_count", + "type": "number", + "tags": [], + "label": "doc_count", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/authentications/index.ts", + "lineNumber": 19 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AuthenticationsEdges", + "type": "Interface", + "tags": [], + "label": "AuthenticationsEdges", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 35 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.AuthenticationsEdges.node", + "type": "Object", + "tags": [], + "label": "node", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.AuthenticationItem", + "text": "AuthenticationItem" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 36 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AuthenticationsEdges.cursor", + "type": "Object", + "tags": [], + "label": "cursor", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.CursorType", + "text": "CursorType" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 37 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AuthenticationsOverTimeHistogramData", + "type": "Interface", + "tags": [], + "label": "AuthenticationsOverTimeHistogramData", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/authentications/index.ts", + "lineNumber": 8 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.AuthenticationsOverTimeHistogramData.key_as_string", + "type": "string", + "tags": [], + "label": "key_as_string", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/authentications/index.ts", + "lineNumber": 9 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AuthenticationsOverTimeHistogramData.key", + "type": "number", + "tags": [], + "label": "key", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/authentications/index.ts", + "lineNumber": 10 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AuthenticationsOverTimeHistogramData.doc_count", + "type": "number", + "tags": [], + "label": "doc_count", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/authentications/index.ts", + "lineNumber": 11 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AutonomousSystem", + "type": "Interface", + "tags": [], + "label": "AutonomousSystem", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 36 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.AutonomousSystem.number", + "type": "CompoundType", + "tags": [], + "label": "number", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 37 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AutonomousSystem.organization", + "type": "CompoundType", + "tags": [], + "label": "organization", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.AutonomousSystemOrganization", + "text": "AutonomousSystemOrganization" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 38 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AutonomousSystemHit", + "type": "Interface", + "tags": [], + "label": "AutonomousSystemHit", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.AutonomousSystemHit", + "text": "AutonomousSystemHit" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 73 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.AutonomousSystemHit.doc_count", + "type": "number", + "tags": [], + "label": "doc_count", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 74 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AutonomousSystemHit.top_as", + "type": "Object", + "tags": [], + "label": "top_as", + "description": [], + "signature": [ + "{ hits: { total: number | ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TotalValue", + "text": "TotalValue" + }, + "; max_score: number | null; hits: { _source: T; sort?: [number] | undefined; _index?: string | undefined; _type?: string | undefined; _id?: string | undefined; _score?: number | null | undefined; }[]; }; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 75 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AutonomousSystemItem", + "type": "Interface", + "tags": [], + "label": "AutonomousSystemItem", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 59 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.AutonomousSystemItem.name", + "type": "CompoundType", + "tags": [], + "label": "name", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 60 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AutonomousSystemItem.number", + "type": "CompoundType", + "tags": [], + "label": "number", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 61 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AutonomousSystemOrganization", + "type": "Interface", + "tags": [], + "label": "AutonomousSystemOrganization", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 41 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.AutonomousSystemOrganization.name", + "type": "CompoundType", + "tags": [], + "label": "name", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 42 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.BrowserField", + "type": "Interface", + "tags": [], + "label": "BrowserField", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 63 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.BrowserField.aggregatable", + "type": "boolean", + "tags": [], + "label": "aggregatable", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 64 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.BrowserField.category", + "type": "string", + "tags": [], + "label": "category", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 65 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.BrowserField.description", + "type": "CompoundType", + "tags": [], + "label": "description", + "description": [], + "signature": [ + "string | null" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 66 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.BrowserField.example", + "type": "CompoundType", + "tags": [], + "label": "example", + "description": [], + "signature": [ + "string | number | null" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 67 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.BrowserField.fields", + "type": "Object", + "tags": [], + "label": "fields", + "description": [], + "signature": [ + "{ readonly [x: string]: Partial<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.BrowserField", + "text": "BrowserField" + }, + ">; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 68 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.BrowserField.format", + "type": "string", + "tags": [], + "label": "format", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 69 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.BrowserField.indexes", + "type": "Array", + "tags": [], + "label": "indexes", + "description": [], + "signature": [ + "string[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 70 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.BrowserField.name", + "type": "string", + "tags": [], + "label": "name", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 71 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.BrowserField.searchable", + "type": "boolean", + "tags": [], + "label": "searchable", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 72 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.BrowserField.type", + "type": "string", + "tags": [], + "label": "type", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 73 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.BrowserField.subType", + "type": "Object", + "tags": [], + "label": "subType", + "description": [], + "signature": [ + "{ [key: string]: unknown; nested?: { path: string; } | undefined; } | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 74 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.BulkGetInput", + "type": "Interface", + "tags": [], + "label": "BulkGetInput", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 429 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.BulkGetInput.type", + "type": "string", + "tags": [], + "label": "type", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 430 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.BulkGetInput.id", + "type": "string", + "tags": [], + "label": "id", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 431 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ColumnHeaderInput", + "type": "Interface", + "tags": [], + "label": "ColumnHeaderInput", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 80 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.ColumnHeaderInput.aggregatable", + "type": "CompoundType", + "tags": [], + "label": "aggregatable", + "description": [], + "signature": [ + "boolean | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 81 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ColumnHeaderInput.category", + "type": "CompoundType", + "tags": [], + "label": "category", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 82 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ColumnHeaderInput.columnHeaderType", + "type": "CompoundType", + "tags": [], + "label": "columnHeaderType", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 83 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ColumnHeaderInput.description", + "type": "CompoundType", + "tags": [], + "label": "description", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 84 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ColumnHeaderInput.example", + "type": "CompoundType", + "tags": [], + "label": "example", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 85 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ColumnHeaderInput.indexes", + "type": "CompoundType", + "tags": [], + "label": "indexes", + "description": [], + "signature": [ + "string[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 86 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ColumnHeaderInput.id", + "type": "CompoundType", + "tags": [], + "label": "id", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 87 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ColumnHeaderInput.name", + "type": "CompoundType", + "tags": [], + "label": "name", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 88 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ColumnHeaderInput.placeholder", + "type": "CompoundType", + "tags": [], + "label": "placeholder", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 89 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ColumnHeaderInput.searchable", + "type": "CompoundType", + "tags": [], + "label": "searchable", + "description": [], + "signature": [ + "boolean | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 90 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ColumnHeaderInput.type", + "type": "CompoundType", + "tags": [], + "label": "type", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 91 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ColumnHeaderResult", + "type": "Interface", + "tags": [], + "label": "ColumnHeaderResult", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 594 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.ColumnHeaderResult.aggregatable", + "type": "CompoundType", + "tags": [], + "label": "aggregatable", + "description": [], + "signature": [ + "boolean | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 595 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ColumnHeaderResult.category", + "type": "CompoundType", + "tags": [], + "label": "category", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 596 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ColumnHeaderResult.columnHeaderType", + "type": "CompoundType", + "tags": [], + "label": "columnHeaderType", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 597 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ColumnHeaderResult.description", + "type": "CompoundType", + "tags": [], + "label": "description", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 598 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ColumnHeaderResult.example", + "type": "CompoundType", + "tags": [], + "label": "example", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 599 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ColumnHeaderResult.indexes", + "type": "CompoundType", + "tags": [], + "label": "indexes", + "description": [], + "signature": [ + "string[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 600 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ColumnHeaderResult.id", + "type": "CompoundType", + "tags": [], + "label": "id", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 601 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ColumnHeaderResult.name", + "type": "CompoundType", + "tags": [], + "label": "name", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 602 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ColumnHeaderResult.placeholder", + "type": "CompoundType", + "tags": [], + "label": "placeholder", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 603 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ColumnHeaderResult.searchable", + "type": "CompoundType", + "tags": [], + "label": "searchable", + "description": [], + "signature": [ + "boolean | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 604 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ColumnHeaderResult.type", + "type": "CompoundType", + "tags": [], + "label": "type", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 605 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ColumnRenderer", + "type": "Interface", + "tags": [], + "label": "ColumnRenderer", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.ts", + "lineNumber": 35 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.ColumnRenderer.isInstance", + "type": "Function", + "tags": [], + "label": "isInstance", + "description": [], + "signature": [ + "(columnName: string, data: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineNonEcsData", + "text": "TimelineNonEcsData" + }, + "[]) => boolean" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.ts", + "lineNumber": 36 + }, + "deprecated": false, + "returnComment": [], + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.columnName", + "type": "string", + "tags": [], + "label": "columnName", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.ts", + "lineNumber": 36 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.data", + "type": "Array", + "tags": [], + "label": "data", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineNonEcsData", + "text": "TimelineNonEcsData" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.ts", + "lineNumber": 36 + }, + "deprecated": false + } + ] + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ColumnRenderer.renderColumn", + "type": "Function", + "tags": [], + "label": "renderColumn", + "description": [], + "signature": [ + "({ columnName, eventId, field, timelineId, truncate, values, linkValues, }: { columnName: string; eventId: string; field: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ColumnHeaderOptions", + "text": "ColumnHeaderOptions" + }, + "; timelineId: string; truncate?: boolean | undefined; values: string[] | null | undefined; linkValues?: string[] | null | undefined; }) => React.ReactNode" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.ts", + "lineNumber": 37 + }, + "deprecated": false, + "returnComment": [], + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.__0", + "type": "Object", + "tags": [], + "label": "__0", + "description": [], + "signature": [ + "{ columnName: string; eventId: string; field: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ColumnHeaderOptions", + "text": "ColumnHeaderOptions" + }, + "; timelineId: string; truncate?: boolean | undefined; values: string[] | null | undefined; linkValues?: string[] | null | undefined; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.ts", + "lineNumber": 37 + }, + "deprecated": false + } + ] + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.CursorType", + "type": "Interface", + "tags": [], + "label": "CursorType", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 16 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.CursorType.value", + "type": "CompoundType", + "tags": [], + "label": "value", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 17 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.CursorType.tiebreaker", + "type": "CompoundType", + "tags": [], + "label": "tiebreaker", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 18 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DataProvider", + "type": "Interface", + "tags": [], + "label": "DataProvider", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 32 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.DataProvider.id", + "type": "string", + "tags": [], + "label": "id", + "description": [ + "Uniquely identifies a data provider" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 34 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DataProvider.name", + "type": "string", + "tags": [], + "label": "name", + "description": [ + "Human readable" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 36 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DataProvider.enabled", + "type": "boolean", + "tags": [], + "label": "enabled", + "description": [ + "\nWhen `false`, a data provider is temporarily disabled, but not removed from\nthe timeline. default: `true`" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 41 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DataProvider.excluded", + "type": "boolean", + "tags": [], + "label": "excluded", + "description": [ + "\nWhen `true`, a data provider is excluding the match, but not removed from\nthe timeline. default: `false`" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 46 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DataProvider.kqlQuery", + "type": "string", + "tags": [], + "label": "kqlQuery", + "description": [ + "\nReturns the KQL query who have been added by user" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 50 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DataProvider.queryMatch", + "type": "Object", + "tags": [], + "label": "queryMatch", + "description": [ + "\nReturns a query properties that, when executed, returns the data for this provider" + ], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.QueryMatch", + "text": "QueryMatch" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 54 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DataProvider.and", + "type": "Array", + "tags": [], + "label": "and", + "description": [ + "\nAdditional query clauses that are ANDed with this query to narrow results" + ], + "signature": [ + "Pick<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProvider", + "text": "DataProvider" + }, + ", \"type\" | \"enabled\" | \"id\" | \"name\" | \"excluded\" | \"kqlQuery\" | \"queryMatch\">[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 58 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DataProvider.type", + "type": "CompoundType", + "tags": [], + "label": "type", + "description": [ + "\nReturns a DataProviderType" + ], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + " | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 62 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DataProviderInput", + "type": "Interface", + "tags": [], + "label": "DataProviderInput", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 106 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.DataProviderInput.id", + "type": "CompoundType", + "tags": [], + "label": "id", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 107 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DataProviderInput.name", + "type": "CompoundType", + "tags": [], + "label": "name", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 108 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DataProviderInput.enabled", + "type": "CompoundType", + "tags": [], + "label": "enabled", + "description": [], + "signature": [ + "boolean | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 109 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DataProviderInput.excluded", + "type": "CompoundType", + "tags": [], + "label": "excluded", + "description": [], + "signature": [ + "boolean | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 110 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DataProviderInput.kqlQuery", + "type": "CompoundType", + "tags": [], + "label": "kqlQuery", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 111 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DataProviderInput.queryMatch", + "type": "CompoundType", + "tags": [], + "label": "queryMatch", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.QueryMatchInput", + "text": "QueryMatchInput" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 112 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DataProviderInput.and", + "type": "CompoundType", + "tags": [], + "label": "and", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DataProviderInput", + "text": "DataProviderInput" + }, + "[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 113 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DataProviderInput.type", + "type": "CompoundType", + "tags": [], + "label": "type", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 114 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DataProviderResult", + "type": "Interface", + "tags": [], + "label": "DataProviderResult", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 608 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.DataProviderResult.id", + "type": "CompoundType", + "tags": [], + "label": "id", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 609 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DataProviderResult.name", + "type": "CompoundType", + "tags": [], + "label": "name", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 610 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DataProviderResult.enabled", + "type": "CompoundType", + "tags": [], + "label": "enabled", + "description": [], + "signature": [ + "boolean | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 611 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DataProviderResult.excluded", + "type": "CompoundType", + "tags": [], + "label": "excluded", + "description": [], + "signature": [ + "boolean | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 612 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DataProviderResult.kqlQuery", + "type": "CompoundType", + "tags": [], + "label": "kqlQuery", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 613 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DataProviderResult.queryMatch", + "type": "CompoundType", + "tags": [], + "label": "queryMatch", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.QueryMatchResult", + "text": "QueryMatchResult" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 614 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DataProviderResult.type", + "type": "CompoundType", + "tags": [], + "label": "type", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 615 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DataProviderResult.and", + "type": "CompoundType", + "tags": [], + "label": "and", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DataProviderResult", + "text": "DataProviderResult" + }, + "[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 616 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DateRangePickerInput", + "type": "Interface", + "tags": [], + "label": "DateRangePickerInput", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 163 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.DateRangePickerInput.start", + "type": "CompoundType", + "tags": [], + "label": "start", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 164 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DateRangePickerInput.end", + "type": "CompoundType", + "tags": [], + "label": "end", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 165 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DateRangePickerResult", + "type": "Interface", + "tags": [], + "label": "DateRangePickerResult", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 627 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.DateRangePickerResult.start", + "type": "Any", + "tags": [], + "label": "start", + "description": [], + "signature": [ + "any" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 629 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DateRangePickerResult.end", + "type": "Any", + "tags": [], + "label": "end", + "description": [], + "signature": [ + "any" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 631 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DescriptionList", + "type": "Interface", + "tags": [], + "label": "DescriptionList", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/utility_types.ts", + "lineNumber": 12 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.DescriptionList.title", + "type": "CompoundType", + "tags": [], + "label": "title", + "description": [], + "signature": [ + "string | number | boolean | {} | React.ReactElement React.ReactElement React.Component)> | null) | (new (props: any) => React.Component)> | React.ReactNodeArray | React.ReactPortal" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/utility_types.ts", + "lineNumber": 13 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DescriptionList.description", + "type": "CompoundType", + "tags": [], + "label": "description", + "description": [], + "signature": [ + "string | number | boolean | {} | React.ReactElement React.ReactElement React.Component)> | null) | (new (props: any) => React.Component)> | React.ReactNodeArray | React.ReactPortal" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/utility_types.ts", + "lineNumber": 14 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DnsHistogramGroupData", + "type": "Interface", + "tags": [], + "label": "DnsHistogramGroupData", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/dns/index.ts", + "lineNumber": 21 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.DnsHistogramGroupData.key", + "type": "number", + "tags": [], + "label": "key", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/dns/index.ts", + "lineNumber": 22 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DnsHistogramGroupData.doc_count", + "type": "number", + "tags": [], + "label": "doc_count", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/dns/index.ts", + "lineNumber": 23 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DnsHistogramGroupData.key_as_string", + "type": "string", + "tags": [], + "label": "key_as_string", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/dns/index.ts", + "lineNumber": 24 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DnsHistogramGroupData.histogram", + "type": "Object", + "tags": [], + "label": "histogram", + "description": [], + "signature": [ + "DnsHistogramBucket" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/dns/index.ts", + "lineNumber": 25 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DnsHistogramSubBucket", + "type": "Interface", + "tags": [], + "label": "DnsHistogramSubBucket", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/dns/index.ts", + "lineNumber": 8 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.DnsHistogramSubBucket.key", + "type": "string", + "tags": [], + "label": "key", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/dns/index.ts", + "lineNumber": 9 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DnsHistogramSubBucket.doc_count", + "type": "number", + "tags": [], + "label": "doc_count", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/dns/index.ts", + "lineNumber": 10 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DnsHistogramSubBucket.orderAgg", + "type": "Object", + "tags": [], + "label": "orderAgg", + "description": [], + "signature": [ + "{ value: number; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/dns/index.ts", + "lineNumber": 11 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DocValueFieldsInput", + "type": "Interface", + "tags": [], + "label": "DocValueFieldsInput", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/index.ts", + "lineNumber": 208 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.DocValueFieldsInput.field", + "type": "string", + "tags": [], + "label": "field", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/index.ts", + "lineNumber": 209 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DocValueFieldsInput.format", + "type": "string", + "tags": [], + "label": "format", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/index.ts", + "lineNumber": 211 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EndpointFields", + "type": "Interface", + "tags": [], + "label": "EndpointFields", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 24 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.EndpointFields.endpointPolicy", + "type": "CompoundType", + "tags": [], + "label": "endpointPolicy", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 25 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EndpointFields.sensorVersion", + "type": "CompoundType", + "tags": [], + "label": "sensorVersion", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 26 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EndpointFields.policyStatus", + "type": "CompoundType", + "tags": [], + "label": "policyStatus", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostPolicyResponseActionStatus", + "text": "HostPolicyResponseActionStatus" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 27 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EndpointFields.id", + "type": "CompoundType", + "tags": [], + "label": "id", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 28 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EqlOptionsData", + "type": "Interface", + "tags": [], + "label": "EqlOptionsData", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 32 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.EqlOptionsData.keywordFields", + "type": "Array", + "tags": [], + "label": "keywordFields", + "description": [], + "signature": [ + "EuiComboBoxOptionOption", + "[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 33 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EqlOptionsData.dateFields", + "type": "Array", + "tags": [], + "label": "dateFields", + "description": [], + "signature": [ + "EuiComboBoxOptionOption", + "[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 34 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EqlOptionsData.nonDateFields", + "type": "Array", + "tags": [], + "label": "nonDateFields", + "description": [], + "signature": [ + "EuiComboBoxOptionOption", + "[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 35 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EqlOptionsInput", + "type": "Interface", + "tags": [], + "label": "EqlOptionsInput", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 117 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.EqlOptionsInput.eventCategoryField", + "type": "CompoundType", + "tags": [], + "label": "eventCategoryField", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 118 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EqlOptionsInput.tiebreakerField", + "type": "CompoundType", + "tags": [], + "label": "tiebreakerField", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 119 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EqlOptionsInput.timestampField", + "type": "CompoundType", + "tags": [], + "label": "timestampField", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 120 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EqlOptionsInput.query", + "type": "CompoundType", + "tags": [], + "label": "query", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 121 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EqlOptionsInput.size", + "type": "CompoundType", + "tags": [], + "label": "size", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 122 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EqlOptionsResult", + "type": "Interface", + "tags": [], + "label": "EqlOptionsResult", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 634 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.EqlOptionsResult.eventCategoryField", + "type": "CompoundType", + "tags": [], + "label": "eventCategoryField", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 635 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EqlOptionsResult.tiebreakerField", + "type": "CompoundType", + "tags": [], + "label": "tiebreakerField", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 636 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EqlOptionsResult.timestampField", + "type": "CompoundType", + "tags": [], + "label": "timestampField", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 637 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EqlOptionsResult.query", + "type": "CompoundType", + "tags": [], + "label": "query", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 638 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EqlOptionsResult.size", + "type": "Any", + "tags": [], + "label": "size", + "description": [], + "signature": [ + "any" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 640 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EqlOptionsSelected", + "type": "Interface", + "tags": [], + "label": "EqlOptionsSelected", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 38 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.EqlOptionsSelected.eventCategoryField", + "type": "string", + "tags": [], + "label": "eventCategoryField", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 39 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EqlOptionsSelected.tiebreakerField", + "type": "string", + "tags": [], + "label": "tiebreakerField", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 40 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EqlOptionsSelected.timestampField", + "type": "string", + "tags": [], + "label": "timestampField", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 41 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EqlOptionsSelected.query", + "type": "string", + "tags": [], + "label": "query", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 42 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EqlOptionsSelected.size", + "type": "number", + "tags": [], + "label": "size", + "description": [], + "signature": [ + "number | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 43 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EventHit", + "type": "Interface", + "tags": [], + "label": "EventHit", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.EventHit", + "text": "EventHit" + }, + " extends ", + "SearchHit", + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/events/index.ts", + "lineNumber": 33 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.EventHit.sort", + "type": "Array", + "tags": [], + "label": "sort", + "description": [], + "signature": [ + "string[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/events/index.ts", + "lineNumber": 34 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EventHit._source", + "type": "Object", + "tags": [], + "label": "_source", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.EventSource", + "text": "EventSource" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/events/index.ts", + "lineNumber": 35 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EventHit.fields", + "type": "Object", + "tags": [], + "label": "fields", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.Fields", + "text": "Fields" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/events/index.ts", + "lineNumber": 36 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EventHit.aggregations", + "type": "Object", + "tags": [], + "label": "aggregations", + "description": [], + "signature": [ + "{ [agg: string]: any; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/events/index.ts", + "lineNumber": 37 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EventsActionGroupData", + "type": "Interface", + "tags": [], + "label": "EventsActionGroupData", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/events/index.ts", + "lineNumber": 21 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.EventsActionGroupData.key", + "type": "number", + "tags": [], + "label": "key", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/events/index.ts", + "lineNumber": 22 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EventsActionGroupData.events", + "type": "Object", + "tags": [], + "label": "events", + "description": [], + "signature": [ + "{ bucket: EventsMatrixHistogramData[]; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/events/index.ts", + "lineNumber": 23 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EventsActionGroupData.doc_count", + "type": "number", + "tags": [], + "label": "doc_count", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/events/index.ts", + "lineNumber": 26 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EventSource", + "type": "Interface", + "tags": [], + "label": "EventSource", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/events/index.ts", + "lineNumber": 16 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.EventSource.Unnamed", + "type": "Any", + "tags": [], + "label": "Unnamed", + "description": [], + "signature": [ + "any" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/events/index.ts", + "lineNumber": 18 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.Explanation", + "type": "Interface", + "tags": [], + "label": "Explanation", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/common/index.ts", + "lineNumber": 37 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.Explanation.value", + "type": "number", + "tags": [], + "label": "value", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/common/index.ts", + "lineNumber": 38 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.Explanation.description", + "type": "string", + "tags": [], + "label": "description", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/common/index.ts", + "lineNumber": 39 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.Explanation.details", + "type": "Array", + "tags": [], + "label": "details", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.Explanation", + "text": "Explanation" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/common/index.ts", + "lineNumber": 40 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ExportedNotes", + "type": "Interface", + "tags": [], + "label": "ExportedNotes", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 414 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.ExportedNotes.eventNotes", + "type": "Array", + "tags": [], + "label": "eventNotes", + "description": [], + "signature": [ + "NoteSavedObject", + "[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 415 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ExportedNotes.globalNotes", + "type": "Array", + "tags": [], + "label": "globalNotes", + "description": [], + "signature": [ + "NoteSavedObject", + "[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 416 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ExportTimelineNotFoundError", + "type": "Interface", + "tags": [], + "label": "ExportTimelineNotFoundError", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 424 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.ExportTimelineNotFoundError.statusCode", + "type": "number", + "tags": [], + "label": "statusCode", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 425 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ExportTimelineNotFoundError.message", + "type": "string", + "tags": [], + "label": "message", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 426 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.Fields", + "type": "Interface", + "tags": [], + "label": "Fields", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.Fields", + "text": "Fields" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/events/index.ts", + "lineNumber": 29 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.Fields.Unnamed", + "type": "Any", + "tags": [], + "label": "Unnamed", + "description": [], + "signature": [ + "any" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/events/index.ts", + "lineNumber": 30 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterMetaTimelineInput", + "type": "Interface", + "tags": [], + "label": "FilterMetaTimelineInput", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 125 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterMetaTimelineInput.alias", + "type": "CompoundType", + "tags": [], + "label": "alias", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 126 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterMetaTimelineInput.controlledBy", + "type": "CompoundType", + "tags": [], + "label": "controlledBy", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 127 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterMetaTimelineInput.disabled", + "type": "CompoundType", + "tags": [], + "label": "disabled", + "description": [], + "signature": [ + "boolean | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 128 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterMetaTimelineInput.field", + "type": "CompoundType", + "tags": [], + "label": "field", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 129 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterMetaTimelineInput.formattedValue", + "type": "CompoundType", + "tags": [], + "label": "formattedValue", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 130 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterMetaTimelineInput.index", + "type": "CompoundType", + "tags": [], + "label": "index", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 131 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterMetaTimelineInput.key", + "type": "CompoundType", + "tags": [], + "label": "key", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 132 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterMetaTimelineInput.negate", + "type": "CompoundType", + "tags": [], + "label": "negate", + "description": [], + "signature": [ + "boolean | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 133 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterMetaTimelineInput.params", + "type": "CompoundType", + "tags": [], + "label": "params", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 134 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterMetaTimelineInput.type", + "type": "CompoundType", + "tags": [], + "label": "type", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 135 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterMetaTimelineInput.value", + "type": "CompoundType", + "tags": [], + "label": "value", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 136 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterMetaTimelineResult", + "type": "Interface", + "tags": [], + "label": "FilterMetaTimelineResult", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 653 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterMetaTimelineResult.alias", + "type": "CompoundType", + "tags": [], + "label": "alias", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 654 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterMetaTimelineResult.controlledBy", + "type": "CompoundType", + "tags": [], + "label": "controlledBy", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 655 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterMetaTimelineResult.disabled", + "type": "CompoundType", + "tags": [], + "label": "disabled", + "description": [], + "signature": [ + "boolean | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 656 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterMetaTimelineResult.field", + "type": "CompoundType", + "tags": [], + "label": "field", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 657 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterMetaTimelineResult.formattedValue", + "type": "CompoundType", + "tags": [], + "label": "formattedValue", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 658 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterMetaTimelineResult.index", + "type": "CompoundType", + "tags": [], + "label": "index", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 659 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterMetaTimelineResult.key", + "type": "CompoundType", + "tags": [], + "label": "key", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 660 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterMetaTimelineResult.negate", + "type": "CompoundType", + "tags": [], + "label": "negate", + "description": [], + "signature": [ + "boolean | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 661 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterMetaTimelineResult.params", + "type": "CompoundType", + "tags": [], + "label": "params", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 662 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterMetaTimelineResult.type", + "type": "CompoundType", + "tags": [], + "label": "type", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 663 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterMetaTimelineResult.value", + "type": "CompoundType", + "tags": [], + "label": "value", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 664 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterTimelineInput", + "type": "Interface", + "tags": [], + "label": "FilterTimelineInput", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 139 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterTimelineInput.exists", + "type": "CompoundType", + "tags": [], + "label": "exists", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 140 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterTimelineInput.meta", + "type": "CompoundType", + "tags": [], + "label": "meta", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.FilterMetaTimelineInput", + "text": "FilterMetaTimelineInput" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 141 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterTimelineInput.match_all", + "type": "CompoundType", + "tags": [], + "label": "match_all", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 142 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterTimelineInput.missing", + "type": "CompoundType", + "tags": [], + "label": "missing", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 143 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterTimelineInput.query", + "type": "CompoundType", + "tags": [], + "label": "query", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 144 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterTimelineInput.range", + "type": "CompoundType", + "tags": [], + "label": "range", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 145 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterTimelineInput.script", + "type": "CompoundType", + "tags": [], + "label": "script", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 146 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterTimelineResult", + "type": "Interface", + "tags": [], + "label": "FilterTimelineResult", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 643 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterTimelineResult.exists", + "type": "CompoundType", + "tags": [], + "label": "exists", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 644 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterTimelineResult.meta", + "type": "CompoundType", + "tags": [], + "label": "meta", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.FilterMetaTimelineResult", + "text": "FilterMetaTimelineResult" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 645 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterTimelineResult.match_all", + "type": "CompoundType", + "tags": [], + "label": "match_all", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 646 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterTimelineResult.missing", + "type": "CompoundType", + "tags": [], + "label": "missing", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 647 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterTimelineResult.query", + "type": "CompoundType", + "tags": [], + "label": "query", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 648 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterTimelineResult.range", + "type": "CompoundType", + "tags": [], + "label": "range", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 649 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FilterTimelineResult.script", + "type": "CompoundType", + "tags": [], + "label": "script", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 650 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.GenericBuckets", + "type": "Interface", + "tags": [], + "label": "GenericBuckets", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/common/index.ts", + "lineNumber": 70 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.GenericBuckets.key", + "type": "string", + "tags": [], + "label": "key", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/common/index.ts", + "lineNumber": 71 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.GenericBuckets.doc_count", + "type": "number", + "tags": [], + "label": "doc_count", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/common/index.ts", + "lineNumber": 72 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.GeoItem", + "type": "Interface", + "tags": [], + "label": "GeoItem", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/common/index.ts", + "lineNumber": 47 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.GeoItem.geo", + "type": "CompoundType", + "tags": [], + "label": "geo", + "description": [], + "signature": [ + "GeoEcs", + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/common/index.ts", + "lineNumber": 48 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.GeoItem.flowTarget", + "type": "CompoundType", + "tags": [], + "label": "flowTarget", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.FlowTargetSourceDest", + "text": "FlowTargetSourceDest" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/common/index.ts", + "lineNumber": 49 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.GetAllTimelineVariables", + "type": "Interface", + "tags": [], + "label": "GetAllTimelineVariables", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 724 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.GetAllTimelineVariables.pageInfo", + "type": "Object", + "tags": [], + "label": "pageInfo", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.PageInfoTimeline", + "text": "PageInfoTimeline" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 725 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.GetAllTimelineVariables.search", + "type": "CompoundType", + "tags": [], + "label": "search", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 726 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.GetAllTimelineVariables.sort", + "type": "CompoundType", + "tags": [], + "label": "sort", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.SortTimeline", + "text": "SortTimeline" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 727 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.GetAllTimelineVariables.onlyUserFavorite", + "type": "CompoundType", + "tags": [], + "label": "onlyUserFavorite", + "description": [], + "signature": [ + "boolean | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 728 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.GetAllTimelineVariables.timelineType", + "type": "CompoundType", + "tags": [], + "label": "timelineType", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 729 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.GetAllTimelineVariables.status", + "type": "CompoundType", + "tags": [], + "label": "status", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 730 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HeaderActionProps", + "type": "Interface", + "tags": [], + "label": "HeaderActionProps", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 43 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HeaderActionProps.width", + "type": "number", + "tags": [], + "label": "width", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 44 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HeaderActionProps.browserFields", + "type": "Object", + "tags": [], + "label": "browserFields", + "description": [], + "signature": [ + "{ readonly [x: string]: Partial<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.BrowserField", + "text": "BrowserField" + }, + ">; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 45 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HeaderActionProps.columnHeaders", + "type": "Array", + "tags": [], + "label": "columnHeaders", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ColumnHeaderOptions", + "text": "ColumnHeaderOptions" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 46 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HeaderActionProps.isEventViewer", + "type": "CompoundType", + "tags": [], + "label": "isEventViewer", + "description": [], + "signature": [ + "boolean | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 47 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HeaderActionProps.isSelectAllChecked", + "type": "boolean", + "tags": [], + "label": "isSelectAllChecked", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 48 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HeaderActionProps.onSelectAll", + "type": "Function", + "tags": [], + "label": "onSelectAll", + "description": [], + "signature": [ + "({ isSelected }: { isSelected: boolean; }) => void" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 49 + }, + "deprecated": false, + "returnComment": [], + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.__0", + "type": "Object", + "tags": [], + "label": "__0", + "description": [], + "signature": [ + "{ isSelected: boolean; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 49 + }, + "deprecated": false + } + ] + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HeaderActionProps.showEventsSelect", + "type": "boolean", + "tags": [], + "label": "showEventsSelect", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 50 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HeaderActionProps.showSelectAllCheckbox", + "type": "boolean", + "tags": [], + "label": "showSelectAllCheckbox", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 51 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HeaderActionProps.sort", + "type": "Array", + "tags": [], + "label": "sort", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SortColumnTimeline", + "text": "SortColumnTimeline" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 52 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HeaderActionProps.tabType", + "type": "Enum", + "tags": [], + "label": "tabType", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineTabs", + "text": "TimelineTabs" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 53 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HeaderActionProps.timelineId", + "type": "string", + "tags": [], + "label": "timelineId", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 54 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HistogramBucket", + "type": "Interface", + "tags": [], + "label": "HistogramBucket", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/common/index.ts", + "lineNumber": 8 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HistogramBucket.key", + "type": "number", + "tags": [], + "label": "key", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/common/index.ts", + "lineNumber": 9 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HistogramBucket.doc_count", + "type": "number", + "tags": [], + "label": "doc_count", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/common/index.ts", + "lineNumber": 10 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.Hit", + "type": "Interface", + "tags": [], + "label": "Hit", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/common/index.ts", + "lineNumber": 55 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.Hit._index", + "type": "string", + "tags": [], + "label": "_index", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/common/index.ts", + "lineNumber": 56 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.Hit._type", + "type": "string", + "tags": [], + "label": "_type", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/common/index.ts", + "lineNumber": 57 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.Hit._id", + "type": "string", + "tags": [], + "label": "_id", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/common/index.ts", + "lineNumber": 58 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.Hit._score", + "type": "CompoundType", + "tags": [], + "label": "_score", + "description": [], + "signature": [ + "number | null" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/common/index.ts", + "lineNumber": 59 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.Hits", + "type": "Interface", + "tags": [], + "label": "Hits", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.Hits", + "text": "Hits" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/common/index.ts", + "lineNumber": 62 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.Hits.hits", + "type": "Object", + "tags": [], + "label": "hits", + "description": [], + "signature": [ + "{ total: T; max_score: number | null; hits: U[]; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/common/index.ts", + "lineNumber": 63 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostAggEsData", + "type": "Interface", + "tags": [], + "label": "HostAggEsData", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostAggEsData", + "text": "HostAggEsData" + }, + " extends ", + "SearchHit", + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 106 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HostAggEsData.sort", + "type": "Array", + "tags": [], + "label": "sort", + "description": [], + "signature": [ + "string[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 107 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostAggEsData.aggregations", + "type": "Object", + "tags": [], + "label": "aggregations", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostAggEsItem", + "text": "HostAggEsItem" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 108 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostAggEsItem", + "type": "Interface", + "tags": [], + "label": "HostAggEsItem", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 74 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HostAggEsItem.cloud_instance_id", + "type": "Object", + "tags": [], + "label": "cloud_instance_id", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostBuckets", + "text": "HostBuckets" + }, + " | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 75 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostAggEsItem.cloud_machine_type", + "type": "Object", + "tags": [], + "label": "cloud_machine_type", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostBuckets", + "text": "HostBuckets" + }, + " | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 76 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostAggEsItem.cloud_provider", + "type": "Object", + "tags": [], + "label": "cloud_provider", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostBuckets", + "text": "HostBuckets" + }, + " | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 77 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostAggEsItem.cloud_region", + "type": "Object", + "tags": [], + "label": "cloud_region", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostBuckets", + "text": "HostBuckets" + }, + " | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 78 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostAggEsItem.endpoint", + "type": "Object", + "tags": [], + "label": "endpoint", + "description": [], + "signature": [ + "{ id: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostBuckets", + "text": "HostBuckets" + }, + "; } | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 79 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostAggEsItem.host_architecture", + "type": "Object", + "tags": [], + "label": "host_architecture", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostBuckets", + "text": "HostBuckets" + }, + " | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 82 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostAggEsItem.host_id", + "type": "Object", + "tags": [], + "label": "host_id", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostBuckets", + "text": "HostBuckets" + }, + " | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 83 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostAggEsItem.host_ip", + "type": "Object", + "tags": [], + "label": "host_ip", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostBuckets", + "text": "HostBuckets" + }, + " | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 84 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostAggEsItem.host_mac", + "type": "Object", + "tags": [], + "label": "host_mac", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostBuckets", + "text": "HostBuckets" + }, + " | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 85 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostAggEsItem.host_name", + "type": "Object", + "tags": [], + "label": "host_name", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostBuckets", + "text": "HostBuckets" + }, + " | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 86 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostAggEsItem.host_os_name", + "type": "Object", + "tags": [], + "label": "host_os_name", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostBuckets", + "text": "HostBuckets" + }, + " | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 87 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostAggEsItem.host_os_version", + "type": "Object", + "tags": [], + "label": "host_os_version", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostBuckets", + "text": "HostBuckets" + }, + " | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 88 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostAggEsItem.host_type", + "type": "Object", + "tags": [], + "label": "host_type", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostBuckets", + "text": "HostBuckets" + }, + " | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 89 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostAggEsItem.key", + "type": "string", + "tags": [], + "label": "key", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 90 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostAggEsItem.os", + "type": "Object", + "tags": [], + "label": "os", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostOsHitsItem", + "text": "HostOsHitsItem" + }, + " | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 91 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostAuthenticationsRequestOptions", + "type": "Interface", + "tags": [], + "label": "HostAuthenticationsRequestOptions", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostAuthenticationsRequestOptions", + "text": "HostAuthenticationsRequestOptions" + }, + " extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestOptionsPaginated", + "text": "RequestOptionsPaginated" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 31 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HostAuthenticationsRequestOptions.defaultIndex", + "type": "Array", + "tags": [], + "label": "defaultIndex", + "description": [], + "signature": [ + "string[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 32 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostAuthenticationsStrategyResponse", + "type": "Interface", + "tags": [], + "label": "HostAuthenticationsStrategyResponse", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostAuthenticationsStrategyResponse", + "text": "HostAuthenticationsStrategyResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchResponse", + "text": "IEsSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 24 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HostAuthenticationsStrategyResponse.edges", + "type": "Array", + "tags": [], + "label": "edges", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.AuthenticationsEdges", + "text": "AuthenticationsEdges" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 25 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostAuthenticationsStrategyResponse.totalCount", + "type": "number", + "tags": [], + "label": "totalCount", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 26 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostAuthenticationsStrategyResponse.pageInfo", + "type": "Object", + "tags": [], + "label": "pageInfo", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.PageInfoPaginated", + "text": "PageInfoPaginated" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 27 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostAuthenticationsStrategyResponse.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 28 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostBucketItem", + "type": "Interface", + "tags": [], + "label": "HostBucketItem", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 49 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HostBucketItem.key", + "type": "string", + "tags": [], + "label": "key", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 50 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostBucketItem.doc_count", + "type": "number", + "tags": [], + "label": "doc_count", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 51 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostBucketItem.timestamp", + "type": "Object", + "tags": [], + "label": "timestamp", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostValue", + "text": "HostValue" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 52 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostBuckets", + "type": "Interface", + "tags": [], + "label": "HostBuckets", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 55 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HostBuckets.buckets", + "type": "Array", + "tags": [], + "label": "buckets", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostBucketItem", + "text": "HostBucketItem" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 56 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostDetailsRequestOptions", + "type": "Interface", + "tags": [], + "label": "HostDetailsRequestOptions", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostDetailsRequestOptions", + "text": "HostDetailsRequestOptions" + }, + " extends Partial<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestOptionsPaginated", + "text": "RequestOptionsPaginated" + }, + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsFields", + "text": "HostsFields" + }, + ">>" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/details/index.ts", + "lineNumber": 20 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HostDetailsRequestOptions.hostName", + "type": "string", + "tags": [], + "label": "hostName", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/details/index.ts", + "lineNumber": 21 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostDetailsRequestOptions.skip", + "type": "CompoundType", + "tags": [], + "label": "skip", + "description": [], + "signature": [ + "boolean | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/details/index.ts", + "lineNumber": 22 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostDetailsRequestOptions.timerange", + "type": "Object", + "tags": [], + "label": "timerange", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimerangeInput", + "text": "TimerangeInput" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/details/index.ts", + "lineNumber": 23 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostDetailsRequestOptions.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/details/index.ts", + "lineNumber": 24 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostDetailsStrategyResponse", + "type": "Interface", + "tags": [], + "label": "HostDetailsStrategyResponse", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostDetailsStrategyResponse", + "text": "HostDetailsStrategyResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchResponse", + "text": "IEsSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/details/index.ts", + "lineNumber": 15 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HostDetailsStrategyResponse.hostDetails", + "type": "Object", + "tags": [], + "label": "hostDetails", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostItem", + "text": "HostItem" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/details/index.ts", + "lineNumber": 16 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostDetailsStrategyResponse.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/details/index.ts", + "lineNumber": 17 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostEsData", + "type": "Interface", + "tags": [], + "label": "HostEsData", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostEsData", + "text": "HostEsData" + }, + " extends ", + "SearchHit", + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 94 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HostEsData.sort", + "type": "Array", + "tags": [], + "label": "sort", + "description": [], + "signature": [ + "string[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 95 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostEsData.aggregations", + "type": "Object", + "tags": [], + "label": "aggregations", + "description": [], + "signature": [ + "{ host_count: { value: number; }; host_data: { buckets: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostAggEsItem", + "text": "HostAggEsItem" + }, + "[]; }; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 96 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostFirstLastSeenRequestOptions", + "type": "Interface", + "tags": [], + "label": "HostFirstLastSeenRequestOptions", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostFirstLastSeenRequestOptions", + "text": "HostFirstLastSeenRequestOptions" + }, + " extends Partial<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestOptionsPaginated", + "text": "RequestOptionsPaginated" + }, + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsFields", + "text": "HostsFields" + }, + ">>" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/first_last_seen/index.ts", + "lineNumber": 13 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HostFirstLastSeenRequestOptions.hostName", + "type": "string", + "tags": [], + "label": "hostName", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/first_last_seen/index.ts", + "lineNumber": 15 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostFirstLastSeenRequestOptions.order", + "type": "Enum", + "tags": [], + "label": "order", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Direction", + "text": "Direction" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/first_last_seen/index.ts", + "lineNumber": 16 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostFirstLastSeenStrategyResponse", + "type": "Interface", + "tags": [], + "label": "HostFirstLastSeenStrategyResponse", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostFirstLastSeenStrategyResponse", + "text": "HostFirstLastSeenStrategyResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchResponse", + "text": "IEsSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/first_last_seen/index.ts", + "lineNumber": 19 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HostFirstLastSeenStrategyResponse.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/first_last_seen/index.ts", + "lineNumber": 20 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostFirstLastSeenStrategyResponse.firstSeen", + "type": "CompoundType", + "tags": [], + "label": "firstSeen", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/first_last_seen/index.ts", + "lineNumber": 21 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostFirstLastSeenStrategyResponse.lastSeen", + "type": "CompoundType", + "tags": [], + "label": "lastSeen", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/first_last_seen/index.ts", + "lineNumber": 22 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostHit", + "type": "Interface", + "tags": [], + "label": "HostHit", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostHit", + "text": "HostHit" + }, + " extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.Hit", + "text": "Hit" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 111 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HostHit._source", + "type": "Object", + "tags": [], + "label": "_source", + "description": [], + "signature": [ + "{ '@timestamp'?: string | undefined; host: ", + "HostEcs", + "; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 112 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostHit.cursor", + "type": "string", + "tags": [], + "label": "cursor", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 116 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostHit.firstSeen", + "type": "string", + "tags": [], + "label": "firstSeen", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 117 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostHit.sort", + "type": "Array", + "tags": [], + "label": "sort", + "description": [], + "signature": [ + "React.ReactText[] | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 118 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostItem", + "type": "Interface", + "tags": [], + "label": "HostItem", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 35 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HostItem._id", + "type": "CompoundType", + "tags": [], + "label": "_id", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 36 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostItem.agent", + "type": "CompoundType", + "tags": [], + "label": "agent", + "description": [], + "signature": [ + "AgentFields | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 37 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostItem.cloud", + "type": "CompoundType", + "tags": [], + "label": "cloud", + "description": [], + "signature": [ + "CloudEcs", + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 38 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostItem.endpoint", + "type": "CompoundType", + "tags": [], + "label": "endpoint", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.EndpointFields", + "text": "EndpointFields" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 39 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostItem.host", + "type": "CompoundType", + "tags": [], + "label": "host", + "description": [], + "signature": [ + "HostEcs", + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 40 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostItem.lastSeen", + "type": "CompoundType", + "tags": [], + "label": "lastSeen", + "description": [], + "signature": [ + "string[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 41 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostOsHitsItem", + "type": "Interface", + "tags": [], + "label": "HostOsHitsItem", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 59 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HostOsHitsItem.hits", + "type": "Object", + "tags": [], + "label": "hits", + "description": [], + "signature": [ + "{ total: number | ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TotalValue", + "text": "TotalValue" + }, + "; max_score: number | null; hits: { _source: { host: { os: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.Maybe", + "text": "Maybe" + }, + "<", + "OsEcs", + ">; }; }; sort?: [number] | undefined; _index?: string | undefined; _type?: string | undefined; _id?: string | undefined; _score?: number | null | undefined; }[]; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 60 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsEdges", + "type": "Interface", + "tags": [], + "label": "HostsEdges", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/all/index.ts", + "lineNumber": 14 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsEdges.node", + "type": "Object", + "tags": [], + "label": "node", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostItem", + "text": "HostItem" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/all/index.ts", + "lineNumber": 15 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsEdges.cursor", + "type": "Object", + "tags": [], + "label": "cursor", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.CursorType", + "text": "CursorType" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/all/index.ts", + "lineNumber": 16 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiAuthenticationsHistogramCount", + "type": "Interface", + "tags": [], + "label": "HostsKpiAuthenticationsHistogramCount", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/authentications/index.ts", + "lineNumber": 13 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiAuthenticationsHistogramCount.doc_count", + "type": "number", + "tags": [], + "label": "doc_count", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/authentications/index.ts", + "lineNumber": 14 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiAuthenticationsHistogramCount.value", + "type": "number", + "tags": [], + "label": "value", + "description": [], + "signature": [ + "number | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/authentications/index.ts", + "lineNumber": 16 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiAuthenticationsStrategyResponse", + "type": "Interface", + "tags": [], + "label": "HostsKpiAuthenticationsStrategyResponse", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsKpiAuthenticationsStrategyResponse", + "text": "HostsKpiAuthenticationsStrategyResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchResponse", + "text": "IEsSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/authentications/index.ts", + "lineNumber": 21 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiAuthenticationsStrategyResponse.authenticationsSuccess", + "type": "CompoundType", + "tags": [], + "label": "authenticationsSuccess", + "description": [], + "signature": [ + "number | null" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/authentications/index.ts", + "lineNumber": 22 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiAuthenticationsStrategyResponse.authenticationsSuccessHistogram", + "type": "CompoundType", + "tags": [], + "label": "authenticationsSuccessHistogram", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsKpiHistogramData", + "text": "HostsKpiHistogramData" + }, + "[] | null" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/authentications/index.ts", + "lineNumber": 23 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiAuthenticationsStrategyResponse.authenticationsFailure", + "type": "CompoundType", + "tags": [], + "label": "authenticationsFailure", + "description": [], + "signature": [ + "number | null" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/authentications/index.ts", + "lineNumber": 24 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiAuthenticationsStrategyResponse.authenticationsFailureHistogram", + "type": "CompoundType", + "tags": [], + "label": "authenticationsFailureHistogram", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsKpiHistogramData", + "text": "HostsKpiHistogramData" + }, + "[] | null" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/authentications/index.ts", + "lineNumber": 25 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiAuthenticationsStrategyResponse.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/authentications/index.ts", + "lineNumber": 26 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiGeneralHistogramCount", + "type": "Interface", + "tags": [], + "label": "HostsKpiGeneralHistogramCount", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/common/index.ts", + "lineNumber": 22 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiGeneralHistogramCount.value", + "type": "number", + "tags": [], + "label": "value", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/common/index.ts", + "lineNumber": 23 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiHistogram", + "type": "Interface", + "tags": [], + "label": "HostsKpiHistogram", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsKpiHistogram", + "text": "HostsKpiHistogram" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/common/index.ts", + "lineNumber": 15 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiHistogram.key_as_string", + "type": "string", + "tags": [], + "label": "key_as_string", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/common/index.ts", + "lineNumber": 16 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiHistogram.key", + "type": "number", + "tags": [], + "label": "key", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/common/index.ts", + "lineNumber": 17 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiHistogram.doc_count", + "type": "number", + "tags": [], + "label": "doc_count", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/common/index.ts", + "lineNumber": 18 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiHistogram.count", + "type": "Uncategorized", + "tags": [], + "label": "count", + "description": [], + "signature": [ + "T" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/common/index.ts", + "lineNumber": 19 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiHistogramData", + "type": "Interface", + "tags": [], + "label": "HostsKpiHistogramData", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/common/index.ts", + "lineNumber": 10 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiHistogramData.x", + "type": "CompoundType", + "tags": [], + "label": "x", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/common/index.ts", + "lineNumber": 11 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiHistogramData.y", + "type": "CompoundType", + "tags": [], + "label": "y", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/common/index.ts", + "lineNumber": 12 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiHostsStrategyResponse", + "type": "Interface", + "tags": [], + "label": "HostsKpiHostsStrategyResponse", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsKpiHostsStrategyResponse", + "text": "HostsKpiHostsStrategyResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchResponse", + "text": "IEsSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/hosts/index.ts", + "lineNumber": 15 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiHostsStrategyResponse.hosts", + "type": "CompoundType", + "tags": [], + "label": "hosts", + "description": [], + "signature": [ + "number | null" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/hosts/index.ts", + "lineNumber": 16 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiHostsStrategyResponse.hostsHistogram", + "type": "CompoundType", + "tags": [], + "label": "hostsHistogram", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsKpiHistogramData", + "text": "HostsKpiHistogramData" + }, + "[] | null" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/hosts/index.ts", + "lineNumber": 17 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiHostsStrategyResponse.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/hosts/index.ts", + "lineNumber": 18 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiUniqueIpsStrategyResponse", + "type": "Interface", + "tags": [], + "label": "HostsKpiUniqueIpsStrategyResponse", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsKpiUniqueIpsStrategyResponse", + "text": "HostsKpiUniqueIpsStrategyResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchResponse", + "text": "IEsSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/unique_ips/index.ts", + "lineNumber": 15 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiUniqueIpsStrategyResponse.uniqueSourceIps", + "type": "CompoundType", + "tags": [], + "label": "uniqueSourceIps", + "description": [], + "signature": [ + "number | null" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/unique_ips/index.ts", + "lineNumber": 16 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiUniqueIpsStrategyResponse.uniqueSourceIpsHistogram", + "type": "CompoundType", + "tags": [], + "label": "uniqueSourceIpsHistogram", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsKpiHistogramData", + "text": "HostsKpiHistogramData" + }, + "[] | null" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/unique_ips/index.ts", + "lineNumber": 17 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiUniqueIpsStrategyResponse.uniqueDestinationIps", + "type": "CompoundType", + "tags": [], + "label": "uniqueDestinationIps", + "description": [], + "signature": [ + "number | null" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/unique_ips/index.ts", + "lineNumber": 18 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiUniqueIpsStrategyResponse.uniqueDestinationIpsHistogram", + "type": "CompoundType", + "tags": [], + "label": "uniqueDestinationIpsHistogram", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsKpiHistogramData", + "text": "HostsKpiHistogramData" + }, + "[] | null" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/unique_ips/index.ts", + "lineNumber": 19 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiUniqueIpsStrategyResponse.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/unique_ips/index.ts", + "lineNumber": 20 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsOverviewStrategyResponse", + "type": "Interface", + "tags": [], + "label": "HostsOverviewStrategyResponse", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsOverviewStrategyResponse", + "text": "HostsOverviewStrategyResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchResponse", + "text": "IEsSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/overview/index.ts", + "lineNumber": 14 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsOverviewStrategyResponse.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/overview/index.ts", + "lineNumber": 15 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsOverviewStrategyResponse.overviewHost", + "type": "Object", + "tags": [], + "label": "overviewHost", + "description": [], + "signature": [ + "{ auditbeatAuditd?: number | null | undefined; auditbeatFIM?: number | null | undefined; auditbeatLogin?: number | null | undefined; auditbeatPackage?: number | null | undefined; auditbeatProcess?: number | null | undefined; auditbeatUser?: number | null | undefined; endgameDns?: number | null | undefined; endgameFile?: number | null | undefined; endgameImageLoad?: number | null | undefined; endgameNetwork?: number | null | undefined; endgameProcess?: number | null | undefined; endgameRegistry?: number | null | undefined; endgameSecurity?: number | null | undefined; filebeatSystemModule?: number | null | undefined; winlogbeatSecurity?: number | null | undefined; winlogbeatMWSysmonOperational?: number | null | undefined; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/overview/index.ts", + "lineNumber": 16 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsRequestOptions", + "type": "Interface", + "tags": [], + "label": "HostsRequestOptions", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsRequestOptions", + "text": "HostsRequestOptions" + }, + " extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestOptionsPaginated", + "text": "RequestOptionsPaginated" + }, + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsFields", + "text": "HostsFields" + }, + ">" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/all/index.ts", + "lineNumber": 26 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsRequestOptions.defaultIndex", + "type": "Array", + "tags": [], + "label": "defaultIndex", + "description": [], + "signature": [ + "string[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/all/index.ts", + "lineNumber": 27 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsSortField", + "type": "Interface", + "tags": [], + "label": "HostsSortField", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/all/index.ts", + "lineNumber": 30 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsSortField.field", + "type": "Enum", + "tags": [], + "label": "field", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsFields", + "text": "HostsFields" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/all/index.ts", + "lineNumber": 31 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsSortField.direction", + "type": "Enum", + "tags": [], + "label": "direction", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Direction", + "text": "Direction" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/all/index.ts", + "lineNumber": 33 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsStrategyResponse", + "type": "Interface", + "tags": [], + "label": "HostsStrategyResponse", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsStrategyResponse", + "text": "HostsStrategyResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchResponse", + "text": "IEsSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/all/index.ts", + "lineNumber": 19 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsStrategyResponse.edges", + "type": "Array", + "tags": [], + "label": "edges", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsEdges", + "text": "HostsEdges" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/all/index.ts", + "lineNumber": 20 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsStrategyResponse.totalCount", + "type": "number", + "tags": [], + "label": "totalCount", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/all/index.ts", + "lineNumber": 21 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsStrategyResponse.pageInfo", + "type": "Object", + "tags": [], + "label": "pageInfo", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.PageInfoPaginated", + "text": "PageInfoPaginated" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/all/index.ts", + "lineNumber": 22 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsStrategyResponse.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/all/index.ts", + "lineNumber": 23 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsUncommonProcessesEdges", + "type": "Interface", + "tags": [], + "label": "HostsUncommonProcessesEdges", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/uncommon_processes/index.ts", + "lineNumber": 38 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsUncommonProcessesEdges.node", + "type": "Object", + "tags": [], + "label": "node", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsUncommonProcessItem", + "text": "HostsUncommonProcessItem" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/uncommon_processes/index.ts", + "lineNumber": 39 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsUncommonProcessesEdges.cursor", + "type": "Object", + "tags": [], + "label": "cursor", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.CursorType", + "text": "CursorType" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/uncommon_processes/index.ts", + "lineNumber": 40 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsUncommonProcessesRequestOptions", + "type": "Interface", + "tags": [], + "label": "HostsUncommonProcessesRequestOptions", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsUncommonProcessesRequestOptions", + "text": "HostsUncommonProcessesRequestOptions" + }, + " extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestOptionsPaginated", + "text": "RequestOptionsPaginated" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/uncommon_processes/index.ts", + "lineNumber": 26 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsUncommonProcessesRequestOptions.sort", + "type": "Object", + "tags": [], + "label": "sort", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SortField", + "text": "SortField" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/uncommon_processes/index.ts", + "lineNumber": 27 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsUncommonProcessesRequestOptions.defaultIndex", + "type": "Array", + "tags": [], + "label": "defaultIndex", + "description": [], + "signature": [ + "string[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/uncommon_processes/index.ts", + "lineNumber": 28 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsUncommonProcessesStrategyResponse", + "type": "Interface", + "tags": [], + "label": "HostsUncommonProcessesStrategyResponse", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsUncommonProcessesStrategyResponse", + "text": "HostsUncommonProcessesStrategyResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchResponse", + "text": "IEsSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/uncommon_processes/index.ts", + "lineNumber": 31 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsUncommonProcessesStrategyResponse.edges", + "type": "Array", + "tags": [], + "label": "edges", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsUncommonProcessesEdges", + "text": "HostsUncommonProcessesEdges" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/uncommon_processes/index.ts", + "lineNumber": 32 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsUncommonProcessesStrategyResponse.totalCount", + "type": "number", + "tags": [], + "label": "totalCount", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/uncommon_processes/index.ts", + "lineNumber": 33 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsUncommonProcessesStrategyResponse.pageInfo", + "type": "Object", + "tags": [], + "label": "pageInfo", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.PageInfoPaginated", + "text": "PageInfoPaginated" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/uncommon_processes/index.ts", + "lineNumber": 34 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsUncommonProcessesStrategyResponse.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/uncommon_processes/index.ts", + "lineNumber": 35 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsUncommonProcessHit", + "type": "Interface", + "tags": [], + "label": "HostsUncommonProcessHit", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsUncommonProcessHit", + "text": "HostsUncommonProcessHit" + }, + " extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.Hit", + "text": "Hit" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/uncommon_processes/index.ts", + "lineNumber": 51 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsUncommonProcessHit.total", + "type": "Object", + "tags": [], + "label": "total", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TotalHit", + "text": "TotalHit" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/uncommon_processes/index.ts", + "lineNumber": 52 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsUncommonProcessHit.host", + "type": "Array", + "tags": [], + "label": "host", + "description": [], + "signature": [ + "{ id: string[] | undefined; name: string[] | undefined; }[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/uncommon_processes/index.ts", + "lineNumber": 53 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsUncommonProcessHit._source", + "type": "Object", + "tags": [], + "label": "_source", + "description": [], + "signature": [ + "{ '@timestamp': string; process: ", + "ProcessEcs", + "; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/uncommon_processes/index.ts", + "lineNumber": 57 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsUncommonProcessHit.cursor", + "type": "string", + "tags": [], + "label": "cursor", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/uncommon_processes/index.ts", + "lineNumber": 61 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsUncommonProcessHit.sort", + "type": "Array", + "tags": [], + "label": "sort", + "description": [], + "signature": [ + "React.ReactText[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/uncommon_processes/index.ts", + "lineNumber": 62 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsUncommonProcessItem", + "type": "Interface", + "tags": [], + "label": "HostsUncommonProcessItem", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/uncommon_processes/index.ts", + "lineNumber": 43 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsUncommonProcessItem._id", + "type": "string", + "tags": [], + "label": "_id", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/uncommon_processes/index.ts", + "lineNumber": 44 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsUncommonProcessItem.instances", + "type": "number", + "tags": [], + "label": "instances", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/uncommon_processes/index.ts", + "lineNumber": 45 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsUncommonProcessItem.process", + "type": "Object", + "tags": [], + "label": "process", + "description": [], + "signature": [ + "ProcessEcs" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/uncommon_processes/index.ts", + "lineNumber": 46 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsUncommonProcessItem.hosts", + "type": "Array", + "tags": [], + "label": "hosts", + "description": [], + "signature": [ + "HostEcs", + "[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/uncommon_processes/index.ts", + "lineNumber": 47 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsUncommonProcessItem.user", + "type": "CompoundType", + "tags": [], + "label": "user", + "description": [], + "signature": [ + "UserEcs", + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/uncommon_processes/index.ts", + "lineNumber": 48 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostValue", + "type": "Interface", + "tags": [], + "label": "HostValue", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 44 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.HostValue.value", + "type": "number", + "tags": [], + "label": "value", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 45 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostValue.value_as_string", + "type": "string", + "tags": [], + "label": "value_as_string", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 46 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.IndexField", + "type": "Interface", + "tags": [], + "label": "IndexField", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 27 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.IndexField.category", + "type": "string", + "tags": [], + "label": "category", + "description": [ + "Where the field belong" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 29 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.IndexField.example", + "type": "CompoundType", + "tags": [], + "label": "example", + "description": [ + "Example of field's value" + ], + "signature": [ + "string | number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 31 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.IndexField.indexes", + "type": "Array", + "tags": [], + "label": "indexes", + "description": [ + "whether the field's belong to an alias index" + ], + "signature": [ + "(string | null)[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 33 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.IndexField.name", + "type": "string", + "tags": [], + "label": "name", + "description": [ + "The name of the field" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 35 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.IndexField.type", + "type": "string", + "tags": [], + "label": "type", + "description": [ + "The type of the field's values as recognized by Kibana" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 37 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.IndexField.searchable", + "type": "boolean", + "tags": [], + "label": "searchable", + "description": [ + "Whether the field's values can be efficiently searched for" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 39 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.IndexField.aggregatable", + "type": "boolean", + "tags": [], + "label": "aggregatable", + "description": [ + "Whether the field's values can be aggregated" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 41 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.IndexField.description", + "type": "CompoundType", + "tags": [], + "label": "description", + "description": [ + "Description of the field" + ], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 43 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.IndexField.format", + "type": "CompoundType", + "tags": [], + "label": "format", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 44 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.IndexField.esTypes", + "type": "Array", + "tags": [], + "label": "esTypes", + "description": [ + "the elastic type as mapped in the index" + ], + "signature": [ + "string[] | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 46 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.IndexField.subType", + "type": "Object", + "tags": [], + "label": "subType", + "description": [], + "signature": [ + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataIndexPatternsPluginApi", + "section": "def-common.IFieldSubType", + "text": "IFieldSubType" + }, + " | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 47 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.IndexField.readFromDocValues", + "type": "boolean", + "tags": [], + "label": "readFromDocValues", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 48 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.IndexFieldsStrategyRequest", + "type": "Interface", + "tags": [], + "label": "IndexFieldsStrategyRequest", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.IndexFieldsStrategyRequest", + "text": "IndexFieldsStrategyRequest" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchRequest", + "text": "IEsSearchRequest" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 53 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.IndexFieldsStrategyRequest.indices", + "type": "Array", + "tags": [], + "label": "indices", + "description": [], + "signature": [ + "string[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 54 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.IndexFieldsStrategyRequest.onlyCheckIfIndicesExist", + "type": "boolean", + "tags": [], + "label": "onlyCheckIfIndicesExist", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 55 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.IndexFieldsStrategyResponse", + "type": "Interface", + "tags": [], + "label": "IndexFieldsStrategyResponse", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.IndexFieldsStrategyResponse", + "text": "IndexFieldsStrategyResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchResponse", + "text": "IEsSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 58 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.IndexFieldsStrategyResponse.indexFields", + "type": "Array", + "tags": [], + "label": "indexFields", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.IndexField", + "text": "IndexField" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 59 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.IndexFieldsStrategyResponse.indicesExist", + "type": "Array", + "tags": [], + "label": "indicesExist", + "description": [], + "signature": [ + "string[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 60 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.Inspect", + "type": "Interface", + "tags": [], + "label": "Inspect", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 21 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.Inspect.dsl", + "type": "Array", + "tags": [], + "label": "dsl", + "description": [], + "signature": [ + "string[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 22 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.KueryFilterQuery", + "type": "Interface", + "tags": [], + "label": "KueryFilterQuery", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 23 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.KueryFilterQuery.kind", + "type": "CompoundType", + "tags": [], + "label": "kind", + "description": [], + "signature": [ + "\"eql\" | \"lucene\" | \"kuery\"" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 24 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.KueryFilterQuery.expression", + "type": "string", + "tags": [], + "label": "expression", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 25 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.KueryFilterQueryInput", + "type": "Interface", + "tags": [], + "label": "KueryFilterQueryInput", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 158 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.KueryFilterQueryInput.kind", + "type": "CompoundType", + "tags": [], + "label": "kind", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 159 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.KueryFilterQueryInput.expression", + "type": "CompoundType", + "tags": [], + "label": "expression", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 160 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.KueryFilterQueryResult", + "type": "Interface", + "tags": [], + "label": "KueryFilterQueryResult", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 676 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.KueryFilterQueryResult.kind", + "type": "CompoundType", + "tags": [], + "label": "kind", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 677 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.KueryFilterQueryResult.expression", + "type": "CompoundType", + "tags": [], + "label": "expression", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 678 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.LastSourceHost", + "type": "Interface", + "tags": [], + "label": "LastSourceHost", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 49 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.LastSourceHost.timestamp", + "type": "CompoundType", + "tags": [], + "label": "timestamp", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 50 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.LastSourceHost.source", + "type": "CompoundType", + "tags": [], + "label": "source", + "description": [], + "signature": [ + "SourceEcs", + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 51 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.LastSourceHost.host", + "type": "CompoundType", + "tags": [], + "label": "host", + "description": [], + "signature": [ + "HostEcs", + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/authentications/index.ts", + "lineNumber": 52 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.LastTimeDetails", + "type": "Interface", + "tags": [], + "label": "LastTimeDetails", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 19 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.LastTimeDetails.hostName", + "type": "CompoundType", + "tags": [], + "label": "hostName", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 20 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.LastTimeDetails.ip", + "type": "CompoundType", + "tags": [], + "label": "ip", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 21 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.LocationHit", + "type": "Interface", + "tags": [], + "label": "LocationHit", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.LocationHit", + "text": "LocationHit" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 109 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.LocationHit.doc_count", + "type": "number", + "tags": [], + "label": "doc_count", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 110 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.LocationHit.top_geo", + "type": "Object", + "tags": [], + "label": "top_geo", + "description": [], + "signature": [ + "{ hits: { total: number | ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TotalValue", + "text": "TotalValue" + }, + "; max_score: number | null; hits: { _source: T; sort?: [number] | undefined; _index?: string | undefined; _type?: string | undefined; _id?: string | undefined; _score?: number | null | undefined; }[]; }; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 111 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixHistogramBucket", + "type": "Interface", + "tags": [], + "label": "MatrixHistogramBucket", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/index.ts", + "lineNumber": 68 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixHistogramBucket.key", + "type": "number", + "tags": [], + "label": "key", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/index.ts", + "lineNumber": 69 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixHistogramBucket.doc_count", + "type": "number", + "tags": [], + "label": "doc_count", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/index.ts", + "lineNumber": 70 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixHistogramData", + "type": "Interface", + "tags": [], + "label": "MatrixHistogramData", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/index.ts", + "lineNumber": 62 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixHistogramData.x", + "type": "CompoundType", + "tags": [], + "label": "x", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/index.ts", + "lineNumber": 63 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixHistogramData.y", + "type": "CompoundType", + "tags": [], + "label": "y", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/index.ts", + "lineNumber": 64 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixHistogramData.g", + "type": "CompoundType", + "tags": [], + "label": "g", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/index.ts", + "lineNumber": 65 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixHistogramRequestOptions", + "type": "Interface", + "tags": [], + "label": "MatrixHistogramRequestOptions", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixHistogramRequestOptions", + "text": "MatrixHistogramRequestOptions" + }, + " extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestBasicOptions", + "text": "RequestBasicOptions" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/index.ts", + "lineNumber": 37 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixHistogramRequestOptions.timerange", + "type": "Object", + "tags": [], + "label": "timerange", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimerangeInput", + "text": "TimerangeInput" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/index.ts", + "lineNumber": 38 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixHistogramRequestOptions.histogramType", + "type": "Enum", + "tags": [], + "label": "histogramType", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixHistogramType", + "text": "MatrixHistogramType" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/index.ts", + "lineNumber": 39 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixHistogramRequestOptions.stackByField", + "type": "string", + "tags": [], + "label": "stackByField", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/index.ts", + "lineNumber": 40 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixHistogramRequestOptions.threshold", + "type": "Object", + "tags": [], + "label": "threshold", + "description": [], + "signature": [ + "{ field: string[]; value: string; cardinality?: { field: string[]; value: string; } | undefined; } | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/index.ts", + "lineNumber": 41 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixHistogramRequestOptions.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/index.ts", + "lineNumber": 51 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixHistogramRequestOptions.isPtrIncluded", + "type": "CompoundType", + "tags": [], + "label": "isPtrIncluded", + "description": [], + "signature": [ + "boolean | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/index.ts", + "lineNumber": 52 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixHistogramRequestOptions.includeMissingData", + "type": "CompoundType", + "tags": [], + "label": "includeMissingData", + "description": [], + "signature": [ + "boolean | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/index.ts", + "lineNumber": 53 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixHistogramSchema", + "type": "Interface", + "tags": [], + "label": "MatrixHistogramSchema", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixHistogramSchema", + "text": "MatrixHistogramSchema" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/index.ts", + "lineNumber": 73 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixHistogramSchema.buildDsl", + "type": "Function", + "tags": [], + "label": "buildDsl", + "description": [], + "signature": [ + "(options: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixHistogramRequestOptions", + "text": "MatrixHistogramRequestOptions" + }, + ") => {}" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/index.ts", + "lineNumber": 74 + }, + "deprecated": false, + "returnComment": [], + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.options", + "type": "Object", + "tags": [], + "label": "options", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixHistogramRequestOptions", + "text": "MatrixHistogramRequestOptions" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/index.ts", + "lineNumber": 74 + }, + "deprecated": false + } + ] + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixHistogramSchema.aggName", + "type": "string", + "tags": [], + "label": "aggName", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/index.ts", + "lineNumber": 75 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixHistogramSchema.parseKey", + "type": "string", + "tags": [], + "label": "parseKey", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/index.ts", + "lineNumber": 76 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixHistogramSchema.parser", + "type": "Function", + "tags": [], + "label": "parser", + "description": [], + "signature": [ + "((data: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixHistogramParseData", + "text": "MatrixHistogramParseData" + }, + ", keyBucket: string) => ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixHistogramData", + "text": "MatrixHistogramData" + }, + "[]) | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/index.ts", + "lineNumber": 77 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixHistogramStrategyResponse", + "type": "Interface", + "tags": [], + "label": "MatrixHistogramStrategyResponse", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixHistogramStrategyResponse", + "text": "MatrixHistogramStrategyResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchResponse", + "text": "IEsSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/index.ts", + "lineNumber": 56 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixHistogramStrategyResponse.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/index.ts", + "lineNumber": 57 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixHistogramStrategyResponse.matrixHistogramData", + "type": "Array", + "tags": [], + "label": "matrixHistogramData", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixHistogramData", + "text": "MatrixHistogramData" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/index.ts", + "lineNumber": 58 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixHistogramStrategyResponse.totalCount", + "type": "number", + "tags": [], + "label": "totalCount", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/index.ts", + "lineNumber": 59 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixOverOrdinalHistogramData", + "type": "Interface", + "tags": [], + "label": "MatrixOverOrdinalHistogramData", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/dns/index.ts", + "lineNumber": 48 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixOverOrdinalHistogramData.x", + "type": "string", + "tags": [], + "label": "x", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/dns/index.ts", + "lineNumber": 49 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixOverOrdinalHistogramData.y", + "type": "number", + "tags": [], + "label": "y", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/dns/index.ts", + "lineNumber": 50 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixOverOrdinalHistogramData.g", + "type": "string", + "tags": [], + "label": "g", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/dns/index.ts", + "lineNumber": 51 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDetails", + "type": "Interface", + "tags": [], + "label": "NetworkDetails", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 29 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDetails.firstSeen", + "type": "CompoundType", + "tags": [], + "label": "firstSeen", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 30 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDetails.lastSeen", + "type": "CompoundType", + "tags": [], + "label": "lastSeen", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 31 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDetails.autonomousSystem", + "type": "Object", + "tags": [], + "label": "autonomousSystem", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.AutonomousSystem", + "text": "AutonomousSystem" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 32 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDetails.geo", + "type": "Object", + "tags": [], + "label": "geo", + "description": [], + "signature": [ + "GeoEcs" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 33 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDetailsHit", + "type": "Interface", + "tags": [], + "label": "NetworkDetailsHit", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 88 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDetailsHit.aggregations", + "type": "Object", + "tags": [], + "label": "aggregations", + "description": [], + "signature": [ + "{ destination?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkHit", + "text": "NetworkHit" + }, + " | undefined; source?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkHit", + "text": "NetworkHit" + }, + " | undefined; host: ResultHit; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 89 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDetailsHit._shards", + "type": "Object", + "tags": [], + "label": "_shards", + "description": [], + "signature": [ + "{ total: number; successful: number; skipped: number; failed: number; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 94 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDetailsHit.hits", + "type": "Object", + "tags": [], + "label": "hits", + "description": [], + "signature": [ + "{ total: { value: number; relation: string; }; max_score: number | null; hits: []; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 100 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDetailsHit.took", + "type": "number", + "tags": [], + "label": "took", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 108 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDetailsHit.timeout", + "type": "number", + "tags": [], + "label": "timeout", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 109 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDetailsRequestOptions", + "type": "Interface", + "tags": [], + "label": "NetworkDetailsRequestOptions", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkDetailsRequestOptions", + "text": "NetworkDetailsRequestOptions" + }, + " extends Pick<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestBasicOptions", + "text": "RequestBasicOptions" + }, + ", \"id\" | \"params\" | \"defaultIndex\" | \"filterQuery\" | \"docValueFields\" | \"factoryQueryType\" | \"indexType\">" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 14 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDetailsRequestOptions.ip", + "type": "string", + "tags": [], + "label": "ip", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 15 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDetailsStrategyResponse", + "type": "Interface", + "tags": [], + "label": "NetworkDetailsStrategyResponse", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkDetailsStrategyResponse", + "text": "NetworkDetailsStrategyResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchResponse", + "text": "IEsSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 18 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDetailsStrategyResponse.networkDetails", + "type": "Object", + "tags": [], + "label": "networkDetails", + "description": [], + "signature": [ + "{ client?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkDetails", + "text": "NetworkDetails" + }, + " | null | undefined; destination?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkDetails", + "text": "NetworkDetails" + }, + " | null | undefined; host?: ", + "HostEcs", + " | undefined; server?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkDetails", + "text": "NetworkDetails" + }, + " | null | undefined; source?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkDetails", + "text": "NetworkDetails" + }, + " | null | undefined; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 19 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDetailsStrategyResponse.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 26 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDnsBuckets", + "type": "Interface", + "tags": [], + "label": "NetworkDnsBuckets", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/dns/index.ts", + "lineNumber": 54 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDnsBuckets.key", + "type": "string", + "tags": [], + "label": "key", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/dns/index.ts", + "lineNumber": 55 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDnsBuckets.doc_count", + "type": "number", + "tags": [], + "label": "doc_count", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/dns/index.ts", + "lineNumber": 56 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDnsBuckets.unique_domains", + "type": "Object", + "tags": [], + "label": "unique_domains", + "description": [], + "signature": [ + "{ value: number; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/dns/index.ts", + "lineNumber": 57 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDnsBuckets.dns_bytes_in", + "type": "Object", + "tags": [], + "label": "dns_bytes_in", + "description": [], + "signature": [ + "{ value: number; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/dns/index.ts", + "lineNumber": 60 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDnsBuckets.dns_bytes_out", + "type": "Object", + "tags": [], + "label": "dns_bytes_out", + "description": [], + "signature": [ + "{ value: number; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/dns/index.ts", + "lineNumber": 63 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDnsEdges", + "type": "Interface", + "tags": [], + "label": "NetworkDnsEdges", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/dns/index.ts", + "lineNumber": 34 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDnsEdges.node", + "type": "Object", + "tags": [], + "label": "node", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkDnsItem", + "text": "NetworkDnsItem" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/dns/index.ts", + "lineNumber": 35 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDnsEdges.cursor", + "type": "Object", + "tags": [], + "label": "cursor", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.CursorType", + "text": "CursorType" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/dns/index.ts", + "lineNumber": 36 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDnsItem", + "type": "Interface", + "tags": [], + "label": "NetworkDnsItem", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/dns/index.ts", + "lineNumber": 39 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDnsItem._id", + "type": "CompoundType", + "tags": [], + "label": "_id", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/dns/index.ts", + "lineNumber": 40 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDnsItem.dnsBytesIn", + "type": "CompoundType", + "tags": [], + "label": "dnsBytesIn", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/dns/index.ts", + "lineNumber": 41 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDnsItem.dnsBytesOut", + "type": "CompoundType", + "tags": [], + "label": "dnsBytesOut", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/dns/index.ts", + "lineNumber": 42 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDnsItem.dnsName", + "type": "CompoundType", + "tags": [], + "label": "dnsName", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/dns/index.ts", + "lineNumber": 43 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDnsItem.queryCount", + "type": "CompoundType", + "tags": [], + "label": "queryCount", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/dns/index.ts", + "lineNumber": 44 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDnsItem.uniqueDomains", + "type": "CompoundType", + "tags": [], + "label": "uniqueDomains", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/dns/index.ts", + "lineNumber": 45 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDnsRequestOptions", + "type": "Interface", + "tags": [], + "label": "NetworkDnsRequestOptions", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkDnsRequestOptions", + "text": "NetworkDnsRequestOptions" + }, + " extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestOptionsPaginated", + "text": "RequestOptionsPaginated" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/dns/index.ts", + "lineNumber": 20 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDnsRequestOptions.isPtrIncluded", + "type": "boolean", + "tags": [], + "label": "isPtrIncluded", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/dns/index.ts", + "lineNumber": 21 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDnsRequestOptions.sort", + "type": "Object", + "tags": [], + "label": "sort", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SortField", + "text": "SortField" + }, + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkDnsFields", + "text": "NetworkDnsFields" + }, + ">" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/dns/index.ts", + "lineNumber": 22 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDnsRequestOptions.stackByField", + "type": "CompoundType", + "tags": [], + "label": "stackByField", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/dns/index.ts", + "lineNumber": 23 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDnsStrategyResponse", + "type": "Interface", + "tags": [], + "label": "NetworkDnsStrategyResponse", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkDnsStrategyResponse", + "text": "NetworkDnsStrategyResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchResponse", + "text": "IEsSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/dns/index.ts", + "lineNumber": 26 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDnsStrategyResponse.edges", + "type": "Array", + "tags": [], + "label": "edges", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkDnsEdges", + "text": "NetworkDnsEdges" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/dns/index.ts", + "lineNumber": 27 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDnsStrategyResponse.totalCount", + "type": "number", + "tags": [], + "label": "totalCount", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/dns/index.ts", + "lineNumber": 28 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDnsStrategyResponse.pageInfo", + "type": "Object", + "tags": [], + "label": "pageInfo", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.PageInfoPaginated", + "text": "PageInfoPaginated" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/dns/index.ts", + "lineNumber": 29 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDnsStrategyResponse.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/dns/index.ts", + "lineNumber": 30 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDnsStrategyResponse.histogram", + "type": "CompoundType", + "tags": [], + "label": "histogram", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixOverOrdinalHistogramData", + "text": "MatrixOverOrdinalHistogramData" + }, + "[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/dns/index.ts", + "lineNumber": 31 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHit", + "type": "Interface", + "tags": [], + "label": "NetworkHit", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 63 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHit.took", + "type": "number", + "tags": [], + "label": "took", + "description": [], + "signature": [ + "number | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 64 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHit.timed_out", + "type": "CompoundType", + "tags": [], + "label": "timed_out", + "description": [], + "signature": [ + "boolean | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 65 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHit._scroll_id", + "type": "string", + "tags": [], + "label": "_scroll_id", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 66 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHit._shards", + "type": "Object", + "tags": [], + "label": "_shards", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.ShardsResponse", + "text": "ShardsResponse" + }, + " | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 67 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHit.timeout", + "type": "number", + "tags": [], + "label": "timeout", + "description": [], + "signature": [ + "number | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 68 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHit.hits", + "type": "Object", + "tags": [], + "label": "hits", + "description": [], + "signature": [ + "{ total: number; hits: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.Hit", + "text": "Hit" + }, + "[]; } | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 69 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHit.doc_count", + "type": "number", + "tags": [], + "label": "doc_count", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 73 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHit.geo", + "type": "Object", + "tags": [], + "label": "geo", + "description": [], + "signature": [ + "ResultHit" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 74 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHit.autonomousSystem", + "type": "Object", + "tags": [], + "label": "autonomousSystem", + "description": [], + "signature": [ + "ResultHit" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 75 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHit.firstSeen", + "type": "Object", + "tags": [], + "label": "firstSeen", + "description": [], + "signature": [ + "{ value: number; value_as_string: string; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 76 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHit.lastSeen", + "type": "Object", + "tags": [], + "label": "lastSeen", + "description": [], + "signature": [ + "{ value: number; value_as_string: string; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 80 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHttpBuckets", + "type": "Interface", + "tags": [], + "label": "NetworkHttpBuckets", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/http/index.ts", + "lineNumber": 50 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHttpBuckets.key", + "type": "string", + "tags": [], + "label": "key", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/http/index.ts", + "lineNumber": 51 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHttpBuckets.doc_count", + "type": "number", + "tags": [], + "label": "doc_count", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/http/index.ts", + "lineNumber": 52 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHttpBuckets.domains", + "type": "Object", + "tags": [], + "label": "domains", + "description": [], + "signature": [ + "{ buckets: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.GenericBuckets", + "text": "GenericBuckets" + }, + "[]; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/http/index.ts", + "lineNumber": 53 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHttpBuckets.methods", + "type": "Object", + "tags": [], + "label": "methods", + "description": [], + "signature": [ + "{ buckets: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.GenericBuckets", + "text": "GenericBuckets" + }, + "[]; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/http/index.ts", + "lineNumber": 56 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHttpBuckets.source", + "type": "Uncategorized", + "tags": [], + "label": "source", + "description": [], + "signature": [ + "object" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/http/index.ts", + "lineNumber": 59 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHttpBuckets.status", + "type": "Object", + "tags": [], + "label": "status", + "description": [], + "signature": [ + "{ buckets: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.GenericBuckets", + "text": "GenericBuckets" + }, + "[]; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/http/index.ts", + "lineNumber": 60 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHttpEdges", + "type": "Interface", + "tags": [], + "label": "NetworkHttpEdges", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/http/index.ts", + "lineNumber": 34 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHttpEdges.node", + "type": "Object", + "tags": [], + "label": "node", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkHttpItem", + "text": "NetworkHttpItem" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/http/index.ts", + "lineNumber": 35 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHttpEdges.cursor", + "type": "Object", + "tags": [], + "label": "cursor", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.CursorType", + "text": "CursorType" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/http/index.ts", + "lineNumber": 36 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHttpItem", + "type": "Interface", + "tags": [], + "label": "NetworkHttpItem", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/http/index.ts", + "lineNumber": 39 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHttpItem._id", + "type": "CompoundType", + "tags": [], + "label": "_id", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/http/index.ts", + "lineNumber": 40 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHttpItem.domains", + "type": "Array", + "tags": [], + "label": "domains", + "description": [], + "signature": [ + "string[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/http/index.ts", + "lineNumber": 41 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHttpItem.lastHost", + "type": "CompoundType", + "tags": [], + "label": "lastHost", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/http/index.ts", + "lineNumber": 42 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHttpItem.lastSourceIp", + "type": "CompoundType", + "tags": [], + "label": "lastSourceIp", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/http/index.ts", + "lineNumber": 43 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHttpItem.methods", + "type": "Array", + "tags": [], + "label": "methods", + "description": [], + "signature": [ + "string[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/http/index.ts", + "lineNumber": 44 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHttpItem.path", + "type": "CompoundType", + "tags": [], + "label": "path", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/http/index.ts", + "lineNumber": 45 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHttpItem.requestCount", + "type": "CompoundType", + "tags": [], + "label": "requestCount", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/http/index.ts", + "lineNumber": 46 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHttpItem.statuses", + "type": "Array", + "tags": [], + "label": "statuses", + "description": [], + "signature": [ + "string[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/http/index.ts", + "lineNumber": 47 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHttpRequestOptions", + "type": "Interface", + "tags": [], + "label": "NetworkHttpRequestOptions", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkHttpRequestOptions", + "text": "NetworkHttpRequestOptions" + }, + " extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestOptionsPaginated", + "text": "RequestOptionsPaginated" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/http/index.ts", + "lineNumber": 22 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHttpRequestOptions.ip", + "type": "string", + "tags": [], + "label": "ip", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/http/index.ts", + "lineNumber": 23 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHttpRequestOptions.defaultIndex", + "type": "Array", + "tags": [], + "label": "defaultIndex", + "description": [], + "signature": [ + "string[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/http/index.ts", + "lineNumber": 24 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHttpStrategyResponse", + "type": "Interface", + "tags": [], + "label": "NetworkHttpStrategyResponse", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkHttpStrategyResponse", + "text": "NetworkHttpStrategyResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchResponse", + "text": "IEsSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/http/index.ts", + "lineNumber": 27 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHttpStrategyResponse.edges", + "type": "Array", + "tags": [], + "label": "edges", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkHttpEdges", + "text": "NetworkHttpEdges" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/http/index.ts", + "lineNumber": 28 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHttpStrategyResponse.totalCount", + "type": "number", + "tags": [], + "label": "totalCount", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/http/index.ts", + "lineNumber": 29 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHttpStrategyResponse.pageInfo", + "type": "Object", + "tags": [], + "label": "pageInfo", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.PageInfoPaginated", + "text": "PageInfoPaginated" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/http/index.ts", + "lineNumber": 30 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHttpStrategyResponse.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/http/index.ts", + "lineNumber": 31 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkKpiDnsStrategyResponse", + "type": "Interface", + "tags": [], + "label": "NetworkKpiDnsStrategyResponse", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkKpiDnsStrategyResponse", + "text": "NetworkKpiDnsStrategyResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchResponse", + "text": "IEsSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/kpi/dns/index.ts", + "lineNumber": 14 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkKpiDnsStrategyResponse.dnsQueries", + "type": "number", + "tags": [], + "label": "dnsQueries", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/kpi/dns/index.ts", + "lineNumber": 15 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkKpiDnsStrategyResponse.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/kpi/dns/index.ts", + "lineNumber": 16 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkKpiHistogramData", + "type": "Interface", + "tags": [], + "label": "NetworkKpiHistogramData", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/kpi/unique_private_ips/index.ts", + "lineNumber": 12 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkKpiHistogramData.x", + "type": "CompoundType", + "tags": [], + "label": "x", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/kpi/unique_private_ips/index.ts", + "lineNumber": 13 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkKpiHistogramData.y", + "type": "CompoundType", + "tags": [], + "label": "y", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/kpi/unique_private_ips/index.ts", + "lineNumber": 14 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkKpiNetworkEventsStrategyResponse", + "type": "Interface", + "tags": [], + "label": "NetworkKpiNetworkEventsStrategyResponse", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkKpiNetworkEventsStrategyResponse", + "text": "NetworkKpiNetworkEventsStrategyResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchResponse", + "text": "IEsSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/kpi/network_events/index.ts", + "lineNumber": 14 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkKpiNetworkEventsStrategyResponse.networkEvents", + "type": "number", + "tags": [], + "label": "networkEvents", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/kpi/network_events/index.ts", + "lineNumber": 15 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkKpiNetworkEventsStrategyResponse.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/kpi/network_events/index.ts", + "lineNumber": 16 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkKpiTlsHandshakesStrategyResponse", + "type": "Interface", + "tags": [], + "label": "NetworkKpiTlsHandshakesStrategyResponse", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkKpiTlsHandshakesStrategyResponse", + "text": "NetworkKpiTlsHandshakesStrategyResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchResponse", + "text": "IEsSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/kpi/tls_handshakes/index.ts", + "lineNumber": 14 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkKpiTlsHandshakesStrategyResponse.tlsHandshakes", + "type": "number", + "tags": [], + "label": "tlsHandshakes", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/kpi/tls_handshakes/index.ts", + "lineNumber": 15 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkKpiTlsHandshakesStrategyResponse.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/kpi/tls_handshakes/index.ts", + "lineNumber": 16 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkKpiUniqueFlowsStrategyResponse", + "type": "Interface", + "tags": [], + "label": "NetworkKpiUniqueFlowsStrategyResponse", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkKpiUniqueFlowsStrategyResponse", + "text": "NetworkKpiUniqueFlowsStrategyResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchResponse", + "text": "IEsSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/kpi/unique_flows/index.ts", + "lineNumber": 14 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkKpiUniqueFlowsStrategyResponse.uniqueFlowId", + "type": "number", + "tags": [], + "label": "uniqueFlowId", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/kpi/unique_flows/index.ts", + "lineNumber": 15 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkKpiUniqueFlowsStrategyResponse.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/kpi/unique_flows/index.ts", + "lineNumber": 16 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkKpiUniquePrivateIpsStrategyResponse", + "type": "Interface", + "tags": [], + "label": "NetworkKpiUniquePrivateIpsStrategyResponse", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkKpiUniquePrivateIpsStrategyResponse", + "text": "NetworkKpiUniquePrivateIpsStrategyResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchResponse", + "text": "IEsSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/kpi/unique_private_ips/index.ts", + "lineNumber": 19 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkKpiUniquePrivateIpsStrategyResponse.uniqueSourcePrivateIps", + "type": "number", + "tags": [], + "label": "uniqueSourcePrivateIps", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/kpi/unique_private_ips/index.ts", + "lineNumber": 20 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkKpiUniquePrivateIpsStrategyResponse.uniqueSourcePrivateIpsHistogram", + "type": "CompoundType", + "tags": [], + "label": "uniqueSourcePrivateIpsHistogram", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkKpiHistogramData", + "text": "NetworkKpiHistogramData" + }, + "[] | null" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/kpi/unique_private_ips/index.ts", + "lineNumber": 21 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkKpiUniquePrivateIpsStrategyResponse.uniqueDestinationPrivateIps", + "type": "number", + "tags": [], + "label": "uniqueDestinationPrivateIps", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/kpi/unique_private_ips/index.ts", + "lineNumber": 22 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkKpiUniquePrivateIpsStrategyResponse.uniqueDestinationPrivateIpsHistogram", + "type": "CompoundType", + "tags": [], + "label": "uniqueDestinationPrivateIpsHistogram", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkKpiHistogramData", + "text": "NetworkKpiHistogramData" + }, + "[] | null" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/kpi/unique_private_ips/index.ts", + "lineNumber": 23 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkKpiUniquePrivateIpsStrategyResponse.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/kpi/unique_private_ips/index.ts", + "lineNumber": 24 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkOverviewStrategyResponse", + "type": "Interface", + "tags": [], + "label": "NetworkOverviewStrategyResponse", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkOverviewStrategyResponse", + "text": "NetworkOverviewStrategyResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchResponse", + "text": "IEsSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/overview/index.ts", + "lineNumber": 14 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkOverviewStrategyResponse.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/overview/index.ts", + "lineNumber": 15 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkOverviewStrategyResponse.overviewNetwork", + "type": "Object", + "tags": [], + "label": "overviewNetwork", + "description": [], + "signature": [ + "{ auditbeatSocket?: number | null | undefined; filebeatCisco?: number | null | undefined; filebeatNetflow?: number | null | undefined; filebeatPanw?: number | null | undefined; filebeatSuricata?: number | null | undefined; filebeatZeek?: number | null | undefined; packetbeatDNS?: number | null | undefined; packetbeatFlow?: number | null | undefined; packetbeatTLS?: number | null | undefined; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/overview/index.ts", + "lineNumber": 16 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTlsBuckets", + "type": "Interface", + "tags": [], + "label": "NetworkTlsBuckets", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/tls/index.ts", + "lineNumber": 13 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTlsBuckets.key", + "type": "string", + "tags": [], + "label": "key", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/tls/index.ts", + "lineNumber": 14 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTlsBuckets.timestamp", + "type": "Object", + "tags": [], + "label": "timestamp", + "description": [], + "signature": [ + "{ value: number; value_as_string: string; } | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/tls/index.ts", + "lineNumber": 15 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTlsBuckets.subjects", + "type": "Object", + "tags": [], + "label": "subjects", + "description": [], + "signature": [ + "{ buckets: readonly { key: string; doc_count: number; }[]; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/tls/index.ts", + "lineNumber": 19 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTlsBuckets.ja3", + "type": "Object", + "tags": [], + "label": "ja3", + "description": [], + "signature": [ + "{ buckets: readonly { key: string; doc_count: number; }[]; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/tls/index.ts", + "lineNumber": 22 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTlsBuckets.issuers", + "type": "Object", + "tags": [], + "label": "issuers", + "description": [], + "signature": [ + "{ buckets: readonly { key: string; doc_count: number; }[]; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/tls/index.ts", + "lineNumber": 25 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTlsBuckets.not_after", + "type": "Object", + "tags": [], + "label": "not_after", + "description": [], + "signature": [ + "{ buckets: readonly { key: number; key_as_string: string; doc_count: number; }[]; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/tls/index.ts", + "lineNumber": 28 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTlsEdges", + "type": "Interface", + "tags": [], + "label": "NetworkTlsEdges", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/tls/index.ts", + "lineNumber": 46 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTlsEdges.node", + "type": "Object", + "tags": [], + "label": "node", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkTlsNode", + "text": "NetworkTlsNode" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/tls/index.ts", + "lineNumber": 47 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTlsEdges.cursor", + "type": "Object", + "tags": [], + "label": "cursor", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.CursorType", + "text": "CursorType" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/tls/index.ts", + "lineNumber": 48 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTlsNode", + "type": "Interface", + "tags": [], + "label": "NetworkTlsNode", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/tls/index.ts", + "lineNumber": 33 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTlsNode._id", + "type": "CompoundType", + "tags": [], + "label": "_id", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/tls/index.ts", + "lineNumber": 34 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTlsNode.timestamp", + "type": "CompoundType", + "tags": [], + "label": "timestamp", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/tls/index.ts", + "lineNumber": 35 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTlsNode.notAfter", + "type": "CompoundType", + "tags": [], + "label": "notAfter", + "description": [], + "signature": [ + "string[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/tls/index.ts", + "lineNumber": 36 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTlsNode.subjects", + "type": "CompoundType", + "tags": [], + "label": "subjects", + "description": [], + "signature": [ + "string[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/tls/index.ts", + "lineNumber": 37 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTlsNode.ja3", + "type": "CompoundType", + "tags": [], + "label": "ja3", + "description": [], + "signature": [ + "string[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/tls/index.ts", + "lineNumber": 38 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTlsNode.issuers", + "type": "CompoundType", + "tags": [], + "label": "issuers", + "description": [], + "signature": [ + "string[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/tls/index.ts", + "lineNumber": 39 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTlsRequestOptions", + "type": "Interface", + "tags": [], + "label": "NetworkTlsRequestOptions", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkTlsRequestOptions", + "text": "NetworkTlsRequestOptions" + }, + " extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestOptionsPaginated", + "text": "RequestOptionsPaginated" + }, + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkTlsFields", + "text": "NetworkTlsFields" + }, + ">" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/tls/index.ts", + "lineNumber": 51 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTlsRequestOptions.ip", + "type": "string", + "tags": [], + "label": "ip", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/tls/index.ts", + "lineNumber": 52 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTlsRequestOptions.flowTarget", + "type": "Enum", + "tags": [], + "label": "flowTarget", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.FlowTargetSourceDest", + "text": "FlowTargetSourceDest" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/tls/index.ts", + "lineNumber": 53 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTlsRequestOptions.defaultIndex", + "type": "Array", + "tags": [], + "label": "defaultIndex", + "description": [], + "signature": [ + "string[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/tls/index.ts", + "lineNumber": 54 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTlsStrategyResponse", + "type": "Interface", + "tags": [], + "label": "NetworkTlsStrategyResponse", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkTlsStrategyResponse", + "text": "NetworkTlsStrategyResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchResponse", + "text": "IEsSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/tls/index.ts", + "lineNumber": 57 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTlsStrategyResponse.edges", + "type": "Array", + "tags": [], + "label": "edges", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkTlsEdges", + "text": "NetworkTlsEdges" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/tls/index.ts", + "lineNumber": 58 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTlsStrategyResponse.totalCount", + "type": "number", + "tags": [], + "label": "totalCount", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/tls/index.ts", + "lineNumber": 59 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTlsStrategyResponse.pageInfo", + "type": "Object", + "tags": [], + "label": "pageInfo", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.PageInfoPaginated", + "text": "PageInfoPaginated" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/tls/index.ts", + "lineNumber": 60 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTlsStrategyResponse.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/tls/index.ts", + "lineNumber": 61 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopCountriesBuckets", + "type": "Interface", + "tags": [], + "label": "NetworkTopCountriesBuckets", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 59 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopCountriesBuckets.country", + "type": "string", + "tags": [], + "label": "country", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 60 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopCountriesBuckets.key", + "type": "string", + "tags": [], + "label": "key", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 61 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopCountriesBuckets.bytes_in", + "type": "Object", + "tags": [], + "label": "bytes_in", + "description": [], + "signature": [ + "{ value: number; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 62 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopCountriesBuckets.bytes_out", + "type": "Object", + "tags": [], + "label": "bytes_out", + "description": [], + "signature": [ + "{ value: number; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 65 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopCountriesBuckets.flows", + "type": "number", + "tags": [], + "label": "flows", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 68 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopCountriesBuckets.destination_ips", + "type": "number", + "tags": [], + "label": "destination_ips", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 69 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopCountriesBuckets.source_ips", + "type": "number", + "tags": [], + "label": "source_ips", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 70 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopCountriesEdges", + "type": "Interface", + "tags": [], + "label": "NetworkTopCountriesEdges", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 39 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopCountriesEdges.node", + "type": "Object", + "tags": [], + "label": "node", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkTopCountriesItem", + "text": "NetworkTopCountriesItem" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 40 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopCountriesEdges.cursor", + "type": "Object", + "tags": [], + "label": "cursor", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.CursorType", + "text": "CursorType" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 41 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopCountriesItem", + "type": "Interface", + "tags": [], + "label": "NetworkTopCountriesItem", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 44 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopCountriesItem._id", + "type": "CompoundType", + "tags": [], + "label": "_id", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 45 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopCountriesItem.source", + "type": "CompoundType", + "tags": [], + "label": "source", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TopCountriesItemSource", + "text": "TopCountriesItemSource" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 46 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopCountriesItem.destination", + "type": "CompoundType", + "tags": [], + "label": "destination", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TopCountriesItemDestination", + "text": "TopCountriesItemDestination" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 47 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopCountriesItem.network", + "type": "CompoundType", + "tags": [], + "label": "network", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TopNetworkTablesEcsField", + "text": "TopNetworkTablesEcsField" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 48 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopCountriesRequestOptions", + "type": "Interface", + "tags": [], + "label": "NetworkTopCountriesRequestOptions", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkTopCountriesRequestOptions", + "text": "NetworkTopCountriesRequestOptions" + }, + " extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestOptionsPaginated", + "text": "RequestOptionsPaginated" + }, + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkTopTablesFields", + "text": "NetworkTopTablesFields" + }, + ">" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 26 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopCountriesRequestOptions.flowTarget", + "type": "Enum", + "tags": [], + "label": "flowTarget", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.FlowTargetSourceDest", + "text": "FlowTargetSourceDest" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 28 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopCountriesRequestOptions.ip", + "type": "string", + "tags": [], + "label": "ip", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 29 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopCountriesStrategyResponse", + "type": "Interface", + "tags": [], + "label": "NetworkTopCountriesStrategyResponse", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkTopCountriesStrategyResponse", + "text": "NetworkTopCountriesStrategyResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchResponse", + "text": "IEsSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 32 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopCountriesStrategyResponse.edges", + "type": "Array", + "tags": [], + "label": "edges", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkTopCountriesEdges", + "text": "NetworkTopCountriesEdges" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 33 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopCountriesStrategyResponse.totalCount", + "type": "number", + "tags": [], + "label": "totalCount", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 34 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopCountriesStrategyResponse.pageInfo", + "type": "Object", + "tags": [], + "label": "pageInfo", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.PageInfoPaginated", + "text": "PageInfoPaginated" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 35 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopCountriesStrategyResponse.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 36 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopNFlowBuckets", + "type": "Interface", + "tags": [], + "label": "NetworkTopNFlowBuckets", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 91 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopNFlowBuckets.key", + "type": "string", + "tags": [], + "label": "key", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 92 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopNFlowBuckets.autonomous_system", + "type": "Object", + "tags": [], + "label": "autonomous_system", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.AutonomousSystemHit", + "text": "AutonomousSystemHit" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 93 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopNFlowBuckets.bytes_in", + "type": "Object", + "tags": [], + "label": "bytes_in", + "description": [], + "signature": [ + "{ value: number; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 94 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopNFlowBuckets.bytes_out", + "type": "Object", + "tags": [], + "label": "bytes_out", + "description": [], + "signature": [ + "{ value: number; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 97 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopNFlowBuckets.domain", + "type": "Object", + "tags": [], + "label": "domain", + "description": [], + "signature": [ + "{ buckets: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.GenericBuckets", + "text": "GenericBuckets" + }, + "[]; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 100 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopNFlowBuckets.location", + "type": "Object", + "tags": [], + "label": "location", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.LocationHit", + "text": "LocationHit" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 103 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopNFlowBuckets.flows", + "type": "number", + "tags": [], + "label": "flows", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 104 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopNFlowBuckets.destination_ips", + "type": "number", + "tags": [], + "label": "destination_ips", + "description": [], + "signature": [ + "number | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 105 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopNFlowBuckets.source_ips", + "type": "number", + "tags": [], + "label": "source_ips", + "description": [], + "signature": [ + "number | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 106 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopNFlowEdges", + "type": "Interface", + "tags": [], + "label": "NetworkTopNFlowEdges", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 38 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopNFlowEdges.node", + "type": "Object", + "tags": [], + "label": "node", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkTopNFlowItem", + "text": "NetworkTopNFlowItem" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 39 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopNFlowEdges.cursor", + "type": "Object", + "tags": [], + "label": "cursor", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.CursorType", + "text": "CursorType" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 40 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopNFlowItem", + "type": "Interface", + "tags": [], + "label": "NetworkTopNFlowItem", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 43 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopNFlowItem._id", + "type": "CompoundType", + "tags": [], + "label": "_id", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 44 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopNFlowItem.source", + "type": "CompoundType", + "tags": [], + "label": "source", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TopNFlowItemSource", + "text": "TopNFlowItemSource" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 45 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopNFlowItem.destination", + "type": "CompoundType", + "tags": [], + "label": "destination", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TopNFlowItemDestination", + "text": "TopNFlowItemDestination" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 46 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopNFlowItem.network", + "type": "CompoundType", + "tags": [], + "label": "network", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TopNetworkTablesEcsField", + "text": "TopNetworkTablesEcsField" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 47 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopNFlowRequestOptions", + "type": "Interface", + "tags": [], + "label": "NetworkTopNFlowRequestOptions", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkTopNFlowRequestOptions", + "text": "NetworkTopNFlowRequestOptions" + }, + " extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestOptionsPaginated", + "text": "RequestOptionsPaginated" + }, + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkTopTablesFields", + "text": "NetworkTopTablesFields" + }, + ">" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 25 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopNFlowRequestOptions.flowTarget", + "type": "Enum", + "tags": [], + "label": "flowTarget", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.FlowTargetSourceDest", + "text": "FlowTargetSourceDest" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 27 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopNFlowRequestOptions.ip", + "type": "CompoundType", + "tags": [], + "label": "ip", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 28 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopNFlowStrategyResponse", + "type": "Interface", + "tags": [], + "label": "NetworkTopNFlowStrategyResponse", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkTopNFlowStrategyResponse", + "text": "NetworkTopNFlowStrategyResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchResponse", + "text": "IEsSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 31 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopNFlowStrategyResponse.edges", + "type": "Array", + "tags": [], + "label": "edges", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkTopNFlowEdges", + "text": "NetworkTopNFlowEdges" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 32 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopNFlowStrategyResponse.totalCount", + "type": "number", + "tags": [], + "label": "totalCount", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 33 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopNFlowStrategyResponse.pageInfo", + "type": "Object", + "tags": [], + "label": "pageInfo", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.PageInfoPaginated", + "text": "PageInfoPaginated" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 34 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopNFlowStrategyResponse.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 35 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersBucketsItem", + "type": "Interface", + "tags": [], + "label": "NetworkUsersBucketsItem", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 50 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersBucketsItem.key", + "type": "string", + "tags": [], + "label": "key", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 51 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersBucketsItem.doc_count", + "type": "number", + "tags": [], + "label": "doc_count", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 52 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersBucketsItem.groupName", + "type": "Object", + "tags": [], + "label": "groupName", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkUsersGroupName", + "text": "NetworkUsersGroupName" + }, + " | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 53 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersBucketsItem.groupId", + "type": "Object", + "tags": [], + "label": "groupId", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkUsersGroupId", + "text": "NetworkUsersGroupId" + }, + " | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 54 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersBucketsItem.id", + "type": "Object", + "tags": [], + "label": "id", + "description": [], + "signature": [ + "Id | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 55 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersEdges", + "type": "Interface", + "tags": [], + "label": "NetworkUsersEdges", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 31 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersEdges.node", + "type": "Object", + "tags": [], + "label": "node", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkUsersNode", + "text": "NetworkUsersNode" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 32 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersEdges.cursor", + "type": "Object", + "tags": [], + "label": "cursor", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.CursorType", + "text": "CursorType" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 33 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersGroupId", + "type": "Interface", + "tags": [], + "label": "NetworkUsersGroupId", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 64 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersGroupId.doc_count_error_upper_bound", + "type": "number", + "tags": [], + "label": "doc_count_error_upper_bound", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 65 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersGroupId.sum_other_doc_count", + "type": "number", + "tags": [], + "label": "sum_other_doc_count", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 66 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersGroupId.buckets", + "type": "Array", + "tags": [], + "label": "buckets", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkUsersBucketsItem", + "text": "NetworkUsersBucketsItem" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 67 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersGroupName", + "type": "Interface", + "tags": [], + "label": "NetworkUsersGroupName", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 58 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersGroupName.doc_count_error_upper_bound", + "type": "number", + "tags": [], + "label": "doc_count_error_upper_bound", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 59 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersGroupName.sum_other_doc_count", + "type": "number", + "tags": [], + "label": "sum_other_doc_count", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 60 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersGroupName.buckets", + "type": "Array", + "tags": [], + "label": "buckets", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkUsersBucketsItem", + "text": "NetworkUsersBucketsItem" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 61 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersItem", + "type": "Interface", + "tags": [], + "label": "NetworkUsersItem", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 42 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersItem.name", + "type": "CompoundType", + "tags": [], + "label": "name", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 43 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersItem.id", + "type": "CompoundType", + "tags": [], + "label": "id", + "description": [], + "signature": [ + "string[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 44 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersItem.groupId", + "type": "CompoundType", + "tags": [], + "label": "groupId", + "description": [], + "signature": [ + "string[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 45 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersItem.groupName", + "type": "CompoundType", + "tags": [], + "label": "groupName", + "description": [], + "signature": [ + "string[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 46 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersItem.count", + "type": "CompoundType", + "tags": [], + "label": "count", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 47 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersNode", + "type": "Interface", + "tags": [], + "label": "NetworkUsersNode", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 36 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersNode._id", + "type": "CompoundType", + "tags": [], + "label": "_id", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 37 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersNode.timestamp", + "type": "CompoundType", + "tags": [], + "label": "timestamp", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 38 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersNode.user", + "type": "CompoundType", + "tags": [], + "label": "user", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkUsersItem", + "text": "NetworkUsersItem" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 39 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersRequestOptions", + "type": "Interface", + "tags": [], + "label": "NetworkUsersRequestOptions", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkUsersRequestOptions", + "text": "NetworkUsersRequestOptions" + }, + " extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestOptionsPaginated", + "text": "RequestOptionsPaginated" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 18 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersRequestOptions.ip", + "type": "string", + "tags": [], + "label": "ip", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 19 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersRequestOptions.sort", + "type": "Object", + "tags": [], + "label": "sort", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SortField", + "text": "SortField" + }, + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkUsersFields", + "text": "NetworkUsersFields" + }, + ">" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 20 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersRequestOptions.flowTarget", + "type": "Enum", + "tags": [], + "label": "flowTarget", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.FlowTarget", + "text": "FlowTarget" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 21 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersStrategyResponse", + "type": "Interface", + "tags": [], + "label": "NetworkUsersStrategyResponse", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkUsersStrategyResponse", + "text": "NetworkUsersStrategyResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchResponse", + "text": "IEsSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 24 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersStrategyResponse.edges", + "type": "Array", + "tags": [], + "label": "edges", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkUsersEdges", + "text": "NetworkUsersEdges" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 25 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersStrategyResponse.totalCount", + "type": "number", + "tags": [], + "label": "totalCount", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 26 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersStrategyResponse.pageInfo", + "type": "Object", + "tags": [], + "label": "pageInfo", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.PageInfoPaginated", + "text": "PageInfoPaginated" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 27 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersStrategyResponse.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 28 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.OverviewHostHit", + "type": "Interface", + "tags": [], + "label": "OverviewHostHit", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.OverviewHostHit", + "text": "OverviewHostHit" + }, + " extends ", + "SearchHit", + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/overview/index.ts", + "lineNumber": 36 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.OverviewHostHit.aggregations", + "type": "Object", + "tags": [], + "label": "aggregations", + "description": [], + "signature": [ + "{ auditd_count: { doc_count: number; }; endgame_module: { dns_event_count: { doc_count: number; }; file_event_count: { doc_count: number; }; image_load_event_count: { doc_count: number; }; network_event_count: { doc_count: number; }; process_event_count: { doc_count: number; }; registry_event: { doc_count: number; }; security_event_count: { doc_count: number; }; }; fim_count: { doc_count: number; }; system_module: { login_count: { doc_count: number; }; package_count: { doc_count: number; }; process_count: { doc_count: number; }; user_count: { doc_count: number; }; filebeat_count: { doc_count: number; }; }; winlog_count: { doc_count: number; }; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/overview/index.ts", + "lineNumber": 37 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.OverviewNetworkHit", + "type": "Interface", + "tags": [], + "label": "OverviewNetworkHit", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.OverviewNetworkHit", + "text": "OverviewNetworkHit" + }, + " extends ", + "SearchHit", + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/overview/index.ts", + "lineNumber": 29 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.OverviewNetworkHit.aggregations", + "type": "Object", + "tags": [], + "label": "aggregations", + "description": [], + "signature": [ + "{ unique_flow_count: { doc_count: number; }; unique_dns_count: { doc_count: number; }; unique_suricata_count: { doc_count: number; }; unique_zeek_count: { doc_count: number; }; unique_socket_count: { doc_count: number; }; unique_filebeat_count: { unique_netflow_count: { doc_count: number; }; unique_panw_count: { doc_count: number; }; unique_cisco_count: { doc_count: number; }; }; unique_packetbeat_count: { unique_tls_count: { doc_count: number; }; }; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/overview/index.ts", + "lineNumber": 30 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.PageInfoPaginated", + "type": "Interface", + "tags": [], + "label": "PageInfoPaginated", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/common/index.ts", + "lineNumber": 23 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.PageInfoPaginated.activePage", + "type": "number", + "tags": [], + "label": "activePage", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/common/index.ts", + "lineNumber": 24 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.PageInfoPaginated.fakeTotalCount", + "type": "number", + "tags": [], + "label": "fakeTotalCount", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/common/index.ts", + "lineNumber": 25 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.PageInfoPaginated.showMorePagesIndicator", + "type": "boolean", + "tags": [], + "label": "showMorePagesIndicator", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/common/index.ts", + "lineNumber": 26 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.PageInfoTimeline", + "type": "Interface", + "tags": [], + "label": "PageInfoTimeline", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 588 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.PageInfoTimeline.pageIndex", + "type": "number", + "tags": [], + "label": "pageIndex", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 589 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.PageInfoTimeline.pageSize", + "type": "number", + "tags": [], + "label": "pageSize", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 591 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.PaginationInput", + "type": "Interface", + "tags": [], + "label": "PaginationInput", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/common/index.ts", + "lineNumber": 28 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.PaginationInput.limit", + "type": "number", + "tags": [], + "label": "limit", + "description": [ + "The limit parameter allows you to configure the maximum amount of items to be returned" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/common/index.ts", + "lineNumber": 30 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.PaginationInput.cursor", + "type": "CompoundType", + "tags": [], + "label": "cursor", + "description": [ + "The cursor parameter defines the next result you want to fetch" + ], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/common/index.ts", + "lineNumber": 32 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.PaginationInput.tiebreaker", + "type": "CompoundType", + "tags": [], + "label": "tiebreaker", + "description": [ + "The tiebreaker parameter allow to be more precise to fetch the next item" + ], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/common/index.ts", + "lineNumber": 34 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.PaginationInputPaginated", + "type": "Interface", + "tags": [], + "label": "PaginationInputPaginated", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 44 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.PaginationInputPaginated.activePage", + "type": "number", + "tags": [], + "label": "activePage", + "description": [ + "The activePage parameter defines the page of results you want to fetch" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 46 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.PaginationInputPaginated.cursorStart", + "type": "number", + "tags": [], + "label": "cursorStart", + "description": [ + "The cursorStart parameter defines the start of the results to be displayed" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 48 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.PaginationInputPaginated.fakePossibleCount", + "type": "number", + "tags": [], + "label": "fakePossibleCount", + "description": [ + "The fakePossibleCount parameter determines the total count in order to show 5 additional pages" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 50 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.PaginationInputPaginated.querySize", + "type": "number", + "tags": [], + "label": "querySize", + "description": [ + "The querySize parameter is the number of items to be returned" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 52 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.QueryMatch", + "type": "Interface", + "tags": [], + "label": "QueryMatch", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 24 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.QueryMatch.field", + "type": "string", + "tags": [], + "label": "field", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 25 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.QueryMatch.displayField", + "type": "string", + "tags": [], + "label": "displayField", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 26 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.QueryMatch.value", + "type": "CompoundType", + "tags": [], + "label": "value", + "description": [], + "signature": [ + "string | number" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 27 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.QueryMatch.displayValue", + "type": "CompoundType", + "tags": [], + "label": "displayValue", + "description": [], + "signature": [ + "string | number | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 28 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.QueryMatch.operator", + "type": "CompoundType", + "tags": [], + "label": "operator", + "description": [], + "signature": [ + "\":\" | \":*\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 29 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.QueryMatchInput", + "type": "Interface", + "tags": [], + "label": "QueryMatchInput", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 94 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.QueryMatchInput.field", + "type": "CompoundType", + "tags": [], + "label": "field", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 95 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.QueryMatchInput.displayField", + "type": "CompoundType", + "tags": [], + "label": "displayField", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 97 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.QueryMatchInput.value", + "type": "CompoundType", + "tags": [], + "label": "value", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 99 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.QueryMatchInput.displayValue", + "type": "CompoundType", + "tags": [], + "label": "displayValue", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 101 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.QueryMatchInput.operator", + "type": "CompoundType", + "tags": [], + "label": "operator", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 103 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.QueryMatchResult", + "type": "Interface", + "tags": [], + "label": "QueryMatchResult", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 619 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.QueryMatchResult.field", + "type": "CompoundType", + "tags": [], + "label": "field", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 620 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.QueryMatchResult.displayField", + "type": "CompoundType", + "tags": [], + "label": "displayField", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 621 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.QueryMatchResult.value", + "type": "CompoundType", + "tags": [], + "label": "value", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 622 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.QueryMatchResult.displayValue", + "type": "CompoundType", + "tags": [], + "label": "displayValue", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 623 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.QueryMatchResult.operator", + "type": "CompoundType", + "tags": [], + "label": "operator", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 624 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.RequestBasicOptions", + "type": "Interface", + "tags": [], + "label": "RequestBasicOptions", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestBasicOptions", + "text": "RequestBasicOptions" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchRequest", + "text": "IEsSearchRequest" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/index.ts", + "lineNumber": 88 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.RequestBasicOptions.timerange", + "type": "Object", + "tags": [], + "label": "timerange", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimerangeInput", + "text": "TimerangeInput" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/index.ts", + "lineNumber": 89 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.RequestBasicOptions.filterQuery", + "type": "CompoundType", + "tags": [], + "label": "filterQuery", + "description": [], + "signature": [ + "string | ", + "JsonObject", + " | ", + "ESRangeQuery", + " | ", + "ESQueryStringQuery", + " | ", + "ESMatchQuery", + " | ", + "ESTermQuery", + " | ", + "ESBoolQuery", + " | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/index.ts", + "lineNumber": 90 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.RequestBasicOptions.defaultIndex", + "type": "Array", + "tags": [], + "label": "defaultIndex", + "description": [], + "signature": [ + "string[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/index.ts", + "lineNumber": 91 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.RequestBasicOptions.docValueFields", + "type": "Array", + "tags": [], + "label": "docValueFields", + "description": [], + "signature": [ + "SearchDocValueField", + "[] | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/index.ts", + "lineNumber": 92 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.RequestBasicOptions.factoryQueryType", + "type": "CompoundType", + "tags": [], + "label": "factoryQueryType", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsQueries", + "text": "HostsQueries" + }, + " | ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsKpiQueries", + "text": "HostsKpiQueries" + }, + " | ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkQueries", + "text": "NetworkQueries" + }, + " | ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkKpiQueries", + "text": "NetworkKpiQueries" + }, + " | ", + "CtiQueries", + " | \"matrixHistogram\" | \"matrixHistogramEntities\" | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/index.ts", + "lineNumber": 93 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.RequestOptions", + "type": "Interface", + "tags": [], + "label": "RequestOptions", + "description": [ + "A mapping of semantic fields to their document counterparts" + ], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestOptions", + "text": "RequestOptions" + }, + " extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestBasicOptions", + "text": "RequestBasicOptions" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/index.ts", + "lineNumber": 98 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.RequestOptions.pagination", + "type": "Object", + "tags": [], + "label": "pagination", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.PaginationInput", + "text": "PaginationInput" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/index.ts", + "lineNumber": 99 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.RequestOptions.sort", + "type": "Object", + "tags": [], + "label": "sort", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SortField", + "text": "SortField" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/index.ts", + "lineNumber": 100 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.RequestOptionsPaginated", + "type": "Interface", + "tags": [], + "label": "RequestOptionsPaginated", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestOptionsPaginated", + "text": "RequestOptionsPaginated" + }, + " extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestBasicOptions", + "text": "RequestBasicOptions" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/index.ts", + "lineNumber": 103 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.RequestOptionsPaginated.pagination", + "type": "Object", + "tags": [], + "label": "pagination", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.PaginationInputPaginated", + "text": "PaginationInputPaginated" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/index.ts", + "lineNumber": 104 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.RequestOptionsPaginated.sort", + "type": "Object", + "tags": [], + "label": "sort", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SortField", + "text": "SortField" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/index.ts", + "lineNumber": 105 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ResponseTimeline", + "type": "Interface", + "tags": [], + "label": "ResponseTimeline", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 714 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.ResponseTimeline.code", + "type": "CompoundType", + "tags": [], + "label": "code", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 715 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ResponseTimeline.message", + "type": "CompoundType", + "tags": [], + "label": "message", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 716 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ResponseTimeline.timeline", + "type": "Object", + "tags": [], + "label": "timeline", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineResult", + "text": "TimelineResult" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 717 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.RowRenderer", + "type": "Interface", + "tags": [], + "label": "RowRenderer", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/rows/index.ts", + "lineNumber": 12 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.RowRenderer.id", + "type": "Enum", + "tags": [], + "label": "id", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/rows/index.ts", + "lineNumber": 13 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.RowRenderer.isInstance", + "type": "Function", + "tags": [], + "label": "isInstance", + "description": [], + "signature": [ + "(data: ", + "Ecs", + ") => boolean" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/rows/index.ts", + "lineNumber": 14 + }, + "deprecated": false, + "returnComment": [], + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.data", + "type": "Object", + "tags": [], + "label": "data", + "description": [], + "signature": [ + "Ecs" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/rows/index.ts", + "lineNumber": 14 + }, + "deprecated": false + } + ] + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.RowRenderer.renderRow", + "type": "Function", + "tags": [], + "label": "renderRow", + "description": [], + "signature": [ + "({ browserFields, data, timelineId, }: { browserFields: Readonly>>; data: ", + "Ecs", + "; timelineId: string; }) => React.ReactNode" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/rows/index.ts", + "lineNumber": 15 + }, + "deprecated": false, + "returnComment": [], + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.__0", + "type": "Object", + "tags": [], + "label": "__0", + "description": [], + "signature": [ + "{ browserFields: Readonly>>; data: ", + "Ecs", + "; timelineId: string; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/rows/index.ts", + "lineNumber": 15 + }, + "deprecated": false + } + ] + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.SerializedFilterQuery", + "type": "Interface", + "tags": [], + "label": "SerializedFilterQuery", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 28 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.SerializedFilterQuery.kuery", + "type": "CompoundType", + "tags": [], + "label": "kuery", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.KueryFilterQuery", + "text": "KueryFilterQuery" + }, + " | null" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 29 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.SerializedFilterQuery.serializedQuery", + "type": "string", + "tags": [], + "label": "serializedQuery", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 30 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.SerializedFilterQueryInput", + "type": "Interface", + "tags": [], + "label": "SerializedFilterQueryInput", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 149 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.SerializedFilterQueryInput.filterQuery", + "type": "CompoundType", + "tags": [], + "label": "filterQuery", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.SerializedKueryQueryInput", + "text": "SerializedKueryQueryInput" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 150 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.SerializedFilterQueryResult", + "type": "Interface", + "tags": [], + "label": "SerializedFilterQueryResult", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 667 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.SerializedFilterQueryResult.filterQuery", + "type": "CompoundType", + "tags": [], + "label": "filterQuery", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.SerializedKueryQueryResult", + "text": "SerializedKueryQueryResult" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 668 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.SerializedKueryQueryInput", + "type": "Interface", + "tags": [], + "label": "SerializedKueryQueryInput", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 153 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.SerializedKueryQueryInput.kuery", + "type": "CompoundType", + "tags": [], + "label": "kuery", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.KueryFilterQueryInput", + "text": "KueryFilterQueryInput" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 154 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.SerializedKueryQueryInput.serializedQuery", + "type": "CompoundType", + "tags": [], + "label": "serializedQuery", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 155 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.SerializedKueryQueryResult", + "type": "Interface", + "tags": [], + "label": "SerializedKueryQueryResult", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 671 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.SerializedKueryQueryResult.kuery", + "type": "CompoundType", + "tags": [], + "label": "kuery", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.KueryFilterQueryResult", + "text": "KueryFilterQueryResult" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 672 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.SerializedKueryQueryResult.serializedQuery", + "type": "CompoundType", + "tags": [], + "label": "serializedQuery", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 673 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ShardsResponse", + "type": "Interface", + "tags": [], + "label": "ShardsResponse", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/common/index.ts", + "lineNumber": 43 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.ShardsResponse.total", + "type": "number", + "tags": [], + "label": "total", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/common/index.ts", + "lineNumber": 44 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ShardsResponse.successful", + "type": "number", + "tags": [], + "label": "successful", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/common/index.ts", + "lineNumber": 45 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ShardsResponse.failed", + "type": "number", + "tags": [], + "label": "failed", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/common/index.ts", + "lineNumber": 46 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ShardsResponse.skipped", + "type": "number", + "tags": [], + "label": "skipped", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/common/index.ts", + "lineNumber": 47 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.SortColumnTimeline", + "type": "Interface", + "tags": [], + "label": "SortColumnTimeline", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 34 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.SortColumnTimeline.columnId", + "type": "string", + "tags": [], + "label": "columnId", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 35 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.SortColumnTimeline.columnType", + "type": "string", + "tags": [], + "label": "columnType", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 36 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.SortColumnTimeline.sortDirection", + "type": "CompoundType", + "tags": [], + "label": "sortDirection", + "description": [], + "signature": [ + "\"none\" | \"asc\" | \"desc\" | ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Direction", + "text": "Direction" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 37 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.SortField", + "type": "Interface", + "tags": [], + "label": "SortField", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SortField", + "text": "SortField" + }, + "" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 30 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.SortField.field", + "type": "Uncategorized", + "tags": [], + "label": "field", + "description": [], + "signature": [ + "Field" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 31 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.SortField.direction", + "type": "Enum", + "tags": [], + "label": "direction", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Direction", + "text": "Direction" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 32 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.SortTimeline", + "type": "Interface", + "tags": [], + "label": "SortTimeline", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 719 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.SortTimeline.sortField", + "type": "Enum", + "tags": [], + "label": "sortField", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.SortFieldTimeline", + "text": "SortFieldTimeline" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 720 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.SortTimeline.sortOrder", + "type": "Enum", + "tags": [], + "label": "sortOrder", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Direction", + "text": "Direction" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 721 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.SortTimelineInput", + "type": "Interface", + "tags": [], + "label": "SortTimelineInput", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 168 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.SortTimelineInput.columnId", + "type": "CompoundType", + "tags": [], + "label": "columnId", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 169 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.SortTimelineInput.sortDirection", + "type": "CompoundType", + "tags": [], + "label": "sortDirection", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 170 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEdges", + "type": "Interface", + "tags": [], + "label": "TimelineEdges", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 13 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEdges.node", + "type": "Object", + "tags": [], + "label": "node", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineItem", + "text": "TimelineItem" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 14 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEdges.cursor", + "type": "Object", + "tags": [], + "label": "cursor", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.CursorType", + "text": "CursorType" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 15 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEqlRequestOptions", + "type": "Interface", + "tags": [], + "label": "TimelineEqlRequestOptions", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEqlRequestOptions", + "text": "TimelineEqlRequestOptions" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.EqlSearchStrategyRequest", + "text": "EqlSearchStrategyRequest" + }, + ",Pick<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsAllRequestOptions", + "text": "TimelineEventsAllRequestOptions" + }, + ", \"id\" | \"sort\" | \"fields\" | \"language\" | \"timerange\" | \"defaultIndex\" | \"pagination\" | \"filterQuery\" | \"docValueFields\" | \"factoryQueryType\" | \"indexType\" | \"fieldRequested\" | \"excludeEcsData\">" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 16 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEqlRequestOptions.eventCategoryField", + "type": "string", + "tags": [], + "label": "eventCategoryField", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 19 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEqlRequestOptions.tiebreakerField", + "type": "string", + "tags": [], + "label": "tiebreakerField", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 20 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEqlRequestOptions.timestampField", + "type": "string", + "tags": [], + "label": "timestampField", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 21 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEqlRequestOptions.size", + "type": "number", + "tags": [], + "label": "size", + "description": [], + "signature": [ + "number | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 22 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEqlResponse", + "type": "Interface", + "tags": [], + "label": "TimelineEqlResponse", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEqlResponse", + "text": "TimelineEqlResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.EqlSearchStrategyResponse", + "text": "EqlSearchStrategyResponse" + }, + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.EqlSearchResponse", + "text": "EqlSearchResponse" + }, + ">" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 25 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEqlResponse.edges", + "type": "Array", + "tags": [], + "label": "edges", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEdges", + "text": "TimelineEdges" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 26 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEqlResponse.totalCount", + "type": "number", + "tags": [], + "label": "totalCount", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 27 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEqlResponse.pageInfo", + "type": "Object", + "tags": [], + "label": "pageInfo", + "description": [], + "signature": [ + "{ activePage: number; querySize: number; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 28 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEqlResponse.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 29 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEventsAllRequestOptions", + "type": "Interface", + "tags": [], + "label": "TimelineEventsAllRequestOptions", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsAllRequestOptions", + "text": "TimelineEventsAllRequestOptions" + }, + " extends ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineRequestOptionsPaginated", + "text": "TimelineRequestOptionsPaginated" + }, + "" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 37 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEventsAllRequestOptions.fields", + "type": "CompoundType", + "tags": [], + "label": "fields", + "description": [], + "signature": [ + "string[] | { field: string; include_unmapped: boolean; }[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 38 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEventsAllRequestOptions.fieldRequested", + "type": "Array", + "tags": [], + "label": "fieldRequested", + "description": [], + "signature": [ + "string[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 39 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEventsAllRequestOptions.language", + "type": "CompoundType", + "tags": [], + "label": "language", + "description": [], + "signature": [ + "\"eql\" | \"lucene\" | \"kuery\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 40 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEventsAllRequestOptions.excludeEcsData", + "type": "CompoundType", + "tags": [], + "label": "excludeEcsData", + "description": [], + "signature": [ + "boolean | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 41 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEventsAllStrategyResponse", + "type": "Interface", + "tags": [], + "label": "TimelineEventsAllStrategyResponse", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsAllStrategyResponse", + "text": "TimelineEventsAllStrategyResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchResponse", + "text": "IEsSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 30 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEventsAllStrategyResponse.edges", + "type": "Array", + "tags": [], + "label": "edges", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEdges", + "text": "TimelineEdges" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 31 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEventsAllStrategyResponse.totalCount", + "type": "number", + "tags": [], + "label": "totalCount", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 32 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEventsAllStrategyResponse.pageInfo", + "type": "Object", + "tags": [], + "label": "pageInfo", + "description": [], + "signature": [ + "{ activePage: number; querySize: number; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 33 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEventsAllStrategyResponse.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 34 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEventsDetailsItem", + "type": "Interface", + "tags": [], + "label": "TimelineEventsDetailsItem", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", + "lineNumber": 12 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEventsDetailsItem.ariaRowindex", + "type": "CompoundType", + "tags": [], + "label": "ariaRowindex", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", + "lineNumber": 13 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEventsDetailsItem.category", + "type": "string", + "tags": [], + "label": "category", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", + "lineNumber": 14 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEventsDetailsItem.field", + "type": "string", + "tags": [], + "label": "field", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", + "lineNumber": 15 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEventsDetailsItem.values", + "type": "CompoundType", + "tags": [], + "label": "values", + "description": [], + "signature": [ + "string[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", + "lineNumber": 16 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEventsDetailsItem.originalValue", + "type": "Any", + "tags": [], + "label": "originalValue", + "description": [], + "signature": [ + "any" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", + "lineNumber": 18 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEventsDetailsItem.isObjectArray", + "type": "boolean", + "tags": [], + "label": "isObjectArray", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", + "lineNumber": 19 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEventsDetailsRequestOptions", + "type": "Interface", + "tags": [], + "label": "TimelineEventsDetailsRequestOptions", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsDetailsRequestOptions", + "text": "TimelineEventsDetailsRequestOptions" + }, + " extends Partial<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineRequestOptionsPaginated", + "text": "TimelineRequestOptionsPaginated" + }, + ">" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", + "lineNumber": 27 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEventsDetailsRequestOptions.indexName", + "type": "string", + "tags": [], + "label": "indexName", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", + "lineNumber": 29 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEventsDetailsRequestOptions.eventId", + "type": "string", + "tags": [], + "label": "eventId", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", + "lineNumber": 30 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEventsDetailsStrategyResponse", + "type": "Interface", + "tags": [], + "label": "TimelineEventsDetailsStrategyResponse", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsDetailsStrategyResponse", + "text": "TimelineEventsDetailsStrategyResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchResponse", + "text": "IEsSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", + "lineNumber": 22 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEventsDetailsStrategyResponse.data", + "type": "CompoundType", + "tags": [], + "label": "data", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsDetailsItem", + "text": "TimelineEventsDetailsItem" + }, + "[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", + "lineNumber": 23 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEventsDetailsStrategyResponse.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", + "lineNumber": 24 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEventsLastEventTimeRequestOptions", + "type": "Interface", + "tags": [], + "label": "TimelineEventsLastEventTimeRequestOptions", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsLastEventTimeRequestOptions", + "text": "TimelineEventsLastEventTimeRequestOptions" + }, + " extends Pick<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineRequestBasicOptions", + "text": "TimelineRequestBasicOptions" + }, + ", \"id\" | \"params\" | \"defaultIndex\" | \"docValueFields\" | \"factoryQueryType\" | \"indexType\">" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 38 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEventsLastEventTimeRequestOptions.indexKey", + "type": "Enum", + "tags": [], + "label": "indexKey", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.LastEventIndexKey", + "text": "LastEventIndexKey" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 40 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEventsLastEventTimeRequestOptions.details", + "type": "Object", + "tags": [], + "label": "details", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.LastTimeDetails", + "text": "LastTimeDetails" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 41 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEventsLastEventTimeStrategyResponse", + "type": "Interface", + "tags": [], + "label": "TimelineEventsLastEventTimeStrategyResponse", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsLastEventTimeStrategyResponse", + "text": "TimelineEventsLastEventTimeStrategyResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchResponse", + "text": "IEsSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 24 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEventsLastEventTimeStrategyResponse.lastSeen", + "type": "CompoundType", + "tags": [], + "label": "lastSeen", + "description": [], + "signature": [ + "string | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 25 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEventsLastEventTimeStrategyResponse.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 26 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineInput", + "type": "Interface", + "tags": [], + "label": "TimelineInput", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 173 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineInput.columns", + "type": "CompoundType", + "tags": [], + "label": "columns", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.ColumnHeaderInput", + "text": "ColumnHeaderInput" + }, + "[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 174 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineInput.dataProviders", + "type": "CompoundType", + "tags": [], + "label": "dataProviders", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DataProviderInput", + "text": "DataProviderInput" + }, + "[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 175 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineInput.description", + "type": "CompoundType", + "tags": [], + "label": "description", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 176 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineInput.eqlOptions", + "type": "CompoundType", + "tags": [], + "label": "eqlOptions", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.EqlOptionsInput", + "text": "EqlOptionsInput" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 177 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineInput.eventType", + "type": "CompoundType", + "tags": [], + "label": "eventType", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 178 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineInput.excludedRowRendererIds", + "type": "CompoundType", + "tags": [], + "label": "excludedRowRendererIds", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + "[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 179 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineInput.filters", + "type": "CompoundType", + "tags": [], + "label": "filters", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.FilterTimelineInput", + "text": "FilterTimelineInput" + }, + "[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 180 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineInput.kqlMode", + "type": "CompoundType", + "tags": [], + "label": "kqlMode", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 181 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineInput.kqlQuery", + "type": "CompoundType", + "tags": [], + "label": "kqlQuery", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.SerializedFilterQueryInput", + "text": "SerializedFilterQueryInput" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 182 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineInput.indexNames", + "type": "CompoundType", + "tags": [], + "label": "indexNames", + "description": [], + "signature": [ + "string[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 183 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineInput.title", + "type": "CompoundType", + "tags": [], + "label": "title", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 184 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineInput.templateTimelineId", + "type": "CompoundType", + "tags": [], + "label": "templateTimelineId", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 185 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineInput.templateTimelineVersion", + "type": "CompoundType", + "tags": [], + "label": "templateTimelineVersion", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 186 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineInput.timelineType", + "type": "CompoundType", + "tags": [], + "label": "timelineType", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 187 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineInput.dateRange", + "type": "CompoundType", + "tags": [], + "label": "dateRange", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DateRangePickerInput", + "text": "DateRangePickerInput" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 188 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineInput.savedQueryId", + "type": "CompoundType", + "tags": [], + "label": "savedQueryId", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 189 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineInput.sort", + "type": "CompoundType", + "tags": [], + "label": "sort", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.SortTimelineInput", + "text": "SortTimelineInput" + }, + "[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 190 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineInput.status", + "type": "CompoundType", + "tags": [], + "label": "status", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 191 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineItem", + "type": "Interface", + "tags": [], + "label": "TimelineItem", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 18 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineItem._id", + "type": "string", + "tags": [], + "label": "_id", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 19 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineItem._index", + "type": "CompoundType", + "tags": [], + "label": "_index", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 20 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineItem.data", + "type": "Array", + "tags": [], + "label": "data", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineNonEcsData", + "text": "TimelineNonEcsData" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 21 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineItem.ecs", + "type": "Object", + "tags": [], + "label": "ecs", + "description": [], + "signature": [ + "Ecs" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 22 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineKpiStrategyResponse", + "type": "Interface", + "tags": [], + "label": "TimelineKpiStrategyResponse", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineKpiStrategyResponse", + "text": "TimelineKpiStrategyResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchResponse", + "text": "IEsSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 29 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineKpiStrategyResponse.destinationIpCount", + "type": "number", + "tags": [], + "label": "destinationIpCount", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 30 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineKpiStrategyResponse.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 31 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineKpiStrategyResponse.hostCount", + "type": "number", + "tags": [], + "label": "hostCount", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 32 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineKpiStrategyResponse.processCount", + "type": "number", + "tags": [], + "label": "processCount", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 33 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineKpiStrategyResponse.sourceIpCount", + "type": "number", + "tags": [], + "label": "sourceIpCount", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 34 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineKpiStrategyResponse.userCount", + "type": "number", + "tags": [], + "label": "userCount", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 35 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineNonEcsData", + "type": "Interface", + "tags": [], + "label": "TimelineNonEcsData", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 25 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineNonEcsData.field", + "type": "string", + "tags": [], + "label": "field", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 26 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineNonEcsData.value", + "type": "CompoundType", + "tags": [], + "label": "value", + "description": [], + "signature": [ + "string[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 27 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelinePersistInput", + "type": "Interface", + "tags": [], + "label": "TimelinePersistInput", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 40 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelinePersistInput.id", + "type": "string", + "tags": [], + "label": "id", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 41 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelinePersistInput.dataProviders", + "type": "Array", + "tags": [], + "label": "dataProviders", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProvider", + "text": "DataProvider" + }, + "[] | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 42 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelinePersistInput.dateRange", + "type": "Object", + "tags": [], + "label": "dateRange", + "description": [], + "signature": [ + "{ start: string; end: string; } | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 43 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelinePersistInput.excludedRowRendererIds", + "type": "Array", + "tags": [], + "label": "excludedRowRendererIds", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + "[] | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 47 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelinePersistInput.expandedDetail", + "type": "Object", + "tags": [], + "label": "expandedDetail", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineExpandedDetail", + "text": "TimelineExpandedDetail" + }, + " | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 48 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelinePersistInput.filters", + "type": "Array", + "tags": [], + "label": "filters", + "description": [], + "signature": [ + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataPluginApi", + "section": "def-common.Filter", + "text": "Filter" + }, + "[] | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 49 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelinePersistInput.columns", + "type": "Array", + "tags": [], + "label": "columns", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ColumnHeaderOptions", + "text": "ColumnHeaderOptions" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 50 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelinePersistInput.itemsPerPage", + "type": "number", + "tags": [], + "label": "itemsPerPage", + "description": [], + "signature": [ + "number | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 51 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelinePersistInput.indexNames", + "type": "Array", + "tags": [], + "label": "indexNames", + "description": [], + "signature": [ + "string[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 52 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelinePersistInput.kqlQuery", + "type": "Object", + "tags": [], + "label": "kqlQuery", + "description": [], + "signature": [ + "{ filterQuery: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.SerializedFilterQuery", + "text": "SerializedFilterQuery" + }, + " | null; } | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 53 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelinePersistInput.show", + "type": "CompoundType", + "tags": [], + "label": "show", + "description": [], + "signature": [ + "boolean | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 56 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelinePersistInput.sort", + "type": "Array", + "tags": [], + "label": "sort", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.SortColumnTimeline", + "text": "SortColumnTimeline" + }, + "[] | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 57 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelinePersistInput.showCheckboxes", + "type": "CompoundType", + "tags": [], + "label": "showCheckboxes", + "description": [], + "signature": [ + "boolean | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 58 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelinePersistInput.timelineType", + "type": "CompoundType", + "tags": [], + "label": "timelineType", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + " | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 59 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelinePersistInput.templateTimelineId", + "type": "CompoundType", + "tags": [], + "label": "templateTimelineId", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 60 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelinePersistInput.templateTimelineVersion", + "type": "CompoundType", + "tags": [], + "label": "templateTimelineVersion", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 61 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineRequestBasicOptions", + "type": "Interface", + "tags": [], + "label": "TimelineRequestBasicOptions", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineRequestBasicOptions", + "text": "TimelineRequestBasicOptions" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchRequest", + "text": "IEsSearchRequest" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 38 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineRequestBasicOptions.timerange", + "type": "Object", + "tags": [], + "label": "timerange", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimerangeInput", + "text": "TimerangeInput" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 39 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineRequestBasicOptions.filterQuery", + "type": "CompoundType", + "tags": [], + "label": "filterQuery", + "description": [], + "signature": [ + "string | ", + "JsonObject", + " | ", + "ESRangeQuery", + " | ", + "ESQueryStringQuery", + " | ", + "ESMatchQuery", + " | ", + "ESTermQuery", + " | ", + "ESBoolQuery", + " | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 40 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineRequestBasicOptions.defaultIndex", + "type": "Array", + "tags": [], + "label": "defaultIndex", + "description": [], + "signature": [ + "string[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 41 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineRequestBasicOptions.docValueFields", + "type": "Array", + "tags": [], + "label": "docValueFields", + "description": [], + "signature": [ + "SearchDocValueField", + "[] | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 42 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineRequestBasicOptions.factoryQueryType", + "type": "CompoundType", + "tags": [], + "label": "factoryQueryType", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineEventsQueries", + "text": "TimelineEventsQueries" + }, + " | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 43 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineRequestOptionsPaginated", + "type": "Interface", + "tags": [], + "label": "TimelineRequestOptionsPaginated", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineRequestOptionsPaginated", + "text": "TimelineRequestOptionsPaginated" + }, + " extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineRequestBasicOptions", + "text": "TimelineRequestBasicOptions" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 50 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineRequestOptionsPaginated.pagination", + "type": "Object", + "tags": [], + "label": "pagination", + "description": [], + "signature": [ + "{ activePage: number; querySize: number; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 52 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineRequestOptionsPaginated.sort", + "type": "Array", + "tags": [], + "label": "sort", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineRequestSortField", + "text": "TimelineRequestSortField" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 53 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineRequestSortField", + "type": "Interface", + "tags": [], + "label": "TimelineRequestSortField", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineRequestSortField", + "text": "TimelineRequestSortField" + }, + " extends ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SortField", + "text": "SortField" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 46 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineRequestSortField.type", + "type": "string", + "tags": [], + "label": "type", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 47 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineResult", + "type": "Interface", + "tags": [], + "label": "TimelineResult", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 681 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineResult.columns", + "type": "CompoundType", + "tags": [], + "label": "columns", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.ColumnHeaderResult", + "text": "ColumnHeaderResult" + }, + "[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 682 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineResult.created", + "type": "CompoundType", + "tags": [], + "label": "created", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 683 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineResult.createdBy", + "type": "CompoundType", + "tags": [], + "label": "createdBy", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 684 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineResult.dataProviders", + "type": "CompoundType", + "tags": [], + "label": "dataProviders", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DataProviderResult", + "text": "DataProviderResult" + }, + "[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 685 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineResult.dateRange", + "type": "CompoundType", + "tags": [], + "label": "dateRange", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DateRangePickerResult", + "text": "DateRangePickerResult" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 686 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineResult.description", + "type": "CompoundType", + "tags": [], + "label": "description", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 687 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineResult.eqlOptions", + "type": "CompoundType", + "tags": [], + "label": "eqlOptions", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.EqlOptionsResult", + "text": "EqlOptionsResult" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 688 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineResult.eventIdToNoteIds", + "type": "CompoundType", + "tags": [], + "label": "eventIdToNoteIds", + "description": [], + "signature": [ + "NoteResult", + "[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 689 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineResult.eventType", + "type": "CompoundType", + "tags": [], + "label": "eventType", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 690 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineResult.excludedRowRendererIds", + "type": "CompoundType", + "tags": [], + "label": "excludedRowRendererIds", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + "[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 691 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineResult.favorite", + "type": "CompoundType", + "tags": [], + "label": "favorite", + "description": [], + "signature": [ + "{ fullName?: string | null | undefined; userName?: string | null | undefined; favoriteDate?: number | null | undefined; }[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 692 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineResult.filters", + "type": "CompoundType", + "tags": [], + "label": "filters", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.FilterTimelineResult", + "text": "FilterTimelineResult" + }, + "[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 693 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineResult.kqlMode", + "type": "CompoundType", + "tags": [], + "label": "kqlMode", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 694 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineResult.kqlQuery", + "type": "CompoundType", + "tags": [], + "label": "kqlQuery", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.SerializedFilterQueryResult", + "text": "SerializedFilterQueryResult" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 695 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineResult.indexNames", + "type": "CompoundType", + "tags": [], + "label": "indexNames", + "description": [], + "signature": [ + "string[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 696 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineResult.notes", + "type": "CompoundType", + "tags": [], + "label": "notes", + "description": [], + "signature": [ + "NoteResult", + "[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 697 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineResult.noteIds", + "type": "CompoundType", + "tags": [], + "label": "noteIds", + "description": [], + "signature": [ + "string[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 698 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineResult.pinnedEventIds", + "type": "CompoundType", + "tags": [], + "label": "pinnedEventIds", + "description": [], + "signature": [ + "string[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 699 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineResult.pinnedEventsSaveObject", + "type": "CompoundType", + "tags": [], + "label": "pinnedEventsSaveObject", + "description": [], + "signature": [ + "PinnedEvent", + "[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 700 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineResult.savedQueryId", + "type": "CompoundType", + "tags": [], + "label": "savedQueryId", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 701 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineResult.savedObjectId", + "type": "string", + "tags": [], + "label": "savedObjectId", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 702 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineResult.sort", + "type": "CompoundType", + "tags": [], + "label": "sort", + "description": [], + "signature": [ + "{ columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; } | { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; }[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 703 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineResult.status", + "type": "CompoundType", + "tags": [], + "label": "status", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 704 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineResult.title", + "type": "CompoundType", + "tags": [], + "label": "title", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 705 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineResult.templateTimelineId", + "type": "CompoundType", + "tags": [], + "label": "templateTimelineId", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 706 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineResult.templateTimelineVersion", + "type": "CompoundType", + "tags": [], + "label": "templateTimelineVersion", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 707 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineResult.timelineType", + "type": "CompoundType", + "tags": [], + "label": "timelineType", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 708 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineResult.updated", + "type": "CompoundType", + "tags": [], + "label": "updated", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 709 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineResult.updatedBy", + "type": "CompoundType", + "tags": [], + "label": "updatedBy", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 710 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineResult.version", + "type": "string", + "tags": [], + "label": "version", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 711 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimerangeInput", + "type": "Interface", + "tags": [], + "label": "TimerangeInput", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 35 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.TimerangeInput.interval", + "type": "string", + "tags": [], + "label": "interval", + "description": [ + "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." + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 37 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimerangeInput.to", + "type": "string", + "tags": [], + "label": "to", + "description": [ + "The end of the timerange" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 39 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimerangeInput.from", + "type": "string", + "tags": [], + "label": "from", + "description": [ + "The beginning of the timerange" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 41 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TopCountriesItemDestination", + "type": "Interface", + "tags": [], + "label": "TopCountriesItemDestination", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 51 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.TopCountriesItemDestination.country", + "type": "CompoundType", + "tags": [], + "label": "country", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 52 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TopCountriesItemDestination.destination_ips", + "type": "CompoundType", + "tags": [], + "label": "destination_ips", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 53 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TopCountriesItemDestination.flows", + "type": "CompoundType", + "tags": [], + "label": "flows", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 54 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TopCountriesItemDestination.location", + "type": "CompoundType", + "tags": [], + "label": "location", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.GeoItem", + "text": "GeoItem" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 55 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TopCountriesItemDestination.source_ips", + "type": "CompoundType", + "tags": [], + "label": "source_ips", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 56 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TopCountriesItemSource", + "type": "Interface", + "tags": [], + "label": "TopCountriesItemSource", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 18 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.TopCountriesItemSource.country", + "type": "CompoundType", + "tags": [], + "label": "country", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 19 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TopCountriesItemSource.destination_ips", + "type": "CompoundType", + "tags": [], + "label": "destination_ips", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 20 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TopCountriesItemSource.flows", + "type": "CompoundType", + "tags": [], + "label": "flows", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 21 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TopCountriesItemSource.location", + "type": "CompoundType", + "tags": [], + "label": "location", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.GeoItem", + "text": "GeoItem" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 22 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TopCountriesItemSource.source_ips", + "type": "CompoundType", + "tags": [], + "label": "source_ips", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_countries/index.ts", + "lineNumber": 23 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TopNetworkTablesEcsField", + "type": "Interface", + "tags": [], + "label": "TopNetworkTablesEcsField", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/common/index.ts", + "lineNumber": 42 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.TopNetworkTablesEcsField.bytes_in", + "type": "CompoundType", + "tags": [], + "label": "bytes_in", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/common/index.ts", + "lineNumber": 43 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TopNetworkTablesEcsField.bytes_out", + "type": "CompoundType", + "tags": [], + "label": "bytes_out", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/common/index.ts", + "lineNumber": 44 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TopNFlowItemDestination", + "type": "Interface", + "tags": [], + "label": "TopNFlowItemDestination", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 64 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.TopNFlowItemDestination.autonomous_system", + "type": "CompoundType", + "tags": [], + "label": "autonomous_system", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.AutonomousSystemItem", + "text": "AutonomousSystemItem" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 65 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TopNFlowItemDestination.domain", + "type": "CompoundType", + "tags": [], + "label": "domain", + "description": [], + "signature": [ + "string[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 66 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TopNFlowItemDestination.ip", + "type": "CompoundType", + "tags": [], + "label": "ip", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 67 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TopNFlowItemDestination.location", + "type": "CompoundType", + "tags": [], + "label": "location", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.GeoItem", + "text": "GeoItem" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 68 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TopNFlowItemDestination.flows", + "type": "CompoundType", + "tags": [], + "label": "flows", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 69 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TopNFlowItemDestination.source_ips", + "type": "CompoundType", + "tags": [], + "label": "source_ips", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 70 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TopNFlowItemSource", + "type": "Interface", + "tags": [], + "label": "TopNFlowItemSource", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 50 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.TopNFlowItemSource.autonomous_system", + "type": "CompoundType", + "tags": [], + "label": "autonomous_system", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.AutonomousSystemItem", + "text": "AutonomousSystemItem" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 51 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TopNFlowItemSource.domain", + "type": "CompoundType", + "tags": [], + "label": "domain", + "description": [], + "signature": [ + "string[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 52 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TopNFlowItemSource.ip", + "type": "CompoundType", + "tags": [], + "label": "ip", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 53 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TopNFlowItemSource.location", + "type": "CompoundType", + "tags": [], + "label": "location", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.GeoItem", + "text": "GeoItem" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 54 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TopNFlowItemSource.flows", + "type": "CompoundType", + "tags": [], + "label": "flows", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 55 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TopNFlowItemSource.destination_ips", + "type": "CompoundType", + "tags": [], + "label": "destination_ips", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/top_n_flow/index.ts", + "lineNumber": 56 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TotalHit", + "type": "Interface", + "tags": [], + "label": "TotalHit", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/common/index.ts", + "lineNumber": 50 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.TotalHit.value", + "type": "number", + "tags": [], + "label": "value", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/common/index.ts", + "lineNumber": 51 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TotalHit.relation", + "type": "string", + "tags": [], + "label": "relation", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/common/index.ts", + "lineNumber": 52 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TotalValue", + "type": "Interface", + "tags": [], + "label": "TotalValue", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 11 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.TotalValue.value", + "type": "number", + "tags": [], + "label": "value", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 12 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TotalValue.relation", + "type": "string", + "tags": [], + "label": "relation", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 13 + }, + "deprecated": false + } + ], + "initialIsOpen": false + } + ], + "enums": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.DataProviderType", + "type": "Enum", + "tags": [], + "label": "DataProviderType", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 70 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.Direction", + "type": "Enum", + "tags": [], + "label": "Direction", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 25 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FlowDirection", + "type": "Enum", + "tags": [], + "label": "FlowDirection", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 194 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FlowTarget", + "type": "Enum", + "tags": [], + "label": "FlowTarget", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/common/index.ts", + "lineNumber": 30 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FlowTargetSourceDest", + "type": "Enum", + "tags": [], + "label": "FlowTargetSourceDest", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/common/index.ts", + "lineNumber": 37 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostPolicyResponseActionStatus", + "type": "Enum", + "tags": [], + "label": "HostPolicyResponseActionStatus", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 12 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsFields", + "type": "Enum", + "tags": [], + "label": "HostsFields", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 19 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiQueries", + "type": "Enum", + "tags": [], + "label": "HostsKpiQueries", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/index.ts", + "lineNumber": 17 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsQueries", + "type": "Enum", + "tags": [], + "label": "HostsQueries", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/index.ts", + "lineNumber": 17 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.LastEventIndexKey", + "type": "Enum", + "tags": [], + "label": "LastEventIndexKey", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 12 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixHistogramType", + "type": "Enum", + "tags": [], + "label": "MatrixHistogramType", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/index.ts", + "lineNumber": 28 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDirectionEcs", + "type": "Enum", + "tags": [], + "label": "NetworkDirectionEcs", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/common/index.ts", + "lineNumber": 11 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDnsFields", + "type": "Enum", + "tags": [], + "label": "NetworkDnsFields", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/dns/index.ts", + "lineNumber": 12 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkHttpFields", + "type": "Enum", + "tags": [], + "label": "NetworkHttpFields", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/http/index.ts", + "lineNumber": 12 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkKpiQueries", + "type": "Enum", + "tags": [], + "label": "NetworkKpiQueries", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/kpi/index.ts", + "lineNumber": 20 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkQueries", + "type": "Enum", + "tags": [], + "label": "NetworkQueries", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/index.ts", + "lineNumber": 19 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTopTablesFields", + "type": "Enum", + "tags": [], + "label": "NetworkTopTablesFields", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/common/index.ts", + "lineNumber": 22 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkUsersFields", + "type": "Enum", + "tags": [], + "label": "NetworkUsersFields", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/users/index.ts", + "lineNumber": 13 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.RowRendererId", + "type": "Enum", + "tags": [], + "label": "RowRendererId", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 207 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.SortFieldTimeline", + "type": "Enum", + "tags": [], + "label": "SortFieldTimeline", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 512 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TemplateTimelineType", + "type": "Enum", + "tags": [], + "label": "TemplateTimelineType", + "description": [ + "\nTimeline template type" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 233 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEventsQueries", + "type": "Enum", + "tags": [], + "label": "TimelineEventsQueries", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/events/index.ts", + "lineNumber": 13 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineId", + "type": "Enum", + "tags": [], + "label": "TimelineId", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 305 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineStatus", + "type": "Enum", + "tags": [], + "label": "TimelineStatus", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 188 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineTabs", + "type": "Enum", + "tags": [], + "label": "TimelineTabs", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 453 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineType", + "type": "Enum", + "tags": [], + "label": "TimelineType", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 256 + }, + "deprecated": false, + "initialIsOpen": false + } + ], + "misc": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.AllTimelineSavedObject", + "type": "Type", + "tags": [], + "label": "AllTimelineSavedObject", + "description": [], + "signature": [ + "{ total: number; data: { columns?: { aggregatable?: boolean | null | undefined; category?: string | null | undefined; columnHeaderType?: string | null | undefined; description?: string | null | undefined; example?: string | null | undefined; indexes?: string[] | null | undefined; id?: string | null | undefined; name?: string | null | undefined; placeholder?: string | null | undefined; searchable?: boolean | null | undefined; type?: string | null | undefined; }[] | null | undefined; dataProviders?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; and?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; }[] | null | undefined; type?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + " | null | undefined; }[] | null | undefined; description?: string | null | undefined; eqlOptions?: { eventCategoryField?: string | null | undefined; query?: string | null | undefined; tiebreakerField?: string | null | undefined; timestampField?: string | null | undefined; size?: string | number | null | undefined; } | null | undefined; eventType?: string | null | undefined; excludedRowRendererIds?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + "[] | null | undefined; favorite?: { keySearch?: string | null | undefined; favoriteDate?: number | null | undefined; fullName?: string | null | undefined; userName?: string | null | undefined; }[] | null | undefined; filters?: { exists?: string | null | undefined; meta?: { alias?: string | null | undefined; controlledBy?: string | null | undefined; disabled?: boolean | null | undefined; field?: string | null | undefined; formattedValue?: string | null | undefined; index?: string | null | undefined; key?: string | null | undefined; negate?: boolean | null | undefined; params?: string | null | undefined; type?: string | null | undefined; value?: string | null | undefined; } | null | undefined; match_all?: string | null | undefined; missing?: string | null | undefined; query?: string | null | undefined; range?: string | null | undefined; script?: string | null | undefined; }[] | null | undefined; indexNames?: string[] | null | undefined; kqlMode?: string | null | undefined; kqlQuery?: { filterQuery?: { kuery?: { kind?: string | null | undefined; expression?: string | null | undefined; } | null | undefined; serializedQuery?: string | null | undefined; } | null | undefined; } | null | undefined; title?: string | null | undefined; templateTimelineId?: string | null | undefined; templateTimelineVersion?: number | null | undefined; timelineType?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + " | null | undefined; dateRange?: { start?: string | number | null | undefined; end?: string | number | null | undefined; } | null | undefined; savedQueryId?: string | null | undefined; sort?: { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; } | { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; }[] | null | undefined; status?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + " | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { savedObjectId: string; version: string; } & { eventIdToNoteIds?: ({ timelineId: string | null; } & { eventId?: string | null | undefined; note?: string | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { noteId: string; version: string; } & { timelineVersion?: string | null | undefined; })[] | undefined; noteIds?: string[] | undefined; notes?: ({ timelineId: string | null; } & { eventId?: string | null | undefined; note?: string | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { noteId: string; version: string; } & { timelineVersion?: string | null | undefined; })[] | undefined; pinnedEventIds?: string[] | undefined; pinnedEventsSaveObject?: ({ pinnedEventId: string; version: string; } & { timelineId: string; eventId: string; } & { created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { timelineVersion?: string | null | undefined; })[] | undefined; }; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 405 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.AllTimelinesResponse", + "type": "Type", + "tags": [], + "label": "AllTimelinesResponse", + "description": [], + "signature": [ + "{ timeline: ({ columns?: { aggregatable?: boolean | null | undefined; category?: string | null | undefined; columnHeaderType?: string | null | undefined; description?: string | null | undefined; example?: string | null | undefined; indexes?: string[] | null | undefined; id?: string | null | undefined; name?: string | null | undefined; placeholder?: string | null | undefined; searchable?: boolean | null | undefined; type?: string | null | undefined; }[] | null | undefined; dataProviders?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; and?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; }[] | null | undefined; type?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + " | null | undefined; }[] | null | undefined; description?: string | null | undefined; eqlOptions?: { eventCategoryField?: string | null | undefined; query?: string | null | undefined; tiebreakerField?: string | null | undefined; timestampField?: string | null | undefined; size?: string | number | null | undefined; } | null | undefined; eventType?: string | null | undefined; excludedRowRendererIds?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + "[] | null | undefined; favorite?: { keySearch?: string | null | undefined; favoriteDate?: number | null | undefined; fullName?: string | null | undefined; userName?: string | null | undefined; }[] | null | undefined; filters?: { exists?: string | null | undefined; meta?: { alias?: string | null | undefined; controlledBy?: string | null | undefined; disabled?: boolean | null | undefined; field?: string | null | undefined; formattedValue?: string | null | undefined; index?: string | null | undefined; key?: string | null | undefined; negate?: boolean | null | undefined; params?: string | null | undefined; type?: string | null | undefined; value?: string | null | undefined; } | null | undefined; match_all?: string | null | undefined; missing?: string | null | undefined; query?: string | null | undefined; range?: string | null | undefined; script?: string | null | undefined; }[] | null | undefined; indexNames?: string[] | null | undefined; kqlMode?: string | null | undefined; kqlQuery?: { filterQuery?: { kuery?: { kind?: string | null | undefined; expression?: string | null | undefined; } | null | undefined; serializedQuery?: string | null | undefined; } | null | undefined; } | null | undefined; title?: string | null | undefined; templateTimelineId?: string | null | undefined; templateTimelineVersion?: number | null | undefined; timelineType?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + " | null | undefined; dateRange?: { start?: string | number | null | undefined; end?: string | number | null | undefined; } | null | undefined; savedQueryId?: string | null | undefined; sort?: { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; } | { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; }[] | null | undefined; status?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + " | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { savedObjectId: string; version: string; } & { eventIdToNoteIds?: ({ timelineId: string | null; } & { eventId?: string | null | undefined; note?: string | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { noteId: string; version: string; } & { timelineVersion?: string | null | undefined; })[] | undefined; noteIds?: string[] | undefined; notes?: ({ timelineId: string | null; } & { eventId?: string | null | undefined; note?: string | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { noteId: string; version: string; } & { timelineVersion?: string | null | undefined; })[] | undefined; pinnedEventIds?: string[] | undefined; pinnedEventsSaveObject?: ({ pinnedEventId: string; version: string; } & { timelineId: string; eventId: string; } & { created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { timelineVersion?: string | null | undefined; })[] | undefined; })[]; totalCount: number; } & { defaultTimelineCount: number; templateTimelineCount: number; elasticTemplateTimelineCount: number; customTemplateTimelineCount: number; favoriteCount: number; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 586 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.BeatFields", + "type": "Type", + "tags": [], + "label": "BeatFields", + "description": [], + "signature": [ + "{ [x: string]: FieldInfo; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 51 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.BeatFieldsFactoryQueryType", + "type": "Type", + "tags": [], + "label": "BeatFieldsFactoryQueryType", + "description": [], + "signature": [ + "\"beatFields\"" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 16 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.BrowserFields", + "type": "Type", + "tags": [], + "label": "BrowserFields", + "description": [], + "signature": [ + "{ readonly [x: string]: Partial<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.BrowserField", + "text": "BrowserField" + }, + ">; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 82 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.CellValueElementProps", + "type": "Type", + "tags": [], + "label": "CellValueElementProps", + "description": [ + "The following props are provided to the function called by `renderCellValue`" + ], + "signature": [ + "EuiDataGridCellValueElementProps", + " & { data: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineNonEcsData", + "text": "TimelineNonEcsData" + }, + "[]; eventId: string; header: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ColumnHeaderOptions", + "text": "ColumnHeaderOptions" + }, + "; linkValues: string[] | undefined; timelineId: string; setFlyoutAlert?: ((data: any) => void) | undefined; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/cells/index.ts", + "lineNumber": 13 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ColumnHeaderOptions", + "type": "Type", + "tags": [], + "label": "ColumnHeaderOptions", + "description": [ + "The specification of a column header" + ], + "signature": [ + "Pick<", + "EuiDataGridColumn", + ", \"id\" | \"display\" | \"displayAsText\" | \"initialWidth\"> & { aggregatable?: boolean | undefined; category?: string | undefined; columnHeaderType: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ColumnHeaderType", + "text": "ColumnHeaderType" + }, + "; description?: string | undefined; example?: string | undefined; format?: string | undefined; linkField?: string | undefined; placeholder?: string | undefined; subType?: ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataIndexPatternsPluginApi", + "section": "def-common.IFieldSubType", + "text": "IFieldSubType" + }, + " | undefined; type?: string | undefined; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.ts", + "lineNumber": 19 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ColumnHeaderType", + "type": "Type", + "tags": [], + "label": "ColumnHeaderType", + "description": [], + "signature": [ + "\"not-filtered\" | \"text-filter\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.ts", + "lineNumber": 13 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ColumnId", + "type": "Type", + "tags": [], + "label": "ColumnId", + "description": [ + "Uniquely identifies a column" + ], + "signature": [ + "string" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.ts", + "lineNumber": 16 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ControlColumnProps", + "type": "Type", + "tags": [], + "label": "ControlColumnProps", + "description": [], + "signature": [ + "Pick<", + "EuiDataGridControlColumn", + ", never> & Partial" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 88 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DataProvidersAnd", + "type": "Type", + "tags": [], + "label": "DataProvidersAnd", + "description": [], + "signature": [ + "{ type?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + " | undefined; enabled: boolean; id: string; name: string; excluded: boolean; kqlQuery: string; queryMatch: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.QueryMatch", + "text": "QueryMatch" + }, + "; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 65 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DocValueFields", + "type": "Type", + "tags": [], + "label": "DocValueFields", + "description": [], + "signature": [ + "SearchDocValueField" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 55 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EMPTY_DOCVALUE_FIELD", + "type": "Array", + "tags": [], + "label": "EMPTY_DOCVALUE_FIELD", + "description": [], + "signature": [ + "SearchDocValueField", + "[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 85 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EXISTS_OPERATOR", + "type": "string", + "tags": [], + "label": "EXISTS_OPERATOR", + "description": [ + "The `exists` operator in a KQL query" + ], + "signature": [ + "\":*\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 14 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ExportedEventNotes", + "type": "Type", + "tags": [], + "label": "ExportedEventNotes", + "description": [], + "signature": [ + "NoteSavedObject", + "[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 412 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ExportedGlobalNotes", + "type": "Type", + "tags": [], + "label": "ExportedGlobalNotes", + "description": [ + "\nImport/export timelines" + ], + "signature": [ + "NoteSavedObject", + "[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 411 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ExportedTimelines", + "type": "Type", + "tags": [], + "label": "ExportedTimelines", + "description": [], + "signature": [ + "{ columns?: { aggregatable?: boolean | null | undefined; category?: string | null | undefined; columnHeaderType?: string | null | undefined; description?: string | null | undefined; example?: string | null | undefined; indexes?: string[] | null | undefined; id?: string | null | undefined; name?: string | null | undefined; placeholder?: string | null | undefined; searchable?: boolean | null | undefined; type?: string | null | undefined; }[] | null | undefined; dataProviders?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; and?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; }[] | null | undefined; type?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + " | null | undefined; }[] | null | undefined; description?: string | null | undefined; eqlOptions?: { eventCategoryField?: string | null | undefined; query?: string | null | undefined; tiebreakerField?: string | null | undefined; timestampField?: string | null | undefined; size?: string | number | null | undefined; } | null | undefined; eventType?: string | null | undefined; excludedRowRendererIds?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + "[] | null | undefined; favorite?: { keySearch?: string | null | undefined; favoriteDate?: number | null | undefined; fullName?: string | null | undefined; userName?: string | null | undefined; }[] | null | undefined; filters?: { exists?: string | null | undefined; meta?: { alias?: string | null | undefined; controlledBy?: string | null | undefined; disabled?: boolean | null | undefined; field?: string | null | undefined; formattedValue?: string | null | undefined; index?: string | null | undefined; key?: string | null | undefined; negate?: boolean | null | undefined; params?: string | null | undefined; type?: string | null | undefined; value?: string | null | undefined; } | null | undefined; match_all?: string | null | undefined; missing?: string | null | undefined; query?: string | null | undefined; range?: string | null | undefined; script?: string | null | undefined; }[] | null | undefined; indexNames?: string[] | null | undefined; kqlMode?: string | null | undefined; kqlQuery?: { filterQuery?: { kuery?: { kind?: string | null | undefined; expression?: string | null | undefined; } | null | undefined; serializedQuery?: string | null | undefined; } | null | undefined; } | null | undefined; title?: string | null | undefined; templateTimelineId?: string | null | undefined; templateTimelineVersion?: number | null | undefined; timelineType?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + " | null | undefined; dateRange?: { start?: string | number | null | undefined; end?: string | number | null | undefined; } | null | undefined; savedQueryId?: string | null | undefined; sort?: { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; } | { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; }[] | null | undefined; status?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + " | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { savedObjectId: string; version: string; } & { eventIdToNoteIds?: ({ timelineId: string | null; } & { eventId?: string | null | undefined; note?: string | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { noteId: string; version: string; } & { timelineVersion?: string | null | undefined; })[] | undefined; noteIds?: string[] | undefined; notes?: ({ timelineId: string | null; } & { eventId?: string | null | undefined; note?: string | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { noteId: string; version: string; } & { timelineVersion?: string | null | undefined; })[] | undefined; pinnedEventIds?: string[] | undefined; pinnedEventsSaveObject?: ({ pinnedEventId: string; version: string; } & { timelineId: string; eventId: string; } & { created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { timelineVersion?: string | null | undefined; })[] | undefined; } & ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.ExportedNotes", + "text": "ExportedNotes" + }, + " & { pinnedEventIds: string[]; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 419 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FactoryQueryTypes", + "type": "Type", + "tags": [], + "label": "FactoryQueryTypes", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsQueries", + "text": "HostsQueries" + }, + " | ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsKpiQueries", + "text": "HostsKpiQueries" + }, + " | ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkQueries", + "text": "NetworkQueries" + }, + " | ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkKpiQueries", + "text": "NetworkKpiQueries" + }, + " | ", + "CtiQueries", + " | \"matrixHistogram\" | \"matrixHistogramEntities\"" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/index.ts", + "lineNumber": 79 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FavoriteTimelineResult", + "type": "Type", + "tags": [], + "label": "FavoriteTimelineResult", + "description": [], + "signature": [ + "{ fullName?: string | null | undefined; userName?: string | null | undefined; favoriteDate?: number | null | undefined; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 542 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.FieldsEqlOptions", + "type": "Type", + "tags": [], + "label": "FieldsEqlOptions", + "description": [], + "signature": [ + "\"query\" | \"size\" | \"eventCategoryField\" | \"tiebreakerField\" | \"timestampField\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 46 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.GenericActionRowCellRenderProps", + "type": "Type", + "tags": [], + "label": "GenericActionRowCellRenderProps", + "description": [], + "signature": [ + "{ columnId: string; rowIndex: number; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 57 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.GetTimelinesArgs", + "type": "Type", + "tags": [], + "label": "GetTimelinesArgs", + "description": [], + "signature": [ + "{ onlyUserFavorite?: boolean | null | undefined; pageInfo?: { pageIndex: number; pageSize: number; } | null | undefined; search?: string | null | undefined; sort?: { sortField: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.SortFieldTimeline", + "text": "SortFieldTimeline" + }, + "; sortOrder: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Direction", + "text": "Direction" + }, + "; } | null | undefined; status?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + " | null | undefined; timelineType?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + " | null | undefined; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 566 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HeaderCellRender", + "type": "Type", + "tags": [], + "label": "HeaderCellRender", + "description": [], + "signature": [ + "React.ComponentClass<{}, any> | React.FunctionComponent<{}> | React.ComponentClass<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.HeaderActionProps", + "text": "HeaderActionProps" + }, + ", any> | React.FunctionComponent<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.HeaderActionProps", + "text": "HeaderActionProps" + }, + ">" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 62 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostHits", + "type": "Type", + "tags": [], + "label": "HostHits", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.Hits", + "text": "Hits" + }, + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/common/index.ts", + "lineNumber": 121 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostOverviewRequestOptions", + "type": "Type", + "tags": [], + "label": "HostOverviewRequestOptions", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestBasicOptions", + "text": "RequestBasicOptions" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/overview/index.ts", + "lineNumber": 12 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiAuthenticationsRequestOptions", + "type": "Type", + "tags": [], + "label": "HostsKpiAuthenticationsRequestOptions", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestBasicOptions", + "text": "RequestBasicOptions" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/authentications/index.ts", + "lineNumber": 19 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiHostsRequestOptions", + "type": "Type", + "tags": [], + "label": "HostsKpiHostsRequestOptions", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestBasicOptions", + "text": "RequestBasicOptions" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/hosts/index.ts", + "lineNumber": 13 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiStrategyResponse", + "type": "Type", + "tags": [], + "label": "HostsKpiStrategyResponse", + "description": [], + "signature": [ + "Pick<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsKpiAuthenticationsStrategyResponse", + "text": "HostsKpiAuthenticationsStrategyResponse" + }, + ", \"id\" | \"inspect\" | \"total\" | \"authenticationsSuccess\" | \"authenticationsSuccessHistogram\" | \"authenticationsFailure\" | \"authenticationsFailureHistogram\" | \"loaded\" | \"isRunning\" | \"isPartial\" | \"isRestored\"> | Pick<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsKpiHostsStrategyResponse", + "text": "HostsKpiHostsStrategyResponse" + }, + ", \"id\" | \"inspect\" | \"hosts\" | \"total\" | \"loaded\" | \"isRunning\" | \"isPartial\" | \"isRestored\" | \"hostsHistogram\"> | Pick<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsKpiUniqueIpsStrategyResponse", + "text": "HostsKpiUniqueIpsStrategyResponse" + }, + ", \"id\" | \"inspect\" | \"total\" | \"loaded\" | \"isRunning\" | \"isPartial\" | \"isRestored\" | \"uniqueSourceIps\" | \"uniqueSourceIpsHistogram\" | \"uniqueDestinationIps\" | \"uniqueDestinationIpsHistogram\">" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/index.ts", + "lineNumber": 26 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.HostsKpiUniqueIpsRequestOptions", + "type": "Type", + "tags": [], + "label": "HostsKpiUniqueIpsRequestOptions", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestBasicOptions", + "text": "RequestBasicOptions" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/kpi/unique_ips/index.ts", + "lineNumber": 13 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ImportTimelineResultSchema", + "type": "Type", + "tags": [], + "label": "ImportTimelineResultSchema", + "description": [], + "signature": [ + "{ success: boolean; success_count: number; timelines_installed: number; timelines_updated: number; errors: ({ id?: string | undefined; rule_id?: string | undefined; } & { error: { status_code: number; message: string; }; })[]; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 449 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.IS_OPERATOR", + "type": "string", + "tags": [], + "label": "IS_OPERATOR", + "description": [ + "Represents the Timeline data providers\nThe `is` operator in a KQL query" + ], + "signature": [ + "\":\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 11 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.KueryFilterQueryKind", + "type": "Type", + "tags": [], + "label": "KueryFilterQueryKind", + "description": [], + "signature": [ + "\"eql\" | \"lucene\" | \"kuery\"" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 21 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixHistogramDataConfig", + "type": "Type", + "tags": [], + "label": "MatrixHistogramDataConfig", + "description": [], + "signature": [ + "{ authentications: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixHistogramSchema", + "text": "MatrixHistogramSchema" + }, + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixHistogramType", + "text": "MatrixHistogramType" + }, + ">; authenticationsEntities: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixHistogramSchema", + "text": "MatrixHistogramSchema" + }, + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixHistogramType", + "text": "MatrixHistogramType" + }, + ">; anomalies: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixHistogramSchema", + "text": "MatrixHistogramSchema" + }, + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixHistogramType", + "text": "MatrixHistogramType" + }, + ">; events: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixHistogramSchema", + "text": "MatrixHistogramSchema" + }, + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixHistogramType", + "text": "MatrixHistogramType" + }, + ">; alerts: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixHistogramSchema", + "text": "MatrixHistogramSchema" + }, + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixHistogramType", + "text": "MatrixHistogramType" + }, + ">; dns: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixHistogramSchema", + "text": "MatrixHistogramSchema" + }, + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixHistogramType", + "text": "MatrixHistogramType" + }, + ">; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/index.ts", + "lineNumber": 104 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixHistogramHit", + "type": "Type", + "tags": [], + "label": "MatrixHistogramHit", + "description": [], + "signature": [ + "T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixHistogramType", + "text": "MatrixHistogramType" + }, + ".alerts ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.EventHit", + "text": "EventHit" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixHistogramType", + "text": "MatrixHistogramType" + }, + ".anomalies ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.AnomalyHit", + "text": "AnomalyHit" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixHistogramType", + "text": "MatrixHistogramType" + }, + ".dns ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.EventHit", + "text": "EventHit" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixHistogramType", + "text": "MatrixHistogramType" + }, + ".authentications ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.AuthenticationHit", + "text": "AuthenticationHit" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixHistogramType", + "text": "MatrixHistogramType" + }, + ".events ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.EventHit", + "text": "EventHit" + }, + " : never" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/index.ts", + "lineNumber": 92 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixHistogramParseData", + "type": "Type", + "tags": [], + "label": "MatrixHistogramParseData", + "description": [], + "signature": [ + "T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixHistogramType", + "text": "MatrixHistogramType" + }, + ".alerts ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.AlertsGroupData", + "text": "AlertsGroupData" + }, + "[] : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixHistogramType", + "text": "MatrixHistogramType" + }, + ".anomalies ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.AnomaliesActionGroupData", + "text": "AnomaliesActionGroupData" + }, + "[] : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixHistogramType", + "text": "MatrixHistogramType" + }, + ".dns ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DnsHistogramGroupData", + "text": "DnsHistogramGroupData" + }, + "[] : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixHistogramType", + "text": "MatrixHistogramType" + }, + ".authentications ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.AuthenticationsActionGroupData", + "text": "AuthenticationsActionGroupData" + }, + "[] : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixHistogramType", + "text": "MatrixHistogramType" + }, + ".events ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.EventsActionGroupData", + "text": "EventsActionGroupData" + }, + "[] : never" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/index.ts", + "lineNumber": 80 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixHistogramQuery", + "type": "string", + "tags": [], + "label": "MatrixHistogramQuery", + "description": [], + "signature": [ + "\"matrixHistogram\"" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/index.ts", + "lineNumber": 25 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.MatrixHistogramQueryEntities", + "type": "string", + "tags": [], + "label": "MatrixHistogramQueryEntities", + "description": [], + "signature": [ + "\"matrixHistogramEntities\"" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/matrix_histogram/index.ts", + "lineNumber": 26 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.Maybe", + "type": "Type", + "tags": [], + "label": "Maybe", + "description": [], + "signature": [ + "T | null" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/common/index.ts", + "lineNumber": 19 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkDetailsHostHit", + "type": "Type", + "tags": [], + "label": "NetworkDetailsHostHit", + "description": [], + "signature": [ + "ResultHit" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/details/index.ts", + "lineNumber": 86 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkKpiDnsRequestOptions", + "type": "Type", + "tags": [], + "label": "NetworkKpiDnsRequestOptions", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestBasicOptions", + "text": "RequestBasicOptions" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/kpi/dns/index.ts", + "lineNumber": 12 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkKpiNetworkEventsRequestOptions", + "type": "Type", + "tags": [], + "label": "NetworkKpiNetworkEventsRequestOptions", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestBasicOptions", + "text": "RequestBasicOptions" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/kpi/network_events/index.ts", + "lineNumber": 12 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkKpiStrategyResponse", + "type": "Type", + "tags": [], + "label": "NetworkKpiStrategyResponse", + "description": [], + "signature": [ + "Pick<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkKpiDnsStrategyResponse", + "text": "NetworkKpiDnsStrategyResponse" + }, + ", \"id\" | \"inspect\" | \"total\" | \"loaded\" | \"isRunning\" | \"isPartial\" | \"isRestored\" | \"dnsQueries\"> | Pick<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkKpiNetworkEventsStrategyResponse", + "text": "NetworkKpiNetworkEventsStrategyResponse" + }, + ", \"id\" | \"inspect\" | \"total\" | \"loaded\" | \"isRunning\" | \"isPartial\" | \"isRestored\" | \"networkEvents\"> | Pick<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkKpiTlsHandshakesStrategyResponse", + "text": "NetworkKpiTlsHandshakesStrategyResponse" + }, + ", \"id\" | \"inspect\" | \"total\" | \"loaded\" | \"isRunning\" | \"isPartial\" | \"isRestored\" | \"tlsHandshakes\"> | Pick<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkKpiUniqueFlowsStrategyResponse", + "text": "NetworkKpiUniqueFlowsStrategyResponse" + }, + ", \"id\" | \"inspect\" | \"total\" | \"loaded\" | \"isRunning\" | \"isPartial\" | \"isRestored\" | \"uniqueFlowId\"> | Pick<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkKpiUniquePrivateIpsStrategyResponse", + "text": "NetworkKpiUniquePrivateIpsStrategyResponse" + }, + ", \"id\" | \"inspect\" | \"total\" | \"loaded\" | \"isRunning\" | \"isPartial\" | \"isRestored\" | \"uniqueSourcePrivateIps\" | \"uniqueSourcePrivateIpsHistogram\" | \"uniqueDestinationPrivateIps\" | \"uniqueDestinationPrivateIpsHistogram\">" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/kpi/index.ts", + "lineNumber": 32 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkKpiTlsHandshakesRequestOptions", + "type": "Type", + "tags": [], + "label": "NetworkKpiTlsHandshakesRequestOptions", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestBasicOptions", + "text": "RequestBasicOptions" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/kpi/tls_handshakes/index.ts", + "lineNumber": 12 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkKpiUniqueFlowsRequestOptions", + "type": "Type", + "tags": [], + "label": "NetworkKpiUniqueFlowsRequestOptions", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestBasicOptions", + "text": "RequestBasicOptions" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/kpi/unique_flows/index.ts", + "lineNumber": 12 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkKpiUniquePrivateIpsRequestOptions", + "type": "Type", + "tags": [], + "label": "NetworkKpiUniquePrivateIpsRequestOptions", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestBasicOptions", + "text": "RequestBasicOptions" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/kpi/unique_private_ips/index.ts", + "lineNumber": 17 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkOverviewRequestOptions", + "type": "Type", + "tags": [], + "label": "NetworkOverviewRequestOptions", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestBasicOptions", + "text": "RequestBasicOptions" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/overview/index.ts", + "lineNumber": 12 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NetworkTlsFields", + "type": "string", + "tags": [], + "label": "NetworkTlsFields", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/tls/index.ts", + "lineNumber": 42 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.NotesAndPinnedEventsByTimelineId", + "type": "Type", + "tags": [], + "label": "NotesAndPinnedEventsByTimelineId", + "description": [], + "signature": [ + "{ [x: string]: { notes: ", + "NoteSavedObject", + "[]; pinnedEvents: ", + "PinnedEventSavedObject", + "[]; }; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 434 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.OnChangePage", + "type": "Type", + "tags": [], + "label": "OnChangePage", + "description": [ + "Invoked when a user clicks to load more item" + ], + "signature": [ + "(nextPage: number) => void" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 76 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.OnColumnRemoved", + "type": "Type", + "tags": [], + "label": "OnColumnRemoved", + "description": [], + "signature": [ + "(columnId: string) => void" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 71 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.OnColumnResized", + "type": "Type", + "tags": [], + "label": "OnColumnResized", + "description": [], + "signature": [ + "({ columnId, delta }: { columnId: string; delta: number; }) => void" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 73 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.OnColumnSorted", + "type": "Type", + "tags": [], + "label": "OnColumnSorted", + "description": [ + "Invoked when a column is sorted" + ], + "signature": [ + "(sorted: { columnId: string; sortDirection: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.SortDirection", + "text": "SortDirection" + }, + "; }) => void" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 65 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.OnColumnsSorted", + "type": "Type", + "tags": [], + "label": "OnColumnsSorted", + "description": [], + "signature": [ + "(sorted: { columnId: string; sortDirection: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.SortDirection", + "text": "SortDirection" + }, + "; }[]) => void" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 67 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.OnPinEvent", + "type": "Type", + "tags": [], + "label": "OnPinEvent", + "description": [ + "Invoked when a user pins an event" + ], + "signature": [ + "(eventId: string) => void" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 94 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.OnRowSelected", + "type": "Type", + "tags": [], + "label": "OnRowSelected", + "description": [ + "Invoked when a user checks/un-checks a row" + ], + "signature": [ + "({ eventIds, isSelected, }: { eventIds: string[]; isSelected: boolean; }) => void" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 79 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.OnSelectAll", + "type": "Type", + "tags": [], + "label": "OnSelectAll", + "description": [ + "Invoked when a user checks/un-checks the select all checkbox" + ], + "signature": [ + "({ isSelected }: { isSelected: boolean; }) => void" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 88 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.OnUnPinEvent", + "type": "Type", + "tags": [], + "label": "OnUnPinEvent", + "description": [ + "Invoked when a user unpins an event" + ], + "signature": [ + "(eventId: string) => void" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 97 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.OnUpdateColumns", + "type": "Type", + "tags": [], + "label": "OnUpdateColumns", + "description": [ + "Invoked when columns are updated" + ], + "signature": [ + "(columns: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ColumnHeaderOptions", + "text": "ColumnHeaderOptions" + }, + "[]) => void" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 91 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ProcessHits", + "type": "Type", + "tags": [], + "label": "ProcessHits", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.Hits", + "text": "Hits" + }, + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TotalHit", + "text": "TotalHit" + }, + ", ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsUncommonProcessHit", + "text": "HostsUncommonProcessHit" + }, + ">" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/uncommon_processes/index.ts", + "lineNumber": 65 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.QueryOperator", + "type": "Type", + "tags": [], + "label": "QueryOperator", + "description": [ + "The operator applied to a field" + ], + "signature": [ + "\":\" | \":*\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 17 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ResponseFavoriteTimeline", + "type": "Type", + "tags": [], + "label": "ResponseFavoriteTimeline", + "description": [], + "signature": [ + "{ savedObjectId?: string | undefined; version?: string | undefined; code?: number | null | undefined; message?: string | null | undefined; templateTimelineId?: string | null | undefined; templateTimelineVersion?: number | null | undefined; timelineType?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + " | null | undefined; favorite?: { fullName?: string | null | undefined; userName?: string | null | undefined; favoriteDate?: number | null | undefined; }[] | null | undefined; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 555 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ResponseTimelines", + "type": "Type", + "tags": [], + "label": "ResponseTimelines", + "description": [], + "signature": [ + "{ timeline: ({ columns?: { aggregatable?: boolean | null | undefined; category?: string | null | undefined; columnHeaderType?: string | null | undefined; description?: string | null | undefined; example?: string | null | undefined; indexes?: string[] | null | undefined; id?: string | null | undefined; name?: string | null | undefined; placeholder?: string | null | undefined; searchable?: boolean | null | undefined; type?: string | null | undefined; }[] | null | undefined; dataProviders?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; and?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; }[] | null | undefined; type?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + " | null | undefined; }[] | null | undefined; description?: string | null | undefined; eqlOptions?: { eventCategoryField?: string | null | undefined; query?: string | null | undefined; tiebreakerField?: string | null | undefined; timestampField?: string | null | undefined; size?: string | number | null | undefined; } | null | undefined; eventType?: string | null | undefined; excludedRowRendererIds?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + "[] | null | undefined; favorite?: { keySearch?: string | null | undefined; favoriteDate?: number | null | undefined; fullName?: string | null | undefined; userName?: string | null | undefined; }[] | null | undefined; filters?: { exists?: string | null | undefined; meta?: { alias?: string | null | undefined; controlledBy?: string | null | undefined; disabled?: boolean | null | undefined; field?: string | null | undefined; formattedValue?: string | null | undefined; index?: string | null | undefined; key?: string | null | undefined; negate?: boolean | null | undefined; params?: string | null | undefined; type?: string | null | undefined; value?: string | null | undefined; } | null | undefined; match_all?: string | null | undefined; missing?: string | null | undefined; query?: string | null | undefined; range?: string | null | undefined; script?: string | null | undefined; }[] | null | undefined; indexNames?: string[] | null | undefined; kqlMode?: string | null | undefined; kqlQuery?: { filterQuery?: { kuery?: { kind?: string | null | undefined; expression?: string | null | undefined; } | null | undefined; serializedQuery?: string | null | undefined; } | null | undefined; } | null | undefined; title?: string | null | undefined; templateTimelineId?: string | null | undefined; templateTimelineVersion?: number | null | undefined; timelineType?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + " | null | undefined; dateRange?: { start?: string | number | null | undefined; end?: string | number | null | undefined; } | null | undefined; savedQueryId?: string | null | undefined; sort?: { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; } | { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; }[] | null | undefined; status?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + " | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { savedObjectId: string; version: string; } & { eventIdToNoteIds?: ({ timelineId: string | null; } & { eventId?: string | null | undefined; note?: string | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { noteId: string; version: string; } & { timelineVersion?: string | null | undefined; })[] | undefined; noteIds?: string[] | undefined; notes?: ({ timelineId: string | null; } & { eventId?: string | null | undefined; note?: string | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { noteId: string; version: string; } & { timelineVersion?: string | null | undefined; })[] | undefined; pinnedEventIds?: string[] | undefined; pinnedEventsSaveObject?: ({ pinnedEventId: string; version: string; } & { timelineId: string; eventId: string; } & { created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { timelineVersion?: string | null | undefined; })[] | undefined; })[]; totalCount: number; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 573 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.RowCellRender", + "type": "Type", + "tags": [], + "label": "RowCellRender", + "description": [], + "signature": [ + "((props: Pick<", + "EuiDataGridCellValueElementProps", + ", \"columnId\" | \"rowIndex\">) => React.ReactElement React.ReactElement React.Component)> | null) | (new (props: any) => React.Component)> | null) | (new (props: Pick<", + "EuiDataGridCellValueElementProps", + ", \"columnId\" | \"rowIndex\">) => React.Component, any, any>) | ((props: Pick<", + "EuiDataGridCellValueElementProps", + ", \"columnId\" | \"rowIndex\">) => JSX.Element) | ((props: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ActionProps", + "text": "ActionProps" + }, + ") => React.ReactElement React.ReactElement React.Component)> | null) | (new (props: any) => React.Component)> | null) | (new (props: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ActionProps", + "text": "ActionProps" + }, + ") => React.Component<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ActionProps", + "text": "ActionProps" + }, + ", any, any>) | ((props: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ActionProps", + "text": "ActionProps" + }, + ") => JSX.Element)" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 63 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.SavedTimeline", + "type": "Type", + "tags": [], + "label": "SavedTimeline", + "description": [], + "signature": [ + "{ columns?: { aggregatable?: boolean | null | undefined; category?: string | null | undefined; columnHeaderType?: string | null | undefined; description?: string | null | undefined; example?: string | null | undefined; indexes?: string[] | null | undefined; id?: string | null | undefined; name?: string | null | undefined; placeholder?: string | null | undefined; searchable?: boolean | null | undefined; type?: string | null | undefined; }[] | null | undefined; dataProviders?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; and?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; }[] | null | undefined; type?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + " | null | undefined; }[] | null | undefined; description?: string | null | undefined; eqlOptions?: { eventCategoryField?: string | null | undefined; query?: string | null | undefined; tiebreakerField?: string | null | undefined; timestampField?: string | null | undefined; size?: string | number | null | undefined; } | null | undefined; eventType?: string | null | undefined; excludedRowRendererIds?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + "[] | null | undefined; favorite?: { keySearch?: string | null | undefined; favoriteDate?: number | null | undefined; fullName?: string | null | undefined; userName?: string | null | undefined; }[] | null | undefined; filters?: { exists?: string | null | undefined; meta?: { alias?: string | null | undefined; controlledBy?: string | null | undefined; disabled?: boolean | null | undefined; field?: string | null | undefined; formattedValue?: string | null | undefined; index?: string | null | undefined; key?: string | null | undefined; negate?: boolean | null | undefined; params?: string | null | undefined; type?: string | null | undefined; value?: string | null | undefined; } | null | undefined; match_all?: string | null | undefined; missing?: string | null | undefined; query?: string | null | undefined; range?: string | null | undefined; script?: string | null | undefined; }[] | null | undefined; indexNames?: string[] | null | undefined; kqlMode?: string | null | undefined; kqlQuery?: { filterQuery?: { kuery?: { kind?: string | null | undefined; expression?: string | null | undefined; } | null | undefined; serializedQuery?: string | null | undefined; } | null | undefined; } | null | undefined; title?: string | null | undefined; templateTimelineId?: string | null | undefined; templateTimelineVersion?: number | null | undefined; timelineType?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + " | null | undefined; dateRange?: { start?: string | number | null | undefined; end?: string | number | null | undefined; } | null | undefined; savedQueryId?: string | null | undefined; sort?: { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; } | { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; }[] | null | undefined; status?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + " | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 297 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.SavedTimelineNote", + "type": "Type", + "tags": [], + "label": "SavedTimelineNote", + "description": [], + "signature": [ + "{ columns?: { aggregatable?: boolean | null | undefined; category?: string | null | undefined; columnHeaderType?: string | null | undefined; description?: string | null | undefined; example?: string | null | undefined; indexes?: string[] | null | undefined; id?: string | null | undefined; name?: string | null | undefined; placeholder?: string | null | undefined; searchable?: boolean | null | undefined; type?: string | null | undefined; }[] | null | undefined; dataProviders?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; and?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; }[] | null | undefined; type?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + " | null | undefined; }[] | null | undefined; description?: string | null | undefined; eqlOptions?: { eventCategoryField?: string | null | undefined; query?: string | null | undefined; tiebreakerField?: string | null | undefined; timestampField?: string | null | undefined; size?: string | number | null | undefined; } | null | undefined; eventType?: string | null | undefined; excludedRowRendererIds?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + "[] | null | undefined; favorite?: { keySearch?: string | null | undefined; favoriteDate?: number | null | undefined; fullName?: string | null | undefined; userName?: string | null | undefined; }[] | null | undefined; filters?: { exists?: string | null | undefined; meta?: { alias?: string | null | undefined; controlledBy?: string | null | undefined; disabled?: boolean | null | undefined; field?: string | null | undefined; formattedValue?: string | null | undefined; index?: string | null | undefined; key?: string | null | undefined; negate?: boolean | null | undefined; params?: string | null | undefined; type?: string | null | undefined; value?: string | null | undefined; } | null | undefined; match_all?: string | null | undefined; missing?: string | null | undefined; query?: string | null | undefined; range?: string | null | undefined; script?: string | null | undefined; }[] | null | undefined; indexNames?: string[] | null | undefined; kqlMode?: string | null | undefined; kqlQuery?: { filterQuery?: { kuery?: { kind?: string | null | undefined; expression?: string | null | undefined; } | null | undefined; serializedQuery?: string | null | undefined; } | null | undefined; } | null | undefined; title?: string | null | undefined; templateTimelineId?: string | null | undefined; templateTimelineVersion?: number | null | undefined; timelineType?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + " | null | undefined; dateRange?: { start?: string | number | null | undefined; end?: string | number | null | undefined; } | null | undefined; savedQueryId?: string | null | undefined; sort?: { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; } | { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; }[] | null | undefined; status?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + " | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 299 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.SearchHit", + "type": "Type", + "tags": [], + "label": "SearchHit", + "description": [], + "signature": [ + "SearchHit", + "" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/common/index.ts", + "lineNumber": 21 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.SingleTimelineResponse", + "type": "Type", + "tags": [], + "label": "SingleTimelineResponse", + "description": [], + "signature": [ + "{ data: { getOneTimeline: { columns?: { aggregatable?: boolean | null | undefined; category?: string | null | undefined; columnHeaderType?: string | null | undefined; description?: string | null | undefined; example?: string | null | undefined; indexes?: string[] | null | undefined; id?: string | null | undefined; name?: string | null | undefined; placeholder?: string | null | undefined; searchable?: boolean | null | undefined; type?: string | null | undefined; }[] | null | undefined; dataProviders?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; and?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; }[] | null | undefined; type?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + " | null | undefined; }[] | null | undefined; description?: string | null | undefined; eqlOptions?: { eventCategoryField?: string | null | undefined; query?: string | null | undefined; tiebreakerField?: string | null | undefined; timestampField?: string | null | undefined; size?: string | number | null | undefined; } | null | undefined; eventType?: string | null | undefined; excludedRowRendererIds?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + "[] | null | undefined; favorite?: { keySearch?: string | null | undefined; favoriteDate?: number | null | undefined; fullName?: string | null | undefined; userName?: string | null | undefined; }[] | null | undefined; filters?: { exists?: string | null | undefined; meta?: { alias?: string | null | undefined; controlledBy?: string | null | undefined; disabled?: boolean | null | undefined; field?: string | null | undefined; formattedValue?: string | null | undefined; index?: string | null | undefined; key?: string | null | undefined; negate?: boolean | null | undefined; params?: string | null | undefined; type?: string | null | undefined; value?: string | null | undefined; } | null | undefined; match_all?: string | null | undefined; missing?: string | null | undefined; query?: string | null | undefined; range?: string | null | undefined; script?: string | null | undefined; }[] | null | undefined; indexNames?: string[] | null | undefined; kqlMode?: string | null | undefined; kqlQuery?: { filterQuery?: { kuery?: { kind?: string | null | undefined; expression?: string | null | undefined; } | null | undefined; serializedQuery?: string | null | undefined; } | null | undefined; } | null | undefined; title?: string | null | undefined; templateTimelineId?: string | null | undefined; templateTimelineVersion?: number | null | undefined; timelineType?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + " | null | undefined; dateRange?: { start?: string | number | null | undefined; end?: string | number | null | undefined; } | null | undefined; savedQueryId?: string | null | undefined; sort?: { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; } | { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; }[] | null | undefined; status?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + " | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { savedObjectId: string; version: string; } & { eventIdToNoteIds?: ({ timelineId: string | null; } & { eventId?: string | null | undefined; note?: string | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { noteId: string; version: string; } & { timelineVersion?: string | null | undefined; })[] | undefined; noteIds?: string[] | undefined; notes?: ({ timelineId: string | null; } & { eventId?: string | null | undefined; note?: string | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { noteId: string; version: string; } & { timelineVersion?: string | null | undefined; })[] | undefined; pinnedEventIds?: string[] | undefined; pinnedEventsSaveObject?: ({ pinnedEventId: string; version: string; } & { timelineId: string; eventId: string; } & { created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { timelineVersion?: string | null | undefined; })[] | undefined; }; }; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 369 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.Sort", + "type": "Type", + "tags": [], + "label": "Sort", + "description": [], + "signature": [ + "{ columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; } | { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; }[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 182 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.SortDirection", + "type": "Type", + "tags": [], + "label": "SortDirection", + "description": [], + "signature": [ + "\"none\" | \"asc\" | \"desc\" | ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Direction", + "text": "Direction" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/store.ts", + "lineNumber": 33 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.StrategyRequestType", + "type": "Type", + "tags": [], + "label": "StrategyRequestType", + "description": [], + "signature": [ + "T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsQueries", + "text": "HostsQueries" + }, + ".hosts ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsRequestOptions", + "text": "HostsRequestOptions" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsQueries", + "text": "HostsQueries" + }, + ".details ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostDetailsRequestOptions", + "text": "HostDetailsRequestOptions" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsQueries", + "text": "HostsQueries" + }, + ".overview ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestBasicOptions", + "text": "RequestBasicOptions" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsQueries", + "text": "HostsQueries" + }, + ".authentications ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostAuthenticationsRequestOptions", + "text": "HostAuthenticationsRequestOptions" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsQueries", + "text": "HostsQueries" + }, + ".firstOrLastSeen ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostFirstLastSeenRequestOptions", + "text": "HostFirstLastSeenRequestOptions" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsQueries", + "text": "HostsQueries" + }, + ".uncommonProcesses ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsUncommonProcessesRequestOptions", + "text": "HostsUncommonProcessesRequestOptions" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsKpiQueries", + "text": "HostsKpiQueries" + }, + ".kpiAuthentications ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestBasicOptions", + "text": "RequestBasicOptions" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsKpiQueries", + "text": "HostsKpiQueries" + }, + ".kpiHosts ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestBasicOptions", + "text": "RequestBasicOptions" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsKpiQueries", + "text": "HostsKpiQueries" + }, + ".kpiUniqueIps ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestBasicOptions", + "text": "RequestBasicOptions" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkQueries", + "text": "NetworkQueries" + }, + ".details ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkDetailsRequestOptions", + "text": "NetworkDetailsRequestOptions" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkQueries", + "text": "NetworkQueries" + }, + ".dns ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkDnsRequestOptions", + "text": "NetworkDnsRequestOptions" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkQueries", + "text": "NetworkQueries" + }, + ".http ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkHttpRequestOptions", + "text": "NetworkHttpRequestOptions" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkQueries", + "text": "NetworkQueries" + }, + ".overview ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestBasicOptions", + "text": "RequestBasicOptions" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkQueries", + "text": "NetworkQueries" + }, + ".tls ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkTlsRequestOptions", + "text": "NetworkTlsRequestOptions" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkQueries", + "text": "NetworkQueries" + }, + ".topCountries ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkTopCountriesRequestOptions", + "text": "NetworkTopCountriesRequestOptions" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkQueries", + "text": "NetworkQueries" + }, + ".topNFlow ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkTopNFlowRequestOptions", + "text": "NetworkTopNFlowRequestOptions" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkQueries", + "text": "NetworkQueries" + }, + ".users ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkUsersRequestOptions", + "text": "NetworkUsersRequestOptions" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkKpiQueries", + "text": "NetworkKpiQueries" + }, + ".dns ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestBasicOptions", + "text": "RequestBasicOptions" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkKpiQueries", + "text": "NetworkKpiQueries" + }, + ".networkEvents ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestBasicOptions", + "text": "RequestBasicOptions" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkKpiQueries", + "text": "NetworkKpiQueries" + }, + ".tlsHandshakes ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestBasicOptions", + "text": "RequestBasicOptions" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkKpiQueries", + "text": "NetworkKpiQueries" + }, + ".uniqueFlows ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestBasicOptions", + "text": "RequestBasicOptions" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkKpiQueries", + "text": "NetworkKpiQueries" + }, + ".uniquePrivateIps ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RequestBasicOptions", + "text": "RequestBasicOptions" + }, + " : T extends \"matrixHistogram\" ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixHistogramRequestOptions", + "text": "MatrixHistogramRequestOptions" + }, + " : T extends ", + "CtiQueries", + " ? ", + "CtiEventEnrichmentRequestOptions", + " : never" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/index.ts", + "lineNumber": 158 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.StrategyResponseType", + "type": "Type", + "tags": [], + "label": "StrategyResponseType", + "description": [], + "signature": [ + "T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsQueries", + "text": "HostsQueries" + }, + ".hosts ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsStrategyResponse", + "text": "HostsStrategyResponse" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsQueries", + "text": "HostsQueries" + }, + ".details ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostDetailsStrategyResponse", + "text": "HostDetailsStrategyResponse" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsQueries", + "text": "HostsQueries" + }, + ".overview ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsOverviewStrategyResponse", + "text": "HostsOverviewStrategyResponse" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsQueries", + "text": "HostsQueries" + }, + ".authentications ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostAuthenticationsStrategyResponse", + "text": "HostAuthenticationsStrategyResponse" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsQueries", + "text": "HostsQueries" + }, + ".firstOrLastSeen ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostFirstLastSeenStrategyResponse", + "text": "HostFirstLastSeenStrategyResponse" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsQueries", + "text": "HostsQueries" + }, + ".uncommonProcesses ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsUncommonProcessesStrategyResponse", + "text": "HostsUncommonProcessesStrategyResponse" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsKpiQueries", + "text": "HostsKpiQueries" + }, + ".kpiAuthentications ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsKpiAuthenticationsStrategyResponse", + "text": "HostsKpiAuthenticationsStrategyResponse" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsKpiQueries", + "text": "HostsKpiQueries" + }, + ".kpiHosts ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsKpiHostsStrategyResponse", + "text": "HostsKpiHostsStrategyResponse" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsKpiQueries", + "text": "HostsKpiQueries" + }, + ".kpiUniqueIps ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.HostsKpiUniqueIpsStrategyResponse", + "text": "HostsKpiUniqueIpsStrategyResponse" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkQueries", + "text": "NetworkQueries" + }, + ".details ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkDetailsStrategyResponse", + "text": "NetworkDetailsStrategyResponse" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkQueries", + "text": "NetworkQueries" + }, + ".dns ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkDnsStrategyResponse", + "text": "NetworkDnsStrategyResponse" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkQueries", + "text": "NetworkQueries" + }, + ".http ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkHttpStrategyResponse", + "text": "NetworkHttpStrategyResponse" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkQueries", + "text": "NetworkQueries" + }, + ".overview ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkOverviewStrategyResponse", + "text": "NetworkOverviewStrategyResponse" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkQueries", + "text": "NetworkQueries" + }, + ".tls ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkTlsStrategyResponse", + "text": "NetworkTlsStrategyResponse" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkQueries", + "text": "NetworkQueries" + }, + ".topCountries ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkTopCountriesStrategyResponse", + "text": "NetworkTopCountriesStrategyResponse" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkQueries", + "text": "NetworkQueries" + }, + ".topNFlow ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkTopNFlowStrategyResponse", + "text": "NetworkTopNFlowStrategyResponse" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkQueries", + "text": "NetworkQueries" + }, + ".users ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkUsersStrategyResponse", + "text": "NetworkUsersStrategyResponse" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkKpiQueries", + "text": "NetworkKpiQueries" + }, + ".dns ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkKpiDnsStrategyResponse", + "text": "NetworkKpiDnsStrategyResponse" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkKpiQueries", + "text": "NetworkKpiQueries" + }, + ".networkEvents ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkKpiNetworkEventsStrategyResponse", + "text": "NetworkKpiNetworkEventsStrategyResponse" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkKpiQueries", + "text": "NetworkKpiQueries" + }, + ".tlsHandshakes ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkKpiTlsHandshakesStrategyResponse", + "text": "NetworkKpiTlsHandshakesStrategyResponse" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkKpiQueries", + "text": "NetworkKpiQueries" + }, + ".uniqueFlows ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkKpiUniqueFlowsStrategyResponse", + "text": "NetworkKpiUniqueFlowsStrategyResponse" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkKpiQueries", + "text": "NetworkKpiQueries" + }, + ".uniquePrivateIps ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.NetworkKpiUniquePrivateIpsStrategyResponse", + "text": "NetworkKpiUniquePrivateIpsStrategyResponse" + }, + " : T extends \"matrixHistogram\" ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.MatrixHistogramStrategyResponse", + "text": "MatrixHistogramStrategyResponse" + }, + " : T extends ", + "CtiQueries", + " ? ", + "CtiEventEnrichmentStrategyResponse", + " : never" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/index.ts", + "lineNumber": 108 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.StringOrNumber", + "type": "Type", + "tags": [], + "label": "StringOrNumber", + "description": [], + "signature": [ + "string | number" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/common/index.ts", + "lineNumber": 75 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TemplateTimelineTypeLiteral", + "type": "Type", + "tags": [], + "label": "TemplateTimelineTypeLiteral", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TemplateTimelineType", + "text": "TemplateTimelineType" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 247 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TemplateTimelineTypeLiteralWithNull", + "type": "Type", + "tags": [], + "label": "TemplateTimelineTypeLiteralWithNull", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TemplateTimelineType", + "text": "TemplateTimelineType" + }, + " | null" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 248 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineErrorResponse", + "type": "Type", + "tags": [], + "label": "TimelineErrorResponse", + "description": [], + "signature": [ + "{ status_code: number; message: string; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 393 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineEventsType", + "type": "Type", + "tags": [], + "label": "TimelineEventsType", + "description": [], + "signature": [ + "\"all\" | \"custom\" | \"raw\" | \"alert\" | \"eql\" | \"signal\"" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 451 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineExpandedDetail", + "type": "Type", + "tags": [], + "label": "TimelineExpandedDetail", + "description": [], + "signature": [ + "{ query?: { panelView?: \"eventDetail\" | undefined; params?: { eventId: string; indexName: string; } | undefined; } | Record | { panelView?: \"hostDetail\" | undefined; params?: { hostName: string; } | undefined; } | { panelView?: \"networkDetail\" | undefined; params?: { ip: string; flowTarget: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.FlowTarget", + "text": "FlowTarget" + }, + "; } | undefined; } | undefined; graph?: { panelView?: \"eventDetail\" | undefined; params?: { eventId: string; indexName: string; } | undefined; } | Record | { panelView?: \"hostDetail\" | undefined; params?: { hostName: string; } | undefined; } | { panelView?: \"networkDetail\" | undefined; params?: { ip: string; flowTarget: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.FlowTarget", + "text": "FlowTarget" + }, + "; } | undefined; } | undefined; notes?: { panelView?: \"eventDetail\" | undefined; params?: { eventId: string; indexName: string; } | undefined; } | Record | { panelView?: \"hostDetail\" | undefined; params?: { hostName: string; } | undefined; } | { panelView?: \"networkDetail\" | undefined; params?: { ip: string; flowTarget: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.FlowTarget", + "text": "FlowTarget" + }, + "; } | undefined; } | undefined; pinned?: { panelView?: \"eventDetail\" | undefined; params?: { eventId: string; indexName: string; } | undefined; } | Record | { panelView?: \"hostDetail\" | undefined; params?: { hostName: string; } | undefined; } | { panelView?: \"networkDetail\" | undefined; params?: { ip: string; flowTarget: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.FlowTarget", + "text": "FlowTarget" + }, + "; } | undefined; } | undefined; eql?: { panelView?: \"eventDetail\" | undefined; params?: { eventId: string; indexName: string; } | undefined; } | Record | { panelView?: \"hostDetail\" | undefined; params?: { hostName: string; } | undefined; } | { panelView?: \"networkDetail\" | undefined; params?: { ip: string; flowTarget: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.FlowTarget", + "text": "FlowTarget" + }, + "; } | undefined; } | undefined; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 498 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineExpandedDetailType", + "type": "Type", + "tags": [], + "label": "TimelineExpandedDetailType", + "description": [], + "signature": [ + "{ panelView?: \"eventDetail\" | undefined; params?: { eventId: string; indexName: string; } | undefined; } | Record | { panelView?: \"hostDetail\" | undefined; params?: { hostName: string; } | undefined; } | { panelView?: \"networkDetail\" | undefined; params?: { ip: string; flowTarget: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.FlowTarget", + "text": "FlowTarget" + }, + "; } | undefined; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 493 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineExpandedEventType", + "type": "Type", + "tags": [], + "label": "TimelineExpandedEventType", + "description": [], + "signature": [ + "{ panelView?: \"eventDetail\" | undefined; params?: { eventId: string; indexName: string; } | undefined; } | Record" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 464 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineExpandedHostType", + "type": "Type", + "tags": [], + "label": "TimelineExpandedHostType", + "description": [], + "signature": [ + "Record | { panelView?: \"hostDetail\" | undefined; params?: { hostName: string; } | undefined; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 474 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineExpandedNetworkType", + "type": "Type", + "tags": [], + "label": "TimelineExpandedNetworkType", + "description": [], + "signature": [ + "Record | { panelView?: \"networkDetail\" | undefined; params?: { ip: string; flowTarget: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.FlowTarget", + "text": "FlowTarget" + }, + "; } | undefined; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 483 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineFactoryQueryTypes", + "type": "Type", + "tags": [], + "label": "TimelineFactoryQueryTypes", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineEventsQueries", + "text": "TimelineEventsQueries" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 36 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineIdLiteral", + "type": "Type", + "tags": [], + "label": "TimelineIdLiteral", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineId", + "text": "TimelineId" + }, + ".hostsPageEvents | ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineId", + "text": "TimelineId" + }, + ".hostsPageExternalAlerts | ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineId", + "text": "TimelineId" + }, + ".detectionsRulesDetailsPage | ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineId", + "text": "TimelineId" + }, + ".detectionsPage | ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineId", + "text": "TimelineId" + }, + ".networkPageExternalAlerts | ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineId", + "text": "TimelineId" + }, + ".active | ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineId", + "text": "TimelineId" + }, + ".test" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 327 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineResponse", + "type": "Type", + "tags": [], + "label": "TimelineResponse", + "description": [], + "signature": [ + "{ data: { persistTimeline: { code?: number | null | undefined; message?: string | null | undefined; } & { timeline: { columns?: { aggregatable?: boolean | null | undefined; category?: string | null | undefined; columnHeaderType?: string | null | undefined; description?: string | null | undefined; example?: string | null | undefined; indexes?: string[] | null | undefined; id?: string | null | undefined; name?: string | null | undefined; placeholder?: string | null | undefined; searchable?: boolean | null | undefined; type?: string | null | undefined; }[] | null | undefined; dataProviders?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; and?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; }[] | null | undefined; type?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + " | null | undefined; }[] | null | undefined; description?: string | null | undefined; eqlOptions?: { eventCategoryField?: string | null | undefined; query?: string | null | undefined; tiebreakerField?: string | null | undefined; timestampField?: string | null | undefined; size?: string | number | null | undefined; } | null | undefined; eventType?: string | null | undefined; excludedRowRendererIds?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + "[] | null | undefined; favorite?: { keySearch?: string | null | undefined; favoriteDate?: number | null | undefined; fullName?: string | null | undefined; userName?: string | null | undefined; }[] | null | undefined; filters?: { exists?: string | null | undefined; meta?: { alias?: string | null | undefined; controlledBy?: string | null | undefined; disabled?: boolean | null | undefined; field?: string | null | undefined; formattedValue?: string | null | undefined; index?: string | null | undefined; key?: string | null | undefined; negate?: boolean | null | undefined; params?: string | null | undefined; type?: string | null | undefined; value?: string | null | undefined; } | null | undefined; match_all?: string | null | undefined; missing?: string | null | undefined; query?: string | null | undefined; range?: string | null | undefined; script?: string | null | undefined; }[] | null | undefined; indexNames?: string[] | null | undefined; kqlMode?: string | null | undefined; kqlQuery?: { filterQuery?: { kuery?: { kind?: string | null | undefined; expression?: string | null | undefined; } | null | undefined; serializedQuery?: string | null | undefined; } | null | undefined; } | null | undefined; title?: string | null | undefined; templateTimelineId?: string | null | undefined; templateTimelineVersion?: number | null | undefined; timelineType?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + " | null | undefined; dateRange?: { start?: string | number | null | undefined; end?: string | number | null | undefined; } | null | undefined; savedQueryId?: string | null | undefined; sort?: { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; } | { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; }[] | null | undefined; status?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + " | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { savedObjectId: string; version: string; } & { eventIdToNoteIds?: ({ timelineId: string | null; } & { eventId?: string | null | undefined; note?: string | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { noteId: string; version: string; } & { timelineVersion?: string | null | undefined; })[] | undefined; noteIds?: string[] | undefined; notes?: ({ timelineId: string | null; } & { eventId?: string | null | undefined; note?: string | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { noteId: string; version: string; } & { timelineVersion?: string | null | undefined; })[] | undefined; pinnedEventIds?: string[] | undefined; pinnedEventsSaveObject?: ({ pinnedEventId: string; version: string; } & { timelineId: string; eventId: string; } & { created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { timelineVersion?: string | null | undefined; })[] | undefined; }; }; }; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 394 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineSavedObject", + "type": "Type", + "tags": [], + "label": "TimelineSavedObject", + "description": [], + "signature": [ + "{ columns?: { aggregatable?: boolean | null | undefined; category?: string | null | undefined; columnHeaderType?: string | null | undefined; description?: string | null | undefined; example?: string | null | undefined; indexes?: string[] | null | undefined; id?: string | null | undefined; name?: string | null | undefined; placeholder?: string | null | undefined; searchable?: boolean | null | undefined; type?: string | null | undefined; }[] | null | undefined; dataProviders?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; and?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; }[] | null | undefined; type?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + " | null | undefined; }[] | null | undefined; description?: string | null | undefined; eqlOptions?: { eventCategoryField?: string | null | undefined; query?: string | null | undefined; tiebreakerField?: string | null | undefined; timestampField?: string | null | undefined; size?: string | number | null | undefined; } | null | undefined; eventType?: string | null | undefined; excludedRowRendererIds?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + "[] | null | undefined; favorite?: { keySearch?: string | null | undefined; favoriteDate?: number | null | undefined; fullName?: string | null | undefined; userName?: string | null | undefined; }[] | null | undefined; filters?: { exists?: string | null | undefined; meta?: { alias?: string | null | undefined; controlledBy?: string | null | undefined; disabled?: boolean | null | undefined; field?: string | null | undefined; formattedValue?: string | null | undefined; index?: string | null | undefined; key?: string | null | undefined; negate?: boolean | null | undefined; params?: string | null | undefined; type?: string | null | undefined; value?: string | null | undefined; } | null | undefined; match_all?: string | null | undefined; missing?: string | null | undefined; query?: string | null | undefined; range?: string | null | undefined; script?: string | null | undefined; }[] | null | undefined; indexNames?: string[] | null | undefined; kqlMode?: string | null | undefined; kqlQuery?: { filterQuery?: { kuery?: { kind?: string | null | undefined; expression?: string | null | undefined; } | null | undefined; serializedQuery?: string | null | undefined; } | null | undefined; } | null | undefined; title?: string | null | undefined; templateTimelineId?: string | null | undefined; templateTimelineVersion?: number | null | undefined; timelineType?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + " | null | undefined; dateRange?: { start?: string | number | null | undefined; end?: string | number | null | undefined; } | null | undefined; savedQueryId?: string | null | undefined; sort?: { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; } | { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; }[] | null | undefined; status?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + " | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { savedObjectId: string; version: string; } & { eventIdToNoteIds?: ({ timelineId: string | null; } & { eventId?: string | null | undefined; note?: string | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { noteId: string; version: string; } & { timelineVersion?: string | null | undefined; })[] | undefined; noteIds?: string[] | undefined; notes?: ({ timelineId: string | null; } & { eventId?: string | null | undefined; note?: string | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { noteId: string; version: string; } & { timelineVersion?: string | null | undefined; })[] | undefined; pinnedEventIds?: string[] | undefined; pinnedEventsSaveObject?: ({ pinnedEventId: string; version: string; } & { timelineId: string; eventId: string; } & { created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { timelineVersion?: string | null | undefined; })[] | undefined; }" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 359 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineStatusLiteral", + "type": "Type", + "tags": [], + "label": "TimelineStatusLiteral", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 202 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineStatusLiteralWithNull", + "type": "Type", + "tags": [], + "label": "TimelineStatusLiteralWithNull", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + " | null" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 203 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineStrategyRequestType", + "type": "Type", + "tags": [], + "label": "TimelineStrategyRequestType", + "description": [], + "signature": [ + "T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineEventsQueries", + "text": "TimelineEventsQueries" + }, + ".all ? ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsAllRequestOptions", + "text": "TimelineEventsAllRequestOptions" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineEventsQueries", + "text": "TimelineEventsQueries" + }, + ".details ? ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsDetailsRequestOptions", + "text": "TimelineEventsDetailsRequestOptions" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineEventsQueries", + "text": "TimelineEventsQueries" + }, + ".kpi ? ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineRequestBasicOptions", + "text": "TimelineRequestBasicOptions" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineEventsQueries", + "text": "TimelineEventsQueries" + }, + ".lastEventTime ? ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsLastEventTimeRequestOptions", + "text": "TimelineEventsLastEventTimeRequestOptions" + }, + " : never" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 68 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineStrategyResponseType", + "type": "Type", + "tags": [], + "label": "TimelineStrategyResponseType", + "description": [], + "signature": [ + "T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineEventsQueries", + "text": "TimelineEventsQueries" + }, + ".all ? ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsAllStrategyResponse", + "text": "TimelineEventsAllStrategyResponse" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineEventsQueries", + "text": "TimelineEventsQueries" + }, + ".details ? ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsDetailsStrategyResponse", + "text": "TimelineEventsDetailsStrategyResponse" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineEventsQueries", + "text": "TimelineEventsQueries" + }, + ".kpi ? ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineKpiStrategyResponse", + "text": "TimelineKpiStrategyResponse" + }, + " : T extends ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineEventsQueries", + "text": "TimelineEventsQueries" + }, + ".lastEventTime ? ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsLastEventTimeStrategyResponse", + "text": "TimelineEventsLastEventTimeStrategyResponse" + }, + " : never" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/timeline/index.ts", + "lineNumber": 56 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineTypeLiteral", + "type": "Type", + "tags": [], + "label": "TimelineTypeLiteral", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + } + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 268 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineTypeLiteralWithNull", + "type": "Type", + "tags": [], + "label": "TimelineTypeLiteralWithNull", + "description": [], + "signature": [ + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + " | null" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 269 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.ToggleDetailPanel", + "type": "Type", + "tags": [], + "label": "ToggleDetailPanel", + "description": [], + "signature": [ + "({ panelView?: \"eventDetail\" | undefined; params?: { eventId: string; indexName: string; } | undefined; } & { tabType?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineTabs", + "text": "TimelineTabs" + }, + " | undefined; timelineId: string; }) | (Record & { tabType?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineTabs", + "text": "TimelineTabs" + }, + " | undefined; timelineId: string; }) | ({ panelView?: \"hostDetail\" | undefined; params?: { hostName: string; } | undefined; } & { tabType?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineTabs", + "text": "TimelineTabs" + }, + " | undefined; timelineId: string; }) | ({ panelView?: \"networkDetail\" | undefined; params?: { ip: string; flowTarget: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.FlowTarget", + "text": "FlowTarget" + }, + "; } | undefined; } & { tabType?: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineTabs", + "text": "TimelineTabs" + }, + " | undefined; timelineId: string; })" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 502 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.UniquePrivateAttributeQuery", + "type": "Type", + "tags": [], + "label": "UniquePrivateAttributeQuery", + "description": [], + "signature": [ + "\"source\" | \"destination\"" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/network/kpi/unique_private_ips/index.ts", + "lineNumber": 27 + }, + "deprecated": false, + "initialIsOpen": false + } + ], + "objects": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.AllTimelineSavedObjectRuntimeType", + "type": "Object", + "tags": [], + "label": "AllTimelineSavedObjectRuntimeType", + "description": [ + "\nAll Timeline Saved object type with metadata" + ], + "signature": [ + "TypeC", + "<{ total: ", + "NumberC", + "; data: ", + "IntersectionC", + "<[", + "PartialC", + "<{ columns: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ aggregatable: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; category: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnHeaderType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; description: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; example: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; indexes: ", + "UnionC", + "<[", + "ArrayC", + "<", + "StringC", + ">, ", + "NullC", + "]>; id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; placeholder: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; searchable: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; dataProviders: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; enabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; excluded: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; queryMatch: ", + "UnionC", + "<[", + "PartialC", + "<{ field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; operator: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; and: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; enabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; excluded: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; queryMatch: ", + "UnionC", + "<[", + "PartialC", + "<{ field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; operator: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + ".default>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + ".template>]>, ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; description: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; eqlOptions: ", + "UnionC", + "<[", + "PartialC", + "<{ eventCategoryField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; query: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; tiebreakerField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; timestampField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; size: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; eventType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; excludedRowRendererIds: ", + "UnionC", + "<[", + "ArrayC", + "<", + "Type", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + ", string, unknown>>, ", + "NullC", + "]>; favorite: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ keySearch: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; favoriteDate: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; fullName: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; userName: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; filters: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ exists: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; meta: ", + "UnionC", + "<[", + "PartialC", + "<{ alias: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; controlledBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; disabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; formattedValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; index: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; key: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; negate: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; params: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; match_all: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; missing: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; query: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; range: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; script: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; indexNames: ", + "UnionC", + "<[", + "ArrayC", + "<", + "StringC", + ">, ", + "NullC", + "]>; kqlMode: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "PartialC", + "<{ filterQuery: ", + "UnionC", + "<[", + "PartialC", + "<{ kuery: ", + "UnionC", + "<[", + "PartialC", + "<{ kind: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; expression: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; serializedQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; title: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; templateTimelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; templateTimelineVersion: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; timelineType: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".template>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".default>]>, ", + "NullC", + "]>; dateRange: ", + "UnionC", + "<[", + "PartialC", + "<{ start: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; end: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; savedQueryId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sort: ", + "UnionC", + "<[", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ columnId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sortDirection: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "PartialC", + "<{ columnId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sortDirection: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "NullC", + "]>; status: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".active>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".draft>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".immutable>]>, ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "TypeC", + "<{ savedObjectId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "PartialC", + "<{ eventIdToNoteIds: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "IntersectionC", + "<[", + "TypeC", + "<{ timelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "PartialC", + "<{ eventId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; note: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "TypeC", + "<{ noteId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "PartialC", + "<{ timelineVersion: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>>; noteIds: ", + "ArrayC", + "<", + "StringC", + ">; notes: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "IntersectionC", + "<[", + "TypeC", + "<{ timelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "PartialC", + "<{ eventId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; note: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "TypeC", + "<{ noteId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "PartialC", + "<{ timelineVersion: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>>; pinnedEventIds: ", + "ArrayC", + "<", + "StringC", + ">; pinnedEventsSaveObject: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "TypeC", + "<{ pinnedEventId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "IntersectionC", + "<[", + "TypeC", + "<{ timelineId: ", + "StringC", + "; eventId: ", + "StringC", + "; }>, ", + "PartialC", + "<{ created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "PartialC", + "<{ timelineVersion: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>>; }>]>; }>" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 400 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.allTimelinesResponse", + "type": "Object", + "tags": [], + "label": "allTimelinesResponse", + "description": [], + "signature": [ + "IntersectionC", + "<[", + "TypeC", + "<{ timeline: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "PartialC", + "<{ columns: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ aggregatable: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; category: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnHeaderType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; description: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; example: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; indexes: ", + "UnionC", + "<[", + "ArrayC", + "<", + "StringC", + ">, ", + "NullC", + "]>; id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; placeholder: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; searchable: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; dataProviders: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; enabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; excluded: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; queryMatch: ", + "UnionC", + "<[", + "PartialC", + "<{ field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; operator: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; and: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; enabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; excluded: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; queryMatch: ", + "UnionC", + "<[", + "PartialC", + "<{ field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; operator: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + ".default>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + ".template>]>, ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; description: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; eqlOptions: ", + "UnionC", + "<[", + "PartialC", + "<{ eventCategoryField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; query: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; tiebreakerField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; timestampField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; size: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; eventType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; excludedRowRendererIds: ", + "UnionC", + "<[", + "ArrayC", + "<", + "Type", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + ", string, unknown>>, ", + "NullC", + "]>; favorite: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ keySearch: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; favoriteDate: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; fullName: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; userName: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; filters: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ exists: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; meta: ", + "UnionC", + "<[", + "PartialC", + "<{ alias: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; controlledBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; disabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; formattedValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; index: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; key: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; negate: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; params: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; match_all: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; missing: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; query: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; range: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; script: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; indexNames: ", + "UnionC", + "<[", + "ArrayC", + "<", + "StringC", + ">, ", + "NullC", + "]>; kqlMode: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "PartialC", + "<{ filterQuery: ", + "UnionC", + "<[", + "PartialC", + "<{ kuery: ", + "UnionC", + "<[", + "PartialC", + "<{ kind: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; expression: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; serializedQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; title: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; templateTimelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; templateTimelineVersion: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; timelineType: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".template>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".default>]>, ", + "NullC", + "]>; dateRange: ", + "UnionC", + "<[", + "PartialC", + "<{ start: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; end: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; savedQueryId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sort: ", + "UnionC", + "<[", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ columnId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sortDirection: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "PartialC", + "<{ columnId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sortDirection: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "NullC", + "]>; status: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".active>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".draft>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".immutable>]>, ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "TypeC", + "<{ savedObjectId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "PartialC", + "<{ eventIdToNoteIds: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "IntersectionC", + "<[", + "TypeC", + "<{ timelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "PartialC", + "<{ eventId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; note: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "TypeC", + "<{ noteId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "PartialC", + "<{ timelineVersion: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>>; noteIds: ", + "ArrayC", + "<", + "StringC", + ">; notes: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "IntersectionC", + "<[", + "TypeC", + "<{ timelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "PartialC", + "<{ eventId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; note: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "TypeC", + "<{ noteId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "PartialC", + "<{ timelineVersion: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>>; pinnedEventIds: ", + "ArrayC", + "<", + "StringC", + ">; pinnedEventsSaveObject: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "TypeC", + "<{ pinnedEventId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "IntersectionC", + "<[", + "TypeC", + "<{ timelineId: ", + "StringC", + "; eventId: ", + "StringC", + "; }>, ", + "PartialC", + "<{ created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "PartialC", + "<{ timelineVersion: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>>; }>]>>; totalCount: ", + "NumberC", + "; }>, ", + "TypeC", + "<{ defaultTimelineCount: ", + "NumberC", + "; templateTimelineCount: ", + "NumberC", + "; elasticTemplateTimelineCount: ", + "NumberC", + "; customTemplateTimelineCount: ", + "NumberC", + "; favoriteCount: ", + "NumberC", + "; }>]>" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 575 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.DataProviderTypeLiteralRt", + "type": "Object", + "tags": [], + "label": "DataProviderTypeLiteralRt", + "description": [], + "signature": [ + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + ".default>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + ".template>]>" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 75 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.direction", + "type": "Object", + "tags": [], + "label": "direction", + "description": [], + "signature": [ + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Direction", + "text": "Direction" + }, + ".asc>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Direction", + "text": "Direction" + }, + ".desc>]>" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 526 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EMPTY_BROWSER_FIELDS", + "type": "Object", + "tags": [], + "label": "EMPTY_BROWSER_FIELDS", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 84 + }, + "deprecated": false, + "children": [], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EMPTY_INDEX_PATTERN", + "type": "Object", + "tags": [], + "label": "EMPTY_INDEX_PATTERN", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 86 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "securitySolution", + "id": "def-common.EMPTY_INDEX_PATTERN.fields", + "type": "Array", + "tags": [], + "label": "fields", + "description": [], + "signature": [ + "never[]" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 87 + }, + "deprecated": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.EMPTY_INDEX_PATTERN.title", + "type": "string", + "tags": [], + "label": "title", + "description": [], + "source": { + "path": "x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts", + "lineNumber": 88 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.getTimelinesArgs", + "type": "Object", + "tags": [], + "label": "getTimelinesArgs", + "description": [], + "signature": [ + "PartialC", + "<{ onlyUserFavorite: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; pageInfo: ", + "UnionC", + "<[", + "TypeC", + "<{ pageIndex: ", + "NumberC", + "; pageSize: ", + "NumberC", + "; }>, ", + "NullC", + "]>; search: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sort: ", + "UnionC", + "<[", + "TypeC", + "<{ sortField: ", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.SortFieldTimeline", + "text": "SortFieldTimeline" + }, + ".title>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.SortFieldTimeline", + "text": "SortFieldTimeline" + }, + ".description>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.SortFieldTimeline", + "text": "SortFieldTimeline" + }, + ".updated>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.SortFieldTimeline", + "text": "SortFieldTimeline" + }, + ".created>]>; sortOrder: ", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Direction", + "text": "Direction" + }, + ".asc>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Direction", + "text": "Direction" + }, + ".desc>]>; }>, ", + "NullC", + "]>; status: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".active>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".draft>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".immutable>]>, ", + "NullC", + "]>; timelineType: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".template>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".default>]>, ", + "NullC", + "]>; }>" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 557 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.importTimelineResultSchema", + "type": "Object", + "tags": [], + "label": "importTimelineResultSchema", + "description": [], + "signature": [ + "ExactC", + "<", + "TypeC", + "<{ success: ", + "BooleanC", + "; success_count: ", + "Type", + "; timelines_installed: ", + "Type", + "; timelines_updated: ", + "Type", + "; errors: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "ExactC", + "<", + "PartialC", + "<{ id: ", + "StringC", + "; rule_id: ", + "StringC", + "; }>>, ", + "ExactC", + "<", + "TypeC", + "<{ error: ", + "TypeC", + "<{ status_code: ", + "Type", + "; message: ", + "StringC", + "; }>; }>>]>>; }>>" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 439 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.pageInfoTimeline", + "type": "Object", + "tags": [], + "label": "pageInfoTimeline", + "description": [], + "signature": [ + "TypeC", + "<{ pageIndex: ", + "NumberC", + "; pageSize: ", + "NumberC", + "; }>" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 507 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.responseFavoriteTimeline", + "type": "Object", + "tags": [], + "label": "responseFavoriteTimeline", + "description": [], + "signature": [ + "PartialC", + "<{ savedObjectId: ", + "StringC", + "; version: ", + "StringC", + "; code: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; message: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; templateTimelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; templateTimelineVersion: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; timelineType: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".template>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".default>]>, ", + "NullC", + "]>; favorite: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ fullName: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; userName: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; favoriteDate: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; }>" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 544 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.RowRendererIdRuntimeType", + "type": "Object", + "tags": [], + "label": "RowRendererIdRuntimeType", + "description": [], + "signature": [ + "Type", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + ", string, unknown>" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 227 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.SavedTimelineRuntimeType", + "type": "Object", + "tags": [], + "label": "SavedTimelineRuntimeType", + "description": [], + "signature": [ + "PartialC", + "<{ columns: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ aggregatable: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; category: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnHeaderType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; description: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; example: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; indexes: ", + "UnionC", + "<[", + "ArrayC", + "<", + "StringC", + ">, ", + "NullC", + "]>; id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; placeholder: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; searchable: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; dataProviders: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; enabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; excluded: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; queryMatch: ", + "UnionC", + "<[", + "PartialC", + "<{ field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; operator: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; and: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; enabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; excluded: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; queryMatch: ", + "UnionC", + "<[", + "PartialC", + "<{ field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; operator: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + ".default>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + ".template>]>, ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; description: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; eqlOptions: ", + "UnionC", + "<[", + "PartialC", + "<{ eventCategoryField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; query: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; tiebreakerField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; timestampField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; size: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; eventType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; excludedRowRendererIds: ", + "UnionC", + "<[", + "ArrayC", + "<", + "Type", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + ", string, unknown>>, ", + "NullC", + "]>; favorite: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ keySearch: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; favoriteDate: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; fullName: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; userName: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; filters: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ exists: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; meta: ", + "UnionC", + "<[", + "PartialC", + "<{ alias: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; controlledBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; disabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; formattedValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; index: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; key: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; negate: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; params: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; match_all: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; missing: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; query: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; range: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; script: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; indexNames: ", + "UnionC", + "<[", + "ArrayC", + "<", + "StringC", + ">, ", + "NullC", + "]>; kqlMode: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "PartialC", + "<{ filterQuery: ", + "UnionC", + "<[", + "PartialC", + "<{ kuery: ", + "UnionC", + "<[", + "PartialC", + "<{ kind: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; expression: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; serializedQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; title: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; templateTimelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; templateTimelineVersion: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; timelineType: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".template>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".default>]>, ", + "NullC", + "]>; dateRange: ", + "UnionC", + "<[", + "PartialC", + "<{ start: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; end: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; savedQueryId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sort: ", + "UnionC", + "<[", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ columnId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sortDirection: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "PartialC", + "<{ columnId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sortDirection: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "NullC", + "]>; status: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".active>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".draft>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".immutable>]>, ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 271 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.SingleTimelineResponseType", + "type": "Object", + "tags": [], + "label": "SingleTimelineResponseType", + "description": [], + "signature": [ + "TypeC", + "<{ data: ", + "TypeC", + "<{ getOneTimeline: ", + "IntersectionC", + "<[", + "PartialC", + "<{ columns: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ aggregatable: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; category: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnHeaderType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; description: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; example: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; indexes: ", + "UnionC", + "<[", + "ArrayC", + "<", + "StringC", + ">, ", + "NullC", + "]>; id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; placeholder: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; searchable: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; dataProviders: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; enabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; excluded: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; queryMatch: ", + "UnionC", + "<[", + "PartialC", + "<{ field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; operator: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; and: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; enabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; excluded: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; queryMatch: ", + "UnionC", + "<[", + "PartialC", + "<{ field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; operator: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + ".default>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + ".template>]>, ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; description: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; eqlOptions: ", + "UnionC", + "<[", + "PartialC", + "<{ eventCategoryField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; query: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; tiebreakerField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; timestampField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; size: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; eventType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; excludedRowRendererIds: ", + "UnionC", + "<[", + "ArrayC", + "<", + "Type", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + ", string, unknown>>, ", + "NullC", + "]>; favorite: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ keySearch: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; favoriteDate: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; fullName: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; userName: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; filters: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ exists: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; meta: ", + "UnionC", + "<[", + "PartialC", + "<{ alias: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; controlledBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; disabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; formattedValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; index: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; key: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; negate: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; params: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; match_all: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; missing: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; query: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; range: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; script: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; indexNames: ", + "UnionC", + "<[", + "ArrayC", + "<", + "StringC", + ">, ", + "NullC", + "]>; kqlMode: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "PartialC", + "<{ filterQuery: ", + "UnionC", + "<[", + "PartialC", + "<{ kuery: ", + "UnionC", + "<[", + "PartialC", + "<{ kind: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; expression: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; serializedQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; title: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; templateTimelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; templateTimelineVersion: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; timelineType: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".template>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".default>]>, ", + "NullC", + "]>; dateRange: ", + "UnionC", + "<[", + "PartialC", + "<{ start: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; end: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; savedQueryId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sort: ", + "UnionC", + "<[", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ columnId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sortDirection: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "PartialC", + "<{ columnId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sortDirection: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "NullC", + "]>; status: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".active>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".draft>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".immutable>]>, ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "TypeC", + "<{ savedObjectId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "PartialC", + "<{ eventIdToNoteIds: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "IntersectionC", + "<[", + "TypeC", + "<{ timelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "PartialC", + "<{ eventId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; note: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "TypeC", + "<{ noteId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "PartialC", + "<{ timelineVersion: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>>; noteIds: ", + "ArrayC", + "<", + "StringC", + ">; notes: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "IntersectionC", + "<[", + "TypeC", + "<{ timelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "PartialC", + "<{ eventId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; note: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "TypeC", + "<{ noteId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "PartialC", + "<{ timelineVersion: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>>; pinnedEventIds: ", + "ArrayC", + "<", + "StringC", + ">; pinnedEventsSaveObject: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "TypeC", + "<{ pinnedEventId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "IntersectionC", + "<[", + "TypeC", + "<{ timelineId: ", + "StringC", + "; eventId: ", + "StringC", + "; }>, ", + "PartialC", + "<{ created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "PartialC", + "<{ timelineVersion: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>>; }>]>; }>; }>" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 363 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.sortFieldTimeline", + "type": "Object", + "tags": [], + "label": "sortFieldTimeline", + "description": [], + "signature": [ + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.SortFieldTimeline", + "text": "SortFieldTimeline" + }, + ".title>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.SortFieldTimeline", + "text": "SortFieldTimeline" + }, + ".description>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.SortFieldTimeline", + "text": "SortFieldTimeline" + }, + ".updated>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.SortFieldTimeline", + "text": "SortFieldTimeline" + }, + ".created>]>" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 519 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.sortTimeline", + "type": "Object", + "tags": [], + "label": "sortTimeline", + "description": [], + "signature": [ + "TypeC", + "<{ sortField: ", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.SortFieldTimeline", + "text": "SortFieldTimeline" + }, + ".title>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.SortFieldTimeline", + "text": "SortFieldTimeline" + }, + ".description>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.SortFieldTimeline", + "text": "SortFieldTimeline" + }, + ".updated>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.SortFieldTimeline", + "text": "SortFieldTimeline" + }, + ".created>]>; sortOrder: ", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Direction", + "text": "Direction" + }, + ".asc>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Direction", + "text": "Direction" + }, + ".desc>]>; }>" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 531 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TemplateTimelineTypeLiteralRt", + "type": "Object", + "tags": [], + "label": "TemplateTimelineTypeLiteralRt", + "description": [], + "signature": [ + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TemplateTimelineType", + "text": "TemplateTimelineType" + }, + ".elastic>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TemplateTimelineType", + "text": "TemplateTimelineType" + }, + ".custom>]>" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 238 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TemplateTimelineTypeLiteralWithNullRt", + "type": "Object", + "tags": [], + "label": "TemplateTimelineTypeLiteralWithNullRt", + "description": [], + "signature": [ + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TemplateTimelineType", + "text": "TemplateTimelineType" + }, + ".elastic>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TemplateTimelineType", + "text": "TemplateTimelineType" + }, + ".custom>]>, ", + "NullC", + "]>" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 243 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineErrorResponseType", + "type": "Object", + "tags": [], + "label": "TimelineErrorResponseType", + "description": [], + "signature": [ + "TypeC", + "<{ status_code: ", + "NumberC", + "; message: ", + "StringC", + "; }>" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 388 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineIdLiteralRt", + "type": "Object", + "tags": [], + "label": "TimelineIdLiteralRt", + "description": [], + "signature": [ + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineId", + "text": "TimelineId" + }, + ".hostsPageEvents>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineId", + "text": "TimelineId" + }, + ".hostsPageExternalAlerts>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineId", + "text": "TimelineId" + }, + ".detectionsRulesDetailsPage>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineId", + "text": "TimelineId" + }, + ".detectionsPage>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineId", + "text": "TimelineId" + }, + ".networkPageExternalAlerts>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineId", + "text": "TimelineId" + }, + ".active>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineId", + "text": "TimelineId" + }, + ".test>]>" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 317 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineResponseType", + "type": "Object", + "tags": [], + "label": "TimelineResponseType", + "description": [ + "\nAll Timeline Saved object type with metadata" + ], + "signature": [ + "TypeC", + "<{ data: ", + "TypeC", + "<{ persistTimeline: ", + "IntersectionC", + "<[", + "PartialC", + "<{ code: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; message: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "TypeC", + "<{ timeline: ", + "IntersectionC", + "<[", + "PartialC", + "<{ columns: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ aggregatable: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; category: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnHeaderType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; description: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; example: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; indexes: ", + "UnionC", + "<[", + "ArrayC", + "<", + "StringC", + ">, ", + "NullC", + "]>; id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; placeholder: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; searchable: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; dataProviders: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; enabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; excluded: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; queryMatch: ", + "UnionC", + "<[", + "PartialC", + "<{ field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; operator: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; and: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; enabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; excluded: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; queryMatch: ", + "UnionC", + "<[", + "PartialC", + "<{ field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; operator: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + ".default>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + ".template>]>, ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; description: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; eqlOptions: ", + "UnionC", + "<[", + "PartialC", + "<{ eventCategoryField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; query: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; tiebreakerField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; timestampField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; size: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; eventType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; excludedRowRendererIds: ", + "UnionC", + "<[", + "ArrayC", + "<", + "Type", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + ", string, unknown>>, ", + "NullC", + "]>; favorite: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ keySearch: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; favoriteDate: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; fullName: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; userName: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; filters: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ exists: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; meta: ", + "UnionC", + "<[", + "PartialC", + "<{ alias: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; controlledBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; disabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; formattedValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; index: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; key: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; negate: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; params: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; match_all: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; missing: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; query: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; range: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; script: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; indexNames: ", + "UnionC", + "<[", + "ArrayC", + "<", + "StringC", + ">, ", + "NullC", + "]>; kqlMode: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "PartialC", + "<{ filterQuery: ", + "UnionC", + "<[", + "PartialC", + "<{ kuery: ", + "UnionC", + "<[", + "PartialC", + "<{ kind: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; expression: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; serializedQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; title: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; templateTimelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; templateTimelineVersion: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; timelineType: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".template>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".default>]>, ", + "NullC", + "]>; dateRange: ", + "UnionC", + "<[", + "PartialC", + "<{ start: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; end: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; savedQueryId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sort: ", + "UnionC", + "<[", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ columnId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sortDirection: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "PartialC", + "<{ columnId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sortDirection: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "NullC", + "]>; status: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".active>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".draft>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".immutable>]>, ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "TypeC", + "<{ savedObjectId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "PartialC", + "<{ eventIdToNoteIds: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "IntersectionC", + "<[", + "TypeC", + "<{ timelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "PartialC", + "<{ eventId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; note: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "TypeC", + "<{ noteId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "PartialC", + "<{ timelineVersion: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>>; noteIds: ", + "ArrayC", + "<", + "StringC", + ">; notes: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "IntersectionC", + "<[", + "TypeC", + "<{ timelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "PartialC", + "<{ eventId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; note: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "TypeC", + "<{ noteId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "PartialC", + "<{ timelineVersion: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>>; pinnedEventIds: ", + "ArrayC", + "<", + "StringC", + ">; pinnedEventsSaveObject: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "TypeC", + "<{ pinnedEventId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "IntersectionC", + "<[", + "TypeC", + "<{ timelineId: ", + "StringC", + "; eventId: ", + "StringC", + "; }>, ", + "PartialC", + "<{ created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "PartialC", + "<{ timelineVersion: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>>; }>]>; }>]>; }>; }>" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 374 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineSavedObjectRuntimeType", + "type": "Object", + "tags": [], + "label": "TimelineSavedObjectRuntimeType", + "description": [ + "\nTimeline Saved object type with metadata" + ], + "signature": [ + "IntersectionC", + "<[", + "TypeC", + "<{ id: ", + "StringC", + "; attributes: ", + "PartialC", + "<{ columns: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ aggregatable: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; category: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnHeaderType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; description: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; example: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; indexes: ", + "UnionC", + "<[", + "ArrayC", + "<", + "StringC", + ">, ", + "NullC", + "]>; id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; placeholder: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; searchable: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; dataProviders: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; enabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; excluded: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; queryMatch: ", + "UnionC", + "<[", + "PartialC", + "<{ field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; operator: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; and: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; enabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; excluded: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; queryMatch: ", + "UnionC", + "<[", + "PartialC", + "<{ field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; operator: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + ".default>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + ".template>]>, ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; description: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; eqlOptions: ", + "UnionC", + "<[", + "PartialC", + "<{ eventCategoryField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; query: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; tiebreakerField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; timestampField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; size: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; eventType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; excludedRowRendererIds: ", + "UnionC", + "<[", + "ArrayC", + "<", + "Type", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + ", string, unknown>>, ", + "NullC", + "]>; favorite: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ keySearch: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; favoriteDate: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; fullName: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; userName: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; filters: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ exists: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; meta: ", + "UnionC", + "<[", + "PartialC", + "<{ alias: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; controlledBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; disabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; formattedValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; index: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; key: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; negate: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; params: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; match_all: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; missing: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; query: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; range: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; script: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; indexNames: ", + "UnionC", + "<[", + "ArrayC", + "<", + "StringC", + ">, ", + "NullC", + "]>; kqlMode: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "PartialC", + "<{ filterQuery: ", + "UnionC", + "<[", + "PartialC", + "<{ kuery: ", + "UnionC", + "<[", + "PartialC", + "<{ kind: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; expression: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; serializedQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; title: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; templateTimelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; templateTimelineVersion: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; timelineType: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".template>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".default>]>, ", + "NullC", + "]>; dateRange: ", + "UnionC", + "<[", + "PartialC", + "<{ start: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; end: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; savedQueryId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sort: ", + "UnionC", + "<[", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ columnId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sortDirection: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "PartialC", + "<{ columnId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sortDirection: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "NullC", + "]>; status: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".active>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".draft>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".immutable>]>, ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>; version: ", + "StringC", + "; }>, ", + "PartialC", + "<{ savedObjectId: ", + "StringC", + "; }>]>" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 333 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineSavedToReturnObjectRuntimeType", + "type": "Object", + "tags": [], + "label": "TimelineSavedToReturnObjectRuntimeType", + "description": [], + "signature": [ + "IntersectionC", + "<[", + "PartialC", + "<{ columns: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ aggregatable: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; category: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnHeaderType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; description: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; example: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; indexes: ", + "UnionC", + "<[", + "ArrayC", + "<", + "StringC", + ">, ", + "NullC", + "]>; id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; placeholder: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; searchable: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; dataProviders: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; enabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; excluded: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; queryMatch: ", + "UnionC", + "<[", + "PartialC", + "<{ field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; operator: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; and: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; enabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; excluded: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; queryMatch: ", + "UnionC", + "<[", + "PartialC", + "<{ field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; operator: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + ".default>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + ".template>]>, ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; description: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; eqlOptions: ", + "UnionC", + "<[", + "PartialC", + "<{ eventCategoryField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; query: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; tiebreakerField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; timestampField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; size: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; eventType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; excludedRowRendererIds: ", + "UnionC", + "<[", + "ArrayC", + "<", + "Type", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + ", string, unknown>>, ", + "NullC", + "]>; favorite: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ keySearch: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; favoriteDate: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; fullName: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; userName: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; filters: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ exists: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; meta: ", + "UnionC", + "<[", + "PartialC", + "<{ alias: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; controlledBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; disabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; formattedValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; index: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; key: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; negate: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; params: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; match_all: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; missing: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; query: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; range: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; script: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; indexNames: ", + "UnionC", + "<[", + "ArrayC", + "<", + "StringC", + ">, ", + "NullC", + "]>; kqlMode: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "PartialC", + "<{ filterQuery: ", + "UnionC", + "<[", + "PartialC", + "<{ kuery: ", + "UnionC", + "<[", + "PartialC", + "<{ kind: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; expression: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; serializedQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; title: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; templateTimelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; templateTimelineVersion: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; timelineType: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".template>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".default>]>, ", + "NullC", + "]>; dateRange: ", + "UnionC", + "<[", + "PartialC", + "<{ start: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; end: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; savedQueryId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sort: ", + "UnionC", + "<[", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ columnId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sortDirection: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "PartialC", + "<{ columnId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sortDirection: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "NullC", + "]>; status: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".active>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".draft>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".immutable>]>, ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "TypeC", + "<{ savedObjectId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "PartialC", + "<{ eventIdToNoteIds: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "IntersectionC", + "<[", + "TypeC", + "<{ timelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "PartialC", + "<{ eventId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; note: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "TypeC", + "<{ noteId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "PartialC", + "<{ timelineVersion: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>>; noteIds: ", + "ArrayC", + "<", + "StringC", + ">; notes: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "IntersectionC", + "<[", + "TypeC", + "<{ timelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "PartialC", + "<{ eventId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; note: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "TypeC", + "<{ noteId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "PartialC", + "<{ timelineVersion: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>>; pinnedEventIds: ", + "ArrayC", + "<", + "StringC", + ">; pinnedEventsSaveObject: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "TypeC", + "<{ pinnedEventId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "IntersectionC", + "<[", + "TypeC", + "<{ timelineId: ", + "StringC", + "; eventId: ", + "StringC", + "; }>, ", + "PartialC", + "<{ created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "PartialC", + "<{ timelineVersion: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>>; }>]>" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 344 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineStatusLiteralRt", + "type": "Object", + "tags": [], + "label": "TimelineStatusLiteralRt", + "description": [], + "signature": [ + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".active>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".draft>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".immutable>]>" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 194 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineTypeLiteralRt", + "type": "Object", + "tags": [], + "label": "TimelineTypeLiteralRt", + "description": [], + "signature": [ + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".template>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".default>]>" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 261 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "securitySolution", + "id": "def-common.TimelineTypeLiteralWithNullRt", + "type": "Object", + "tags": [], + "label": "TimelineTypeLiteralWithNullRt", + "description": [], + "signature": [ + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".template>, ", + "LiteralC", + "<", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".default>]>, ", + "NullC", + "]>" + ], + "source": { + "path": "x-pack/plugins/security_solution/common/types/timeline/index.ts", + "lineNumber": 266 + }, + "deprecated": false, + "initialIsOpen": false + } + ] } } \ No newline at end of file diff --git a/api_docs/security_solution.mdx b/api_docs/security_solution.mdx index 0667a98e3762b..26a12f990db1a 100644 --- a/api_docs/security_solution.mdx +++ b/api_docs/security_solution.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'securitySolution'] warning: 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. --- - import securitySolutionObj from './security_solution.json'; @@ -19,7 +18,7 @@ import securitySolutionObj from './security_solution.json'; | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 32 | 0 | 32 | 6 | +| 1179 | 8 | 1130 | 27 | ## Client @@ -29,6 +28,9 @@ import securitySolutionObj from './security_solution.json'; ### Classes +### Consts, variables and types + + ## Server ### Setup @@ -46,3 +48,20 @@ import securitySolutionObj from './security_solution.json'; ### Consts, variables and types +## Common + +### Objects + + +### Functions + + +### Interfaces + + +### Enums + + +### Consts, variables and types + + diff --git a/api_docs/share.json b/api_docs/share.json index 41b7ecc38e1f0..696cfe6ef1926 100644 --- a/api_docs/share.json +++ b/api_docs/share.json @@ -406,128 +406,187 @@ "a Promise that resolves when all the downloads have been correctly started" ], "initialIsOpen": false - } - ], - "interfaces": [ + }, { "parentPluginId": "share", - "id": "def-public.ShareContext", - "type": "Interface", + "id": "def-public.useLocatorUrl", + "type": "Function", "tags": [], - "label": "ShareContext", + "label": "useLocatorUrl", "description": [], + "signature": [ + "

(locator: ", + { + "pluginId": "share", + "scope": "common", + "docId": "kibSharePluginApi", + "section": "def-common.LocatorPublic", + "text": "LocatorPublic" + }, + "

| null | undefined, params: P, getUrlParams?: ", + "LocatorGetUrlParams", + " | undefined, deps?: React.DependencyList) => string" + ], "source": { - "path": "src/plugins/share/public/types.ts", - "lineNumber": 23 + "path": "src/plugins/share/common/url_service/locators/use_locator_url.ts", + "lineNumber": 14 }, "deprecated": false, "children": [ { "parentPluginId": "share", - "id": "def-public.ShareContext.objectType", - "type": "string", + "id": "def-public.useLocatorUrl.$1", + "type": "CompoundType", "tags": [], - "label": "objectType", + "label": "locator", "description": [], + "signature": [ + { + "pluginId": "share", + "scope": "common", + "docId": "kibSharePluginApi", + "section": "def-common.LocatorPublic", + "text": "LocatorPublic" + }, + "

| null | undefined" + ], "source": { - "path": "src/plugins/share/public/types.ts", - "lineNumber": 24 + "path": "src/plugins/share/common/url_service/locators/use_locator_url.ts", + "lineNumber": 15 }, - "deprecated": false + "deprecated": false, + "isRequired": false }, { "parentPluginId": "share", - "id": "def-public.ShareContext.objectId", - "type": "string", + "id": "def-public.useLocatorUrl.$2", + "type": "Uncategorized", "tags": [], - "label": "objectId", + "label": "params", "description": [], "signature": [ - "string | undefined" + "P" ], "source": { - "path": "src/plugins/share/public/types.ts", - "lineNumber": 25 + "path": "src/plugins/share/common/url_service/locators/use_locator_url.ts", + "lineNumber": 16 }, - "deprecated": false + "deprecated": false, + "isRequired": true }, { "parentPluginId": "share", - "id": "def-public.ShareContext.shareableUrl", - "type": "string", + "id": "def-public.useLocatorUrl.$3", + "type": "Object", "tags": [], - "label": "shareableUrl", - "description": [ - "\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`" + "label": "getUrlParams", + "description": [], + "signature": [ + "LocatorGetUrlParams", + " | undefined" ], "source": { - "path": "src/plugins/share/public/types.ts", - "lineNumber": 35 + "path": "src/plugins/share/common/url_service/locators/use_locator_url.ts", + "lineNumber": 17 }, - "deprecated": false + "deprecated": false, + "isRequired": false }, { "parentPluginId": "share", - "id": "def-public.ShareContext.sharingData", + "id": "def-public.useLocatorUrl.$4", "type": "Object", "tags": [], - "label": "sharingData", + "label": "deps", "description": [], "signature": [ - "{ [key: string]: unknown; }" + "React.DependencyList" ], "source": { - "path": "src/plugins/share/public/types.ts", - "lineNumber": 36 + "path": "src/plugins/share/common/url_service/locators/use_locator_url.ts", + "lineNumber": 18 }, - "deprecated": false - }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + } + ], + "interfaces": [ + { + "parentPluginId": "share", + "id": "def-public.KibanaLocation", + "type": "Interface", + "tags": [], + "label": "KibanaLocation", + "description": [ + "\nThis interface represents a location in Kibana to which one can navigate\nusing the `core.application.navigateToApp()` method." + ], + "signature": [ + "KibanaLocation", + "" + ], + "source": { + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 110 + }, + "deprecated": false, + "children": [ { "parentPluginId": "share", - "id": "def-public.ShareContext.isDirty", - "type": "boolean", + "id": "def-public.KibanaLocation.app", + "type": "string", "tags": [], - "label": "isDirty", - "description": [], + "label": "app", + "description": [ + "\nKibana application ID." + ], "source": { - "path": "src/plugins/share/public/types.ts", - "lineNumber": 37 + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 114 }, "deprecated": false }, { "parentPluginId": "share", - "id": "def-public.ShareContext.onClose", - "type": "Function", + "id": "def-public.KibanaLocation.path", + "type": "string", "tags": [], - "label": "onClose", - "description": [], - "signature": [ - "() => void" + "label": "path", + "description": [ + "\nA relative URL path within a Kibana application." ], "source": { - "path": "src/plugins/share/public/types.ts", - "lineNumber": 38 + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 119 }, - "deprecated": false, - "returnComment": [], - "children": [] + "deprecated": false }, { "parentPluginId": "share", - "id": "def-public.ShareContext.showPublicUrlSwitch", - "type": "Function", + "id": "def-public.KibanaLocation.state", + "type": "Uncategorized", "tags": [], - "label": "showPublicUrlSwitch", - "description": [], + "label": "state", + "description": [ + "\nA serializable location state object, which the app can use to determine\nwhat should be displayed on the screen." + ], "signature": [ - "((anonymousUserCapabilities: ", - "Capabilities", - ") => boolean) | undefined" + "S" ], "source": { - "path": "src/plugins/share/public/types.ts", - "lineNumber": 39 + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 125 }, "deprecated": false } @@ -536,193 +595,363 @@ }, { "parentPluginId": "share", - "id": "def-public.ShareContextMenuPanelItem", + "id": "def-public.LocatorDefinition", "type": "Interface", "tags": [], - "label": "ShareContextMenuPanelItem", - "description": [], + "label": "LocatorDefinition", + "description": [ + "\nA convenience interface used to define and register a locator." + ], "signature": [ { "pluginId": "share", - "scope": "public", + "scope": "common", "docId": "kibSharePluginApi", - "section": "def-public.ShareContextMenuPanelItem", - "text": "ShareContextMenuPanelItem" + "section": "def-common.LocatorDefinition", + "text": "LocatorDefinition" }, - " extends Pick<", - "EuiContextMenuPanelItemDescriptorEntry", - ", \"onClick\" | \"key\" | \"size\" | \"className\" | \"aria-label\" | \"data-test-subj\" | \"disabled\" | \"target\" | \"href\" | \"icon\" | \"rel\" | \"buttonRef\" | \"toolTipContent\" | \"toolTipTitle\" | \"toolTipPosition\" | \"layoutAlign\" | \"panel\">" + "

extends Partial<", + { + "pluginId": "kibanaUtils", + "scope": "common", + "docId": "kibKibanaUtilsPluginApi", + "section": "def-common.PersistableState", + "text": "PersistableState" + }, + "

>" ], "source": { - "path": "src/plugins/share/public/types.ts", - "lineNumber": 48 + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 34 }, "deprecated": false, "children": [ { "parentPluginId": "share", - "id": "def-public.ShareContextMenuPanelItem.name", + "id": "def-public.LocatorDefinition.id", "type": "string", "tags": [], - "label": "name", - "description": [], + "label": "id", + "description": [ + "\nUnique ID of the locator. Should be constant and unique across Kibana." + ], "source": { - "path": "src/plugins/share/public/types.ts", - "lineNumber": 50 + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 39 }, "deprecated": false }, { "parentPluginId": "share", - "id": "def-public.ShareContextMenuPanelItem.sortOrder", - "type": "number", + "id": "def-public.LocatorDefinition.getLocation", + "type": "Function", "tags": [], - "label": "sortOrder", - "description": [], + "label": "getLocation", + "description": [ + "\nReturns a deep link, including location state, which can be used for\nnavigation in Kibana.\n" + ], "signature": [ - "number | undefined" + "(params: P) => Promise<", + "KibanaLocation", + ">" ], "source": { - "path": "src/plugins/share/public/types.ts", - "lineNumber": 51 + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 47 }, - "deprecated": false + "deprecated": false, + "children": [ + { + "parentPluginId": "share", + "id": "def-public.LocatorDefinition.getLocation.$1", + "type": "Uncategorized", + "tags": [], + "label": "params", + "description": [ + "Parameters from which to generate a Kibana location." + ], + "signature": [ + "P" + ], + "source": { + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 47 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [] } ], "initialIsOpen": false }, { "parentPluginId": "share", - "id": "def-public.ShareMenuItem", + "id": "def-public.LocatorPublic", "type": "Interface", "tags": [], - "label": "ShareMenuItem", - "description": [], + "label": "LocatorPublic", + "description": [ + "\nPublic interface of a registered locator." + ], + "signature": [ + { + "pluginId": "share", + "scope": "common", + "docId": "kibSharePluginApi", + "section": "def-common.LocatorPublic", + "text": "LocatorPublic" + }, + "

extends ", + { + "pluginId": "kibanaUtils", + "scope": "common", + "docId": "kibKibanaUtilsPluginApi", + "section": "def-common.PersistableState", + "text": "PersistableState" + }, + "

" + ], "source": { - "path": "src/plugins/share/public/types.ts", - "lineNumber": 59 + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 53 }, "deprecated": false, "children": [ { "parentPluginId": "share", - "id": "def-public.ShareMenuItem.shareMenuItem", - "type": "Object", + "id": "def-public.LocatorPublic.getLocation", + "type": "Function", "tags": [], - "label": "shareMenuItem", - "description": [], + "label": "getLocation", + "description": [ + "\nReturns a reference to a Kibana client-side location.\n" + ], "signature": [ - { - "pluginId": "share", - "scope": "public", - "docId": "kibSharePluginApi", - "section": "def-public.ShareContextMenuPanelItem", - "text": "ShareContextMenuPanelItem" - } + "(params: P) => Promise<", + "KibanaLocation", + ">" ], "source": { - "path": "src/plugins/share/public/types.ts", - "lineNumber": 60 + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 59 }, - "deprecated": false + "deprecated": false, + "children": [ + { + "parentPluginId": "share", + "id": "def-public.LocatorPublic.getLocation.$1", + "type": "Uncategorized", + "tags": [], + "label": "params", + "description": [ + "URL locator parameters." + ], + "signature": [ + "P" + ], + "source": { + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 59 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [] }, { "parentPluginId": "share", - "id": "def-public.ShareMenuItem.panel", - "type": "Object", + "id": "def-public.LocatorPublic.getUrl", + "type": "Function", "tags": [], - "label": "panel", - "description": [], + "label": "getUrl", + "description": [ + "\nReturns a URL as a string.\n" + ], "signature": [ - "EuiContextMenuPanelDescriptor" + "(params: P, getUrlParams?: ", + "LocatorGetUrlParams", + " | undefined) => Promise" ], "source": { - "path": "src/plugins/share/public/types.ts", - "lineNumber": 61 + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 67 }, - "deprecated": false - } - ], - "initialIsOpen": false - }, - { - "parentPluginId": "share", - "id": "def-public.ShareMenuProvider", - "type": "Interface", - "tags": [], - "label": "ShareMenuProvider", - "description": [], - "source": { - "path": "src/plugins/share/public/types.ts", - "lineNumber": 71 - }, - "deprecated": false, - "children": [ - { - "parentPluginId": "share", - "id": "def-public.ShareMenuProvider.id", - "type": "string", - "tags": [], - "label": "id", - "description": [], - "source": { - "path": "src/plugins/share/public/types.ts", - "lineNumber": 72 - }, - "deprecated": false + "deprecated": false, + "children": [ + { + "parentPluginId": "share", + "id": "def-public.LocatorPublic.getUrl.$1", + "type": "Uncategorized", + "tags": [], + "label": "params", + "description": [ + "URL locator parameters." + ], + "signature": [ + "P" + ], + "source": { + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 67 + }, + "deprecated": false, + "isRequired": true + }, + { + "parentPluginId": "share", + "id": "def-public.LocatorPublic.getUrl.$2", + "type": "Object", + "tags": [], + "label": "getUrlParams", + "description": [ + "URL construction parameters." + ], + "signature": [ + "LocatorGetUrlParams", + " | undefined" + ], + "source": { + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 67 + }, + "deprecated": false, + "isRequired": false + } + ], + "returnComment": [] }, { "parentPluginId": "share", - "id": "def-public.ShareMenuProvider.getShareMenuItems", + "id": "def-public.LocatorPublic.navigate", "type": "Function", "tags": [], - "label": "getShareMenuItems", - "description": [], + "label": "navigate", + "description": [ + "\nNavigate using the `core.application.navigateToApp()` method to a Kibana\nlocation generated by this locator. This method is available only on the\nbrowser.\n" + ], "signature": [ - "(context: ", + "(params: P, navigationParams?: ", + "LocatorNavigationParams", + " | undefined) => Promise" + ], + "source": { + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 77 + }, + "deprecated": false, + "children": [ { - "pluginId": "share", - "scope": "public", - "docId": "kibSharePluginApi", - "section": "def-public.ShareContext", - "text": "ShareContext" + "parentPluginId": "share", + "id": "def-public.LocatorPublic.navigate.$1", + "type": "Uncategorized", + "tags": [], + "label": "params", + "description": [ + "URL locator parameters." + ], + "signature": [ + "P" + ], + "source": { + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 77 + }, + "deprecated": false, + "isRequired": true }, - ") => ", { - "pluginId": "share", - "scope": "public", - "docId": "kibSharePluginApi", - "section": "def-public.ShareMenuItem", - "text": "ShareMenuItem" - }, - "[]" + "parentPluginId": "share", + "id": "def-public.LocatorPublic.navigate.$2", + "type": "Object", + "tags": [], + "label": "navigationParams", + "description": [ + "Navigation parameters." + ], + "signature": [ + "LocatorNavigationParams", + " | undefined" + ], + "source": { + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 77 + }, + "deprecated": false, + "isRequired": false + } + ], + "returnComment": [] + }, + { + "parentPluginId": "share", + "id": "def-public.LocatorPublic.useUrl", + "type": "Function", + "tags": [], + "label": "useUrl", + "description": [ + "\nReact hook which returns a URL string given locator parameters. Returns\nempty string if URL is being loaded or an error happened." + ], + "signature": [ + "(params: P, getUrlParams?: ", + "LocatorGetUrlParams", + " | undefined, deps?: React.DependencyList | undefined) => string" ], "source": { - "path": "src/plugins/share/public/types.ts", - "lineNumber": 74 + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 83 }, "deprecated": false, "returnComment": [], "children": [ { "parentPluginId": "share", - "id": "def-public.context", + "id": "def-public.params", + "type": "Uncategorized", + "tags": [], + "label": "params", + "description": [], + "signature": [ + "P" + ], + "source": { + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 83 + }, + "deprecated": false + }, + { + "parentPluginId": "share", + "id": "def-public.getUrlParams", "type": "Object", "tags": [], - "label": "context", + "label": "getUrlParams", "description": [], "signature": [ - { - "pluginId": "share", - "scope": "public", - "docId": "kibSharePluginApi", - "section": "def-public.ShareContext", - "text": "ShareContext" - } + "LocatorGetUrlParams", + " | undefined" ], "source": { - "path": "src/plugins/share/public/types.ts", - "lineNumber": 74 + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 83 + }, + "deprecated": false + }, + { + "parentPluginId": "share", + "id": "def-public.deps", + "type": "Object", + "tags": [], + "label": "deps", + "description": [], + "signature": [ + "React.DependencyList | undefined" + ], + "source": { + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 83 }, "deprecated": false } @@ -733,91 +962,123 @@ }, { "parentPluginId": "share", - "id": "def-public.ShowShareMenuOptions", + "id": "def-public.ShareContext", "type": "Interface", "tags": [], - "label": "ShowShareMenuOptions", + "label": "ShareContext", "description": [], - "signature": [ - { - "pluginId": "share", - "scope": "public", - "docId": "kibSharePluginApi", - "section": "def-public.ShowShareMenuOptions", - "text": "ShowShareMenuOptions" - }, - " extends Pick<", - { - "pluginId": "share", - "scope": "public", - "docId": "kibSharePluginApi", - "section": "def-public.ShareContext", - "text": "ShareContext" - }, - ", \"objectType\" | \"objectId\" | \"shareableUrl\" | \"sharingData\" | \"isDirty\" | \"showPublicUrlSwitch\">" - ], "source": { "path": "src/plugins/share/public/types.ts", - "lineNumber": 87 + "lineNumber": 23 }, "deprecated": false, "children": [ { "parentPluginId": "share", - "id": "def-public.ShowShareMenuOptions.anchorElement", - "type": "Object", + "id": "def-public.ShareContext.objectType", + "type": "string", "tags": [], - "label": "anchorElement", + "label": "objectType", + "description": [], + "source": { + "path": "src/plugins/share/public/types.ts", + "lineNumber": 24 + }, + "deprecated": false + }, + { + "parentPluginId": "share", + "id": "def-public.ShareContext.objectId", + "type": "string", + "tags": [], + "label": "objectId", "description": [], "signature": [ - "HTMLElement" + "string | undefined" ], "source": { "path": "src/plugins/share/public/types.ts", - "lineNumber": 88 + "lineNumber": 25 }, "deprecated": false }, { "parentPluginId": "share", - "id": "def-public.ShowShareMenuOptions.allowEmbed", - "type": "boolean", + "id": "def-public.ShareContext.shareableUrl", + "type": "string", "tags": [], - "label": "allowEmbed", + "label": "shareableUrl", + "description": [ + "\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`" + ], + "source": { + "path": "src/plugins/share/public/types.ts", + "lineNumber": 35 + }, + "deprecated": false + }, + { + "parentPluginId": "share", + "id": "def-public.ShareContext.sharingData", + "type": "Object", + "tags": [], + "label": "sharingData", "description": [], + "signature": [ + "{ [key: string]: unknown; }" + ], "source": { "path": "src/plugins/share/public/types.ts", - "lineNumber": 89 + "lineNumber": 36 }, "deprecated": false }, { "parentPluginId": "share", - "id": "def-public.ShowShareMenuOptions.allowShortUrl", + "id": "def-public.ShareContext.isDirty", "type": "boolean", "tags": [], - "label": "allowShortUrl", + "label": "isDirty", "description": [], "source": { "path": "src/plugins/share/public/types.ts", - "lineNumber": 90 + "lineNumber": 37 }, "deprecated": false }, { "parentPluginId": "share", - "id": "def-public.ShowShareMenuOptions.embedUrlParamExtensions", - "type": "Array", + "id": "def-public.ShareContext.onClose", + "type": "Function", "tags": [], - "label": "embedUrlParamExtensions", + "label": "onClose", "description": [], "signature": [ - "UrlParamExtension", - "[] | undefined" + "() => void" ], "source": { "path": "src/plugins/share/public/types.ts", - "lineNumber": 91 + "lineNumber": 38 + }, + "deprecated": false, + "returnComment": [], + "children": [] + }, + { + "parentPluginId": "share", + "id": "def-public.ShareContext.showPublicUrlSwitch", + "type": "Function", + "tags": [], + "label": "showPublicUrlSwitch", + "description": [], + "signature": [ + "((anonymousUserCapabilities: ", + "Capabilities", + ") => boolean) | undefined" + ], + "source": { + "path": "src/plugins/share/public/types.ts", + "lineNumber": 39 }, "deprecated": false } @@ -826,266 +1087,407 @@ }, { "parentPluginId": "share", - "id": "def-public.UrlGeneratorContract", + "id": "def-public.ShareContextMenuPanelItem", "type": "Interface", "tags": [], - "label": "UrlGeneratorContract", + "label": "ShareContextMenuPanelItem", "description": [], "signature": [ { "pluginId": "share", "scope": "public", "docId": "kibSharePluginApi", - "section": "def-public.UrlGeneratorContract", - "text": "UrlGeneratorContract" + "section": "def-public.ShareContextMenuPanelItem", + "text": "ShareContextMenuPanelItem" }, - "" + " extends Pick<", + "EuiContextMenuPanelItemDescriptorEntry", + ", \"onClick\" | \"key\" | \"size\" | \"className\" | \"aria-label\" | \"data-test-subj\" | \"disabled\" | \"target\" | \"href\" | \"icon\" | \"rel\" | \"buttonRef\" | \"toolTipContent\" | \"toolTipTitle\" | \"toolTipPosition\" | \"layoutAlign\" | \"panel\">" ], "source": { - "path": "src/plugins/share/public/url_generators/url_generator_contract.ts", - "lineNumber": 11 + "path": "src/plugins/share/public/types.ts", + "lineNumber": 48 }, "deprecated": false, "children": [ { "parentPluginId": "share", - "id": "def-public.UrlGeneratorContract.id", - "type": "Uncategorized", + "id": "def-public.ShareContextMenuPanelItem.name", + "type": "string", "tags": [], - "label": "id", + "label": "name", "description": [], - "signature": [ - "Id" - ], "source": { - "path": "src/plugins/share/public/url_generators/url_generator_contract.ts", - "lineNumber": 12 + "path": "src/plugins/share/public/types.ts", + "lineNumber": 50 }, "deprecated": false }, { "parentPluginId": "share", - "id": "def-public.UrlGeneratorContract.createUrl", - "type": "Function", + "id": "def-public.ShareContextMenuPanelItem.sortOrder", + "type": "number", "tags": [], - "label": "createUrl", + "label": "sortOrder", + "description": [], + "signature": [ + "number | undefined" + ], + "source": { + "path": "src/plugins/share/public/types.ts", + "lineNumber": 51 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "share", + "id": "def-public.ShareMenuItem", + "type": "Interface", + "tags": [], + "label": "ShareMenuItem", + "description": [], + "source": { + "path": "src/plugins/share/public/types.ts", + "lineNumber": 59 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "share", + "id": "def-public.ShareMenuItem.shareMenuItem", + "type": "Object", + "tags": [], + "label": "shareMenuItem", "description": [], "signature": [ - "(state: ", { "pluginId": "share", "scope": "public", "docId": "kibSharePluginApi", - "section": "def-public.UrlGeneratorStateMapping", - "text": "UrlGeneratorStateMapping" - }, - "[Id][\"State\"]) => Promise" + "section": "def-public.ShareContextMenuPanelItem", + "text": "ShareContextMenuPanelItem" + } ], "source": { - "path": "src/plugins/share/public/url_generators/url_generator_contract.ts", - "lineNumber": 13 + "path": "src/plugins/share/public/types.ts", + "lineNumber": 60 }, - "deprecated": false, - "children": [ - { - "parentPluginId": "share", - "id": "def-public.UrlGeneratorContract.createUrl.$1", - "type": "Uncategorized", - "tags": [], - "label": "state", - "description": [], - "signature": [ - { - "pluginId": "share", - "scope": "public", - "docId": "kibSharePluginApi", - "section": "def-public.UrlGeneratorStateMapping", - "text": "UrlGeneratorStateMapping" - }, - "[Id][\"State\"]" - ], - "source": { - "path": "src/plugins/share/public/url_generators/url_generator_contract.ts", - "lineNumber": 13 - }, - "deprecated": false, - "isRequired": true - } - ], - "returnComment": [] + "deprecated": false }, { "parentPluginId": "share", - "id": "def-public.UrlGeneratorContract.isDeprecated", - "type": "boolean", + "id": "def-public.ShareMenuItem.panel", + "type": "Object", "tags": [], - "label": "isDeprecated", + "label": "panel", "description": [], + "signature": [ + "EuiContextMenuPanelDescriptor" + ], "source": { - "path": "src/plugins/share/public/url_generators/url_generator_contract.ts", - "lineNumber": 14 + "path": "src/plugins/share/public/types.ts", + "lineNumber": 61 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "share", + "id": "def-public.ShareMenuProvider", + "type": "Interface", + "tags": [], + "label": "ShareMenuProvider", + "description": [], + "source": { + "path": "src/plugins/share/public/types.ts", + "lineNumber": 71 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "share", + "id": "def-public.ShareMenuProvider.id", + "type": "string", + "tags": [], + "label": "id", + "description": [], + "source": { + "path": "src/plugins/share/public/types.ts", + "lineNumber": 72 }, "deprecated": false }, { "parentPluginId": "share", - "id": "def-public.UrlGeneratorContract.migrate", + "id": "def-public.ShareMenuProvider.getShareMenuItems", "type": "Function", "tags": [], - "label": "migrate", + "label": "getShareMenuItems", "description": [], "signature": [ - "(state: ", - { - "pluginId": "share", - "scope": "public", - "docId": "kibSharePluginApi", - "section": "def-public.UrlGeneratorStateMapping", - "text": "UrlGeneratorStateMapping" - }, - "[Id][\"State\"]) => Promise<{ state: ", + "(context: ", { "pluginId": "share", "scope": "public", "docId": "kibSharePluginApi", - "section": "def-public.UrlGeneratorStateMapping", - "text": "UrlGeneratorStateMapping" + "section": "def-public.ShareContext", + "text": "ShareContext" }, - "[Id][\"MigratedState\"]; id: ", + ") => ", { "pluginId": "share", "scope": "public", "docId": "kibSharePluginApi", - "section": "def-public.UrlGeneratorStateMapping", - "text": "UrlGeneratorStateMapping" + "section": "def-public.ShareMenuItem", + "text": "ShareMenuItem" }, - "[Id][\"MigratedId\"]; }>" + "[]" ], "source": { - "path": "src/plugins/share/public/url_generators/url_generator_contract.ts", - "lineNumber": 15 + "path": "src/plugins/share/public/types.ts", + "lineNumber": 74 }, "deprecated": false, + "returnComment": [], "children": [ { "parentPluginId": "share", - "id": "def-public.UrlGeneratorContract.migrate.$1", - "type": "Uncategorized", + "id": "def-public.context", + "type": "Object", "tags": [], - "label": "state", + "label": "context", "description": [], "signature": [ { "pluginId": "share", "scope": "public", "docId": "kibSharePluginApi", - "section": "def-public.UrlGeneratorStateMapping", - "text": "UrlGeneratorStateMapping" - }, - "[Id][\"State\"]" + "section": "def-public.ShareContext", + "text": "ShareContext" + } ], "source": { - "path": "src/plugins/share/public/url_generators/url_generator_contract.ts", - "lineNumber": 16 + "path": "src/plugins/share/public/types.ts", + "lineNumber": 74 }, - "deprecated": false, - "isRequired": true + "deprecated": false } - ], - "returnComment": [] + ] } ], "initialIsOpen": false }, { "parentPluginId": "share", - "id": "def-public.UrlGeneratorsDefinition", + "id": "def-public.ShowShareMenuOptions", "type": "Interface", "tags": [], - "label": "UrlGeneratorsDefinition", + "label": "ShowShareMenuOptions", "description": [], "signature": [ { "pluginId": "share", "scope": "public", "docId": "kibSharePluginApi", - "section": "def-public.UrlGeneratorsDefinition", - "text": "UrlGeneratorsDefinition" + "section": "def-public.ShowShareMenuOptions", + "text": "ShowShareMenuOptions" }, - "" + " extends Pick<", + { + "pluginId": "share", + "scope": "public", + "docId": "kibSharePluginApi", + "section": "def-public.ShareContext", + "text": "ShareContext" + }, + ", \"objectType\" | \"objectId\" | \"shareableUrl\" | \"sharingData\" | \"isDirty\" | \"showPublicUrlSwitch\">" ], "source": { - "path": "src/plugins/share/public/url_generators/url_generator_definition.ts", - "lineNumber": 30 + "path": "src/plugins/share/public/types.ts", + "lineNumber": 87 }, "deprecated": false, "children": [ { "parentPluginId": "share", - "id": "def-public.UrlGeneratorsDefinition.id", - "type": "Uncategorized", + "id": "def-public.ShowShareMenuOptions.anchorElement", + "type": "Object", "tags": [], - "label": "id", + "label": "anchorElement", "description": [], "signature": [ - "Id" + "HTMLElement" ], "source": { - "path": "src/plugins/share/public/url_generators/url_generator_definition.ts", - "lineNumber": 31 + "path": "src/plugins/share/public/types.ts", + "lineNumber": 88 }, "deprecated": false }, { "parentPluginId": "share", - "id": "def-public.UrlGeneratorsDefinition.createUrl", - "type": "Function", + "id": "def-public.ShowShareMenuOptions.allowEmbed", + "type": "boolean", "tags": [], - "label": "createUrl", + "label": "allowEmbed", "description": [], - "signature": [ - "((state: ", - { - "pluginId": "share", - "scope": "public", - "docId": "kibSharePluginApi", - "section": "def-public.UrlGeneratorStateMapping", - "text": "UrlGeneratorStateMapping" - }, - "[Id][\"State\"]) => Promise) | undefined" - ], "source": { - "path": "src/plugins/share/public/url_generators/url_generator_definition.ts", - "lineNumber": 32 + "path": "src/plugins/share/public/types.ts", + "lineNumber": 89 }, "deprecated": false }, { "parentPluginId": "share", - "id": "def-public.UrlGeneratorsDefinition.isDeprecated", - "type": "CompoundType", + "id": "def-public.ShowShareMenuOptions.allowShortUrl", + "type": "boolean", "tags": [], - "label": "isDeprecated", + "label": "allowShortUrl", "description": [], - "signature": [ - "boolean | undefined" - ], "source": { - "path": "src/plugins/share/public/url_generators/url_generator_definition.ts", - "lineNumber": 33 + "path": "src/plugins/share/public/types.ts", + "lineNumber": 90 }, "deprecated": false }, { "parentPluginId": "share", - "id": "def-public.UrlGeneratorsDefinition.migrate", - "type": "Function", + "id": "def-public.ShowShareMenuOptions.embedUrlParamExtensions", + "type": "Array", "tags": [], - "label": "migrate", + "label": "embedUrlParamExtensions", "description": [], "signature": [ - "((state: ", - { + "UrlParamExtension", + "[] | undefined" + ], + "source": { + "path": "src/plugins/share/public/types.ts", + "lineNumber": 91 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "share", + "id": "def-public.UrlGeneratorContract", + "type": "Interface", + "tags": [], + "label": "UrlGeneratorContract", + "description": [], + "signature": [ + { + "pluginId": "share", + "scope": "public", + "docId": "kibSharePluginApi", + "section": "def-public.UrlGeneratorContract", + "text": "UrlGeneratorContract" + }, + "" + ], + "source": { + "path": "src/plugins/share/public/url_generators/url_generator_contract.ts", + "lineNumber": 11 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "share", + "id": "def-public.UrlGeneratorContract.id", + "type": "Uncategorized", + "tags": [], + "label": "id", + "description": [], + "signature": [ + "Id" + ], + "source": { + "path": "src/plugins/share/public/url_generators/url_generator_contract.ts", + "lineNumber": 12 + }, + "deprecated": false + }, + { + "parentPluginId": "share", + "id": "def-public.UrlGeneratorContract.createUrl", + "type": "Function", + "tags": [], + "label": "createUrl", + "description": [], + "signature": [ + "(state: ", + { + "pluginId": "share", + "scope": "public", + "docId": "kibSharePluginApi", + "section": "def-public.UrlGeneratorStateMapping", + "text": "UrlGeneratorStateMapping" + }, + "[Id][\"State\"]) => Promise" + ], + "source": { + "path": "src/plugins/share/public/url_generators/url_generator_contract.ts", + "lineNumber": 13 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "share", + "id": "def-public.UrlGeneratorContract.createUrl.$1", + "type": "Uncategorized", + "tags": [], + "label": "state", + "description": [], + "signature": [ + { + "pluginId": "share", + "scope": "public", + "docId": "kibSharePluginApi", + "section": "def-public.UrlGeneratorStateMapping", + "text": "UrlGeneratorStateMapping" + }, + "[Id][\"State\"]" + ], + "source": { + "path": "src/plugins/share/public/url_generators/url_generator_contract.ts", + "lineNumber": 13 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [] + }, + { + "parentPluginId": "share", + "id": "def-public.UrlGeneratorContract.isDeprecated", + "type": "boolean", + "tags": [], + "label": "isDeprecated", + "description": [], + "source": { + "path": "src/plugins/share/public/url_generators/url_generator_contract.ts", + "lineNumber": 14 + }, + "deprecated": false + }, + { + "parentPluginId": "share", + "id": "def-public.UrlGeneratorContract.migrate", + "type": "Function", + "tags": [], + "label": "migrate", + "description": [], + "signature": [ + "(state: ", + { "pluginId": "share", "scope": "public", "docId": "kibSharePluginApi", @@ -1108,85 +1510,160 @@ "section": "def-public.UrlGeneratorStateMapping", "text": "UrlGeneratorStateMapping" }, - "[Id][\"MigratedId\"]; }>) | undefined" + "[Id][\"MigratedId\"]; }>" ], "source": { - "path": "src/plugins/share/public/url_generators/url_generator_definition.ts", - "lineNumber": 34 + "path": "src/plugins/share/public/url_generators/url_generator_contract.ts", + "lineNumber": 15 }, - "deprecated": false + "deprecated": false, + "children": [ + { + "parentPluginId": "share", + "id": "def-public.UrlGeneratorContract.migrate.$1", + "type": "Uncategorized", + "tags": [], + "label": "state", + "description": [], + "signature": [ + { + "pluginId": "share", + "scope": "public", + "docId": "kibSharePluginApi", + "section": "def-public.UrlGeneratorStateMapping", + "text": "UrlGeneratorStateMapping" + }, + "[Id][\"State\"]" + ], + "source": { + "path": "src/plugins/share/public/url_generators/url_generator_contract.ts", + "lineNumber": 16 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [] } ], "initialIsOpen": false }, { "parentPluginId": "share", - "id": "def-public.UrlGeneratorState", + "id": "def-public.UrlGeneratorsDefinition", "type": "Interface", "tags": [], - "label": "UrlGeneratorState", + "label": "UrlGeneratorsDefinition", "description": [], "signature": [ { "pluginId": "share", "scope": "public", "docId": "kibSharePluginApi", - "section": "def-public.UrlGeneratorState", - "text": "UrlGeneratorState" + "section": "def-public.UrlGeneratorsDefinition", + "text": "UrlGeneratorsDefinition" }, - "" + "" ], "source": { "path": "src/plugins/share/public/url_generators/url_generator_definition.ts", - "lineNumber": 11 + "lineNumber": 30 }, "deprecated": false, "children": [ { "parentPluginId": "share", - "id": "def-public.UrlGeneratorState.State", + "id": "def-public.UrlGeneratorsDefinition.id", "type": "Uncategorized", "tags": [], - "label": "State", + "label": "id", "description": [], "signature": [ - "S" + "Id" ], "source": { "path": "src/plugins/share/public/url_generators/url_generator_definition.ts", - "lineNumber": 16 + "lineNumber": 31 }, "deprecated": false }, { "parentPluginId": "share", - "id": "def-public.UrlGeneratorState.MigratedId", - "type": "Uncategorized", + "id": "def-public.UrlGeneratorsDefinition.createUrl", + "type": "Function", "tags": [], - "label": "MigratedId", + "label": "createUrl", "description": [], "signature": [ - "I | undefined" + "((state: ", + { + "pluginId": "share", + "scope": "public", + "docId": "kibSharePluginApi", + "section": "def-public.UrlGeneratorStateMapping", + "text": "UrlGeneratorStateMapping" + }, + "[Id][\"State\"]) => Promise) | undefined" ], "source": { "path": "src/plugins/share/public/url_generators/url_generator_definition.ts", - "lineNumber": 17 + "lineNumber": 32 }, "deprecated": false }, { "parentPluginId": "share", - "id": "def-public.UrlGeneratorState.MigratedState", - "type": "Uncategorized", + "id": "def-public.UrlGeneratorsDefinition.isDeprecated", + "type": "CompoundType", "tags": [], - "label": "MigratedState", + "label": "isDeprecated", "description": [], "signature": [ - "MS | undefined" + "boolean | undefined" ], "source": { "path": "src/plugins/share/public/url_generators/url_generator_definition.ts", - "lineNumber": 18 + "lineNumber": 33 + }, + "deprecated": false + }, + { + "parentPluginId": "share", + "id": "def-public.UrlGeneratorsDefinition.migrate", + "type": "Function", + "tags": [], + "label": "migrate", + "description": [], + "signature": [ + "((state: ", + { + "pluginId": "share", + "scope": "public", + "docId": "kibSharePluginApi", + "section": "def-public.UrlGeneratorStateMapping", + "text": "UrlGeneratorStateMapping" + }, + "[Id][\"State\"]) => Promise<{ state: ", + { + "pluginId": "share", + "scope": "public", + "docId": "kibSharePluginApi", + "section": "def-public.UrlGeneratorStateMapping", + "text": "UrlGeneratorStateMapping" + }, + "[Id][\"MigratedState\"]; id: ", + { + "pluginId": "share", + "scope": "public", + "docId": "kibSharePluginApi", + "section": "def-public.UrlGeneratorStateMapping", + "text": "UrlGeneratorStateMapping" + }, + "[Id][\"MigratedId\"]; }>) | undefined" + ], + "source": { + "path": "src/plugins/share/public/url_generators/url_generator_definition.ts", + "lineNumber": 34 }, "deprecated": false } @@ -1195,15 +1672,89 @@ }, { "parentPluginId": "share", - "id": "def-public.UrlGeneratorStateMapping", + "id": "def-public.UrlGeneratorState", "type": "Interface", "tags": [], - "label": "UrlGeneratorStateMapping", + "label": "UrlGeneratorState", "description": [], - "source": { - "path": "src/plugins/share/public/url_generators/url_generator_definition.ts", - "lineNumber": 21 - }, + "signature": [ + { + "pluginId": "share", + "scope": "public", + "docId": "kibSharePluginApi", + "section": "def-public.UrlGeneratorState", + "text": "UrlGeneratorState" + }, + "" + ], + "source": { + "path": "src/plugins/share/public/url_generators/url_generator_definition.ts", + "lineNumber": 11 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "share", + "id": "def-public.UrlGeneratorState.State", + "type": "Uncategorized", + "tags": [], + "label": "State", + "description": [], + "signature": [ + "S" + ], + "source": { + "path": "src/plugins/share/public/url_generators/url_generator_definition.ts", + "lineNumber": 16 + }, + "deprecated": false + }, + { + "parentPluginId": "share", + "id": "def-public.UrlGeneratorState.MigratedId", + "type": "Uncategorized", + "tags": [], + "label": "MigratedId", + "description": [], + "signature": [ + "I | undefined" + ], + "source": { + "path": "src/plugins/share/public/url_generators/url_generator_definition.ts", + "lineNumber": 17 + }, + "deprecated": false + }, + { + "parentPluginId": "share", + "id": "def-public.UrlGeneratorState.MigratedState", + "type": "Uncategorized", + "tags": [], + "label": "MigratedState", + "description": [], + "signature": [ + "MS | undefined" + ], + "source": { + "path": "src/plugins/share/public/url_generators/url_generator_definition.ts", + "lineNumber": 18 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "share", + "id": "def-public.UrlGeneratorStateMapping", + "type": "Interface", + "tags": [], + "label": "UrlGeneratorStateMapping", + "description": [], + "source": { + "path": "src/plugins/share/public/url_generators/url_generator_definition.ts", + "lineNumber": 21 + }, "deprecated": false, "children": [ { @@ -1400,12 +1951,561 @@ "initialIsOpen": false } ], - "objects": [] + "objects": [], + "setup": { + "parentPluginId": "share", + "id": "def-server.SharePluginSetup", + "type": "Interface", + "tags": [], + "label": "SharePluginSetup", + "description": [], + "source": { + "path": "src/plugins/share/server/plugin.ts", + "lineNumber": 18 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "share", + "id": "def-server.SharePluginSetup.url", + "type": "Object", + "tags": [], + "label": "url", + "description": [], + "signature": [ + "UrlService" + ], + "source": { + "path": "src/plugins/share/server/plugin.ts", + "lineNumber": 19 + }, + "deprecated": false + } + ], + "lifecycle": "setup", + "initialIsOpen": true + }, + "start": { + "parentPluginId": "share", + "id": "def-server.SharePluginStart", + "type": "Interface", + "tags": [], + "label": "SharePluginStart", + "description": [], + "source": { + "path": "src/plugins/share/server/plugin.ts", + "lineNumber": 23 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "share", + "id": "def-server.SharePluginStart.url", + "type": "Object", + "tags": [], + "label": "url", + "description": [], + "signature": [ + "UrlService" + ], + "source": { + "path": "src/plugins/share/server/plugin.ts", + "lineNumber": 24 + }, + "deprecated": false + } + ], + "lifecycle": "start", + "initialIsOpen": true + } }, "common": { "classes": [], - "functions": [], - "interfaces": [], + "functions": [ + { + "parentPluginId": "share", + "id": "def-common.useLocatorUrl", + "type": "Function", + "tags": [], + "label": "useLocatorUrl", + "description": [], + "signature": [ + "

(locator: ", + { + "pluginId": "share", + "scope": "common", + "docId": "kibSharePluginApi", + "section": "def-common.LocatorPublic", + "text": "LocatorPublic" + }, + "

| null | undefined, params: P, getUrlParams?: ", + "LocatorGetUrlParams", + " | undefined, deps?: React.DependencyList) => string" + ], + "source": { + "path": "src/plugins/share/common/url_service/locators/use_locator_url.ts", + "lineNumber": 14 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "share", + "id": "def-common.useLocatorUrl.$1", + "type": "CompoundType", + "tags": [], + "label": "locator", + "description": [], + "signature": [ + { + "pluginId": "share", + "scope": "common", + "docId": "kibSharePluginApi", + "section": "def-common.LocatorPublic", + "text": "LocatorPublic" + }, + "

| null | undefined" + ], + "source": { + "path": "src/plugins/share/common/url_service/locators/use_locator_url.ts", + "lineNumber": 15 + }, + "deprecated": false, + "isRequired": false + }, + { + "parentPluginId": "share", + "id": "def-common.useLocatorUrl.$2", + "type": "Uncategorized", + "tags": [], + "label": "params", + "description": [], + "signature": [ + "P" + ], + "source": { + "path": "src/plugins/share/common/url_service/locators/use_locator_url.ts", + "lineNumber": 16 + }, + "deprecated": false, + "isRequired": true + }, + { + "parentPluginId": "share", + "id": "def-common.useLocatorUrl.$3", + "type": "Object", + "tags": [], + "label": "getUrlParams", + "description": [], + "signature": [ + "LocatorGetUrlParams", + " | undefined" + ], + "source": { + "path": "src/plugins/share/common/url_service/locators/use_locator_url.ts", + "lineNumber": 17 + }, + "deprecated": false, + "isRequired": false + }, + { + "parentPluginId": "share", + "id": "def-common.useLocatorUrl.$4", + "type": "Object", + "tags": [], + "label": "deps", + "description": [], + "signature": [ + "React.DependencyList" + ], + "source": { + "path": "src/plugins/share/common/url_service/locators/use_locator_url.ts", + "lineNumber": 18 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + } + ], + "interfaces": [ + { + "parentPluginId": "share", + "id": "def-common.LocatorDefinition", + "type": "Interface", + "tags": [], + "label": "LocatorDefinition", + "description": [ + "\nA convenience interface used to define and register a locator." + ], + "signature": [ + { + "pluginId": "share", + "scope": "common", + "docId": "kibSharePluginApi", + "section": "def-common.LocatorDefinition", + "text": "LocatorDefinition" + }, + "

extends Partial<", + { + "pluginId": "kibanaUtils", + "scope": "common", + "docId": "kibKibanaUtilsPluginApi", + "section": "def-common.PersistableState", + "text": "PersistableState" + }, + "

>" + ], + "source": { + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 34 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "share", + "id": "def-common.LocatorDefinition.id", + "type": "string", + "tags": [], + "label": "id", + "description": [ + "\nUnique ID of the locator. Should be constant and unique across Kibana." + ], + "source": { + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 39 + }, + "deprecated": false + }, + { + "parentPluginId": "share", + "id": "def-common.LocatorDefinition.getLocation", + "type": "Function", + "tags": [], + "label": "getLocation", + "description": [ + "\nReturns a deep link, including location state, which can be used for\nnavigation in Kibana.\n" + ], + "signature": [ + "(params: P) => Promise<", + "KibanaLocation", + ">" + ], + "source": { + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 47 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "share", + "id": "def-common.LocatorDefinition.getLocation.$1", + "type": "Uncategorized", + "tags": [], + "label": "params", + "description": [ + "Parameters from which to generate a Kibana location." + ], + "signature": [ + "P" + ], + "source": { + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 47 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [] + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "share", + "id": "def-common.LocatorPublic", + "type": "Interface", + "tags": [], + "label": "LocatorPublic", + "description": [ + "\nPublic interface of a registered locator." + ], + "signature": [ + { + "pluginId": "share", + "scope": "common", + "docId": "kibSharePluginApi", + "section": "def-common.LocatorPublic", + "text": "LocatorPublic" + }, + "

extends ", + { + "pluginId": "kibanaUtils", + "scope": "common", + "docId": "kibKibanaUtilsPluginApi", + "section": "def-common.PersistableState", + "text": "PersistableState" + }, + "

" + ], + "source": { + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 53 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "share", + "id": "def-common.LocatorPublic.getLocation", + "type": "Function", + "tags": [], + "label": "getLocation", + "description": [ + "\nReturns a reference to a Kibana client-side location.\n" + ], + "signature": [ + "(params: P) => Promise<", + "KibanaLocation", + ">" + ], + "source": { + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 59 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "share", + "id": "def-common.LocatorPublic.getLocation.$1", + "type": "Uncategorized", + "tags": [], + "label": "params", + "description": [ + "URL locator parameters." + ], + "signature": [ + "P" + ], + "source": { + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 59 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [] + }, + { + "parentPluginId": "share", + "id": "def-common.LocatorPublic.getUrl", + "type": "Function", + "tags": [], + "label": "getUrl", + "description": [ + "\nReturns a URL as a string.\n" + ], + "signature": [ + "(params: P, getUrlParams?: ", + "LocatorGetUrlParams", + " | undefined) => Promise" + ], + "source": { + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 67 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "share", + "id": "def-common.LocatorPublic.getUrl.$1", + "type": "Uncategorized", + "tags": [], + "label": "params", + "description": [ + "URL locator parameters." + ], + "signature": [ + "P" + ], + "source": { + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 67 + }, + "deprecated": false, + "isRequired": true + }, + { + "parentPluginId": "share", + "id": "def-common.LocatorPublic.getUrl.$2", + "type": "Object", + "tags": [], + "label": "getUrlParams", + "description": [ + "URL construction parameters." + ], + "signature": [ + "LocatorGetUrlParams", + " | undefined" + ], + "source": { + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 67 + }, + "deprecated": false, + "isRequired": false + } + ], + "returnComment": [] + }, + { + "parentPluginId": "share", + "id": "def-common.LocatorPublic.navigate", + "type": "Function", + "tags": [], + "label": "navigate", + "description": [ + "\nNavigate using the `core.application.navigateToApp()` method to a Kibana\nlocation generated by this locator. This method is available only on the\nbrowser.\n" + ], + "signature": [ + "(params: P, navigationParams?: ", + "LocatorNavigationParams", + " | undefined) => Promise" + ], + "source": { + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 77 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "share", + "id": "def-common.LocatorPublic.navigate.$1", + "type": "Uncategorized", + "tags": [], + "label": "params", + "description": [ + "URL locator parameters." + ], + "signature": [ + "P" + ], + "source": { + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 77 + }, + "deprecated": false, + "isRequired": true + }, + { + "parentPluginId": "share", + "id": "def-common.LocatorPublic.navigate.$2", + "type": "Object", + "tags": [], + "label": "navigationParams", + "description": [ + "Navigation parameters." + ], + "signature": [ + "LocatorNavigationParams", + " | undefined" + ], + "source": { + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 77 + }, + "deprecated": false, + "isRequired": false + } + ], + "returnComment": [] + }, + { + "parentPluginId": "share", + "id": "def-common.LocatorPublic.useUrl", + "type": "Function", + "tags": [], + "label": "useUrl", + "description": [ + "\nReact hook which returns a URL string given locator parameters. Returns\nempty string if URL is being loaded or an error happened." + ], + "signature": [ + "(params: P, getUrlParams?: ", + "LocatorGetUrlParams", + " | undefined, deps?: React.DependencyList | undefined) => string" + ], + "source": { + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 83 + }, + "deprecated": false, + "returnComment": [], + "children": [ + { + "parentPluginId": "share", + "id": "def-common.params", + "type": "Uncategorized", + "tags": [], + "label": "params", + "description": [], + "signature": [ + "P" + ], + "source": { + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 83 + }, + "deprecated": false + }, + { + "parentPluginId": "share", + "id": "def-common.getUrlParams", + "type": "Object", + "tags": [], + "label": "getUrlParams", + "description": [], + "signature": [ + "LocatorGetUrlParams", + " | undefined" + ], + "source": { + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 83 + }, + "deprecated": false + }, + { + "parentPluginId": "share", + "id": "def-common.deps", + "type": "Object", + "tags": [], + "label": "deps", + "description": [], + "signature": [ + "React.DependencyList | undefined" + ], + "source": { + "path": "src/plugins/share/common/url_service/locators/types.ts", + "lineNumber": 83 + }, + "deprecated": false + } + ] + } + ], + "initialIsOpen": false + } + ], "enums": [], "misc": [], "objects": [] diff --git a/api_docs/share.mdx b/api_docs/share.mdx index 58886148bd4a7..aa4adb67e38bf 100644 --- a/api_docs/share.mdx +++ b/api_docs/share.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'share'] warning: 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. --- - import shareObj from './share.json'; @@ -19,7 +18,7 @@ import shareObj from './share.json'; | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 67 | 1 | 61 | 4 | +| 119 | 1 | 81 | 7 | ## Client @@ -43,6 +42,20 @@ import shareObj from './share.json'; ## Server +### Setup + + +### Start + + ### Consts, variables and types +## Common + +### Functions + + +### Interfaces + + diff --git a/api_docs/snapshot_restore.mdx b/api_docs/snapshot_restore.mdx index ab2f917598737..a0edd266161e9 100644 --- a/api_docs/snapshot_restore.mdx +++ b/api_docs/snapshot_restore.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'snapshotRestore'] warning: 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. --- - import snapshotRestoreObj from './snapshot_restore.json'; diff --git a/api_docs/spaces.json b/api_docs/spaces.json index 002145f3b48db..bb609d31dddb8 100644 --- a/api_docs/spaces.json +++ b/api_docs/spaces.json @@ -682,7 +682,7 @@ ], "source": { "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client.ts", - "lineNumber": 29 + "lineNumber": 35 }, "deprecated": false, "children": [ @@ -716,7 +716,7 @@ ], "source": { "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client.ts", - "lineNumber": 34 + "lineNumber": 40 }, "deprecated": false, "children": [ @@ -741,7 +741,7 @@ ], "source": { "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client.ts", - "lineNumber": 34 + "lineNumber": 40 }, "deprecated": false, "isRequired": false @@ -771,7 +771,7 @@ ], "source": { "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client.ts", - "lineNumber": 40 + "lineNumber": 46 }, "deprecated": false, "children": [ @@ -789,7 +789,7 @@ ], "source": { "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client.ts", - "lineNumber": 40 + "lineNumber": 46 }, "deprecated": false, "isRequired": true @@ -827,7 +827,7 @@ ], "source": { "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client.ts", - "lineNumber": 46 + "lineNumber": 52 }, "deprecated": false, "children": [ @@ -851,7 +851,7 @@ ], "source": { "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client.ts", - "lineNumber": 46 + "lineNumber": 52 }, "deprecated": false, "isRequired": true @@ -889,7 +889,7 @@ ], "source": { "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client.ts", - "lineNumber": 53 + "lineNumber": 59 }, "deprecated": false, "children": [ @@ -907,7 +907,7 @@ ], "source": { "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client.ts", - "lineNumber": 53 + "lineNumber": 59 }, "deprecated": false, "isRequired": true @@ -932,7 +932,7 @@ ], "source": { "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client.ts", - "lineNumber": 53 + "lineNumber": 59 }, "deprecated": false, "isRequired": true @@ -954,7 +954,7 @@ ], "source": { "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client.ts", - "lineNumber": 59 + "lineNumber": 65 }, "deprecated": false, "children": [ @@ -972,7 +972,62 @@ ], "source": { "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client.ts", - "lineNumber": 59 + "lineNumber": 65 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [] + }, + { + "parentPluginId": "spaces", + "id": "def-server.ISpacesClient.disableLegacyUrlAliases", + "type": "Function", + "tags": [], + "label": "disableLegacyUrlAliases", + "description": [ + "\nDisables the specified legacy URL aliases." + ], + "signature": [ + "(aliases: ", + { + "pluginId": "spaces", + "scope": "common", + "docId": "kibSpacesPluginApi", + "section": "def-common.LegacyUrlAliasTarget", + "text": "LegacyUrlAliasTarget" + }, + "[]) => Promise" + ], + "source": { + "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client.ts", + "lineNumber": 71 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "spaces", + "id": "def-server.ISpacesClient.disableLegacyUrlAliases.$1", + "type": "Array", + "tags": [], + "label": "aliases", + "description": [ + "the aliases to disable." + ], + "signature": [ + { + "pluginId": "spaces", + "scope": "common", + "docId": "kibSpacesPluginApi", + "section": "def-common.LegacyUrlAliasTarget", + "text": "LegacyUrlAliasTarget" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client.ts", + "lineNumber": 71 }, "deprecated": false, "isRequired": true @@ -983,6 +1038,69 @@ ], "initialIsOpen": false }, + { + "parentPluginId": "spaces", + "id": "def-server.LegacyUrlAliasTarget", + "type": "Interface", + "tags": [], + "label": "LegacyUrlAliasTarget", + "description": [ + "\nClient interface for interacting with legacy URL aliases." + ], + "source": { + "path": "x-pack/plugins/spaces/common/types.ts", + "lineNumber": 57 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "spaces", + "id": "def-server.LegacyUrlAliasTarget.targetSpace", + "type": "string", + "tags": [], + "label": "targetSpace", + "description": [ + "\nThe namespace that the object existed in when it was converted." + ], + "source": { + "path": "x-pack/plugins/spaces/common/types.ts", + "lineNumber": 61 + }, + "deprecated": false + }, + { + "parentPluginId": "spaces", + "id": "def-server.LegacyUrlAliasTarget.targetType", + "type": "string", + "tags": [], + "label": "targetType", + "description": [ + "\nThe type of the object when it was converted." + ], + "source": { + "path": "x-pack/plugins/spaces/common/types.ts", + "lineNumber": 65 + }, + "deprecated": false + }, + { + "parentPluginId": "spaces", + "id": "def-server.LegacyUrlAliasTarget.sourceId", + "type": "string", + "tags": [], + "label": "sourceId", + "description": [ + "\nThe original ID of the object, before it was converted." + ], + "source": { + "path": "x-pack/plugins/spaces/common/types.ts", + "lineNumber": 69 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, { "parentPluginId": "spaces", "id": "def-server.Space", @@ -1203,7 +1321,7 @@ "plugin": "security", "link": { "path": "x-pack/plugins/security/server/plugin.ts", - "lineNumber": 267 + "lineNumber": 266 } }, { @@ -1245,7 +1363,7 @@ "plugin": "securitySolution", "link": { "path": "x-pack/plugins/security_solution/server/plugin.ts", - "lineNumber": 206 + "lineNumber": 190 } }, { @@ -1369,14 +1487,14 @@ "plugin": "security", "link": { "path": "x-pack/plugins/security/server/saved_objects/secure_saved_objects_client_wrapper.ts", - "lineNumber": 1000 + "lineNumber": 1004 } }, { "plugin": "security", "link": { "path": "x-pack/plugins/security/server/saved_objects/secure_saved_objects_client_wrapper.ts", - "lineNumber": 1027 + "lineNumber": 1031 } }, { @@ -2002,28 +2120,28 @@ "plugin": "security", "link": { "path": "x-pack/plugins/security/server/plugin.ts", - "lineNumber": 60 + "lineNumber": 59 } }, { "plugin": "security", "link": { "path": "x-pack/plugins/security/server/plugin.ts", - "lineNumber": 267 + "lineNumber": 266 } }, { "plugin": "security", "link": { "path": "x-pack/plugins/security/server/plugin.ts", - "lineNumber": 285 + "lineNumber": 284 } }, { "plugin": "security", "link": { "path": "x-pack/plugins/security/server/plugin.ts", - "lineNumber": 301 + "lineNumber": 300 } }, { @@ -2086,7 +2204,7 @@ "plugin": "securitySolution", "link": { "path": "x-pack/plugins/security_solution/server/plugin.ts", - "lineNumber": 206 + "lineNumber": 190 } } ] @@ -2502,6 +2620,69 @@ } ], "initialIsOpen": false + }, + { + "parentPluginId": "spaces", + "id": "def-common.LegacyUrlAliasTarget", + "type": "Interface", + "tags": [], + "label": "LegacyUrlAliasTarget", + "description": [ + "\nClient interface for interacting with legacy URL aliases." + ], + "source": { + "path": "x-pack/plugins/spaces/common/types.ts", + "lineNumber": 57 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "spaces", + "id": "def-common.LegacyUrlAliasTarget.targetSpace", + "type": "string", + "tags": [], + "label": "targetSpace", + "description": [ + "\nThe namespace that the object existed in when it was converted." + ], + "source": { + "path": "x-pack/plugins/spaces/common/types.ts", + "lineNumber": 61 + }, + "deprecated": false + }, + { + "parentPluginId": "spaces", + "id": "def-common.LegacyUrlAliasTarget.targetType", + "type": "string", + "tags": [], + "label": "targetType", + "description": [ + "\nThe type of the object when it was converted." + ], + "source": { + "path": "x-pack/plugins/spaces/common/types.ts", + "lineNumber": 65 + }, + "deprecated": false + }, + { + "parentPluginId": "spaces", + "id": "def-common.LegacyUrlAliasTarget.sourceId", + "type": "string", + "tags": [], + "label": "sourceId", + "description": [ + "\nThe original ID of the object, before it was converted." + ], + "source": { + "path": "x-pack/plugins/spaces/common/types.ts", + "lineNumber": 69 + }, + "deprecated": false + } + ], + "initialIsOpen": false } ], "enums": [], diff --git a/api_docs/spaces.mdx b/api_docs/spaces.mdx index 197fe460b47d3..9f724afd37a6e 100644 --- a/api_docs/spaces.mdx +++ b/api_docs/spaces.mdx @@ -8,18 +8,17 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'spaces'] warning: 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. --- - import spacesObj from './spaces.json'; +This plugin provides the Spaces feature, which allows saved objects to be organized into meaningful categories. - - +Contact [Platform Security](https://github.com/orgs/elastic/teams/kibana-security) for questions regarding this plugin. **Code health stats** | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 96 | 0 | 0 | 0 | +| 106 | 0 | 0 | 0 | ## Client diff --git a/api_docs/spaces_oss.json b/api_docs/spaces_oss.json index 55ccf4a02a9dd..67aeda20dc86d 100644 --- a/api_docs/spaces_oss.json +++ b/api_docs/spaces_oss.json @@ -15,7 +15,7 @@ ], "source": { "path": "src/plugins/spaces_oss/public/api.ts", - "lineNumber": 250 + "lineNumber": 254 }, "deprecated": false, "children": [ @@ -33,7 +33,7 @@ ], "source": { "path": "src/plugins/spaces_oss/public/api.ts", - "lineNumber": 257 + "lineNumber": 261 }, "deprecated": false }, @@ -48,7 +48,7 @@ ], "source": { "path": "src/plugins/spaces_oss/public/api.ts", - "lineNumber": 261 + "lineNumber": 265 }, "deprecated": false }, @@ -63,7 +63,7 @@ ], "source": { "path": "src/plugins/spaces_oss/public/api.ts", - "lineNumber": 265 + "lineNumber": 269 }, "deprecated": false }, @@ -78,7 +78,7 @@ ], "source": { "path": "src/plugins/spaces_oss/public/api.ts", - "lineNumber": 269 + "lineNumber": 273 }, "deprecated": false } @@ -221,10 +221,10 @@ "tags": [], "label": "changeSpacesHandler", "description": [ - "\nOptional handler that is called when the user has saved changes and there are spaces to be added to and/or removed from the object. If\nthis is not defined, a default handler will be used that calls `/api/spaces/_update_objects_spaces` and displays a toast indicating\nwhat occurred." + "\nOptional handler that is called when the user has saved changes and there are spaces to be added to and/or removed from the object and\nits relatives. If this is not defined, a default handler will be used that calls `/api/spaces/_update_objects_spaces` and displays a\ntoast indicating what occurred." ], "signature": [ - "((spacesToAdd: string[], spacesToRemove: string[]) => Promise) | undefined" + "((objects: { type: string; id: string; }[], spacesToAdd: string[], spacesToRemove: string[]) => Promise) | undefined" ], "source": { "path": "src/plugins/spaces_oss/public/api.ts", @@ -239,14 +239,14 @@ "tags": [], "label": "onUpdate", "description": [ - "\nOptional callback when the target object is updated." + "\nOptional callback when the target object and its relatives are updated." ], "signature": [ - "(() => void) | undefined" + "((updatedObjects: { type: string; id: string; }[]) => void) | undefined" ], "source": { "path": "src/plugins/spaces_oss/public/api.ts", - "lineNumber": 179 + "lineNumber": 183 }, "deprecated": false }, @@ -264,7 +264,7 @@ ], "source": { "path": "src/plugins/spaces_oss/public/api.ts", - "lineNumber": 183 + "lineNumber": 187 }, "deprecated": false } @@ -282,7 +282,7 @@ ], "source": { "path": "src/plugins/spaces_oss/public/api.ts", - "lineNumber": 189 + "lineNumber": 193 }, "deprecated": false, "children": [ @@ -297,7 +297,7 @@ ], "source": { "path": "src/plugins/spaces_oss/public/api.ts", - "lineNumber": 193 + "lineNumber": 197 }, "deprecated": false }, @@ -312,7 +312,7 @@ ], "source": { "path": "src/plugins/spaces_oss/public/api.ts", - "lineNumber": 197 + "lineNumber": 201 }, "deprecated": false }, @@ -330,7 +330,7 @@ ], "source": { "path": "src/plugins/spaces_oss/public/api.ts", - "lineNumber": 201 + "lineNumber": 205 }, "deprecated": false }, @@ -348,7 +348,7 @@ ], "source": { "path": "src/plugins/spaces_oss/public/api.ts", - "lineNumber": 207 + "lineNumber": 211 }, "deprecated": false }, @@ -366,7 +366,7 @@ ], "source": { "path": "src/plugins/spaces_oss/public/api.ts", - "lineNumber": 213 + "lineNumber": 217 }, "deprecated": false }, @@ -384,7 +384,7 @@ ], "source": { "path": "src/plugins/spaces_oss/public/api.ts", - "lineNumber": 219 + "lineNumber": 223 }, "deprecated": false } @@ -402,7 +402,7 @@ ], "source": { "path": "src/plugins/spaces_oss/public/api.ts", - "lineNumber": 275 + "lineNumber": 279 }, "deprecated": false, "children": [ @@ -420,7 +420,7 @@ ], "source": { "path": "src/plugins/spaces_oss/public/api.ts", - "lineNumber": 277 + "lineNumber": 281 }, "deprecated": false }, @@ -438,7 +438,7 @@ ], "source": { "path": "src/plugins/spaces_oss/public/api.ts", - "lineNumber": 280 + "lineNumber": 284 }, "deprecated": false }, @@ -456,7 +456,7 @@ ], "source": { "path": "src/plugins/spaces_oss/public/api.ts", - "lineNumber": 283 + "lineNumber": 287 }, "deprecated": false }, @@ -474,7 +474,25 @@ ], "source": { "path": "src/plugins/spaces_oss/public/api.ts", - "lineNumber": 290 + "lineNumber": 294 + }, + "deprecated": false + }, + { + "parentPluginId": "spacesOss", + "id": "def-public.SpaceAvatarProps.isDisabled", + "type": "CompoundType", + "tags": [], + "label": "isDisabled", + "description": [ + "\nWhether or not to render the avatar in a disabled state.\n\nDefault value is false." + ], + "signature": [ + "boolean | undefined" + ], + "source": { + "path": "src/plugins/spaces_oss/public/api.ts", + "lineNumber": 301 }, "deprecated": false } @@ -492,7 +510,7 @@ ], "source": { "path": "src/plugins/spaces_oss/public/api.ts", - "lineNumber": 225 + "lineNumber": 229 }, "deprecated": false, "children": [ @@ -510,7 +528,7 @@ ], "source": { "path": "src/plugins/spaces_oss/public/api.ts", - "lineNumber": 229 + "lineNumber": 233 }, "deprecated": false }, @@ -528,7 +546,7 @@ ], "source": { "path": "src/plugins/spaces_oss/public/api.ts", - "lineNumber": 236 + "lineNumber": 240 }, "deprecated": false }, @@ -546,7 +564,7 @@ ], "source": { "path": "src/plugins/spaces_oss/public/api.ts", - "lineNumber": 244 + "lineNumber": 248 }, "deprecated": false } diff --git a/api_docs/spaces_oss.mdx b/api_docs/spaces_oss.mdx index b36b0b4c19aff..fa7433a203333 100644 --- a/api_docs/spaces_oss.mdx +++ b/api_docs/spaces_oss.mdx @@ -8,18 +8,17 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'spacesOss'] warning: 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. --- - import spacesOssObj from './spaces_oss.json'; +This plugin exposes a limited set of spaces functionality to OSS plugins. - - +Contact [Platform Security](https://github.com/orgs/elastic/teams/kibana-security) for questions regarding this plugin. **Code health stats** | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 71 | 0 | 5 | 0 | +| 72 | 0 | 5 | 0 | ## Client diff --git a/api_docs/stack_alerts.mdx b/api_docs/stack_alerts.mdx index eefe0a2dc76fe..78437b53630fa 100644 --- a/api_docs/stack_alerts.mdx +++ b/api_docs/stack_alerts.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'stackAlerts'] warning: 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. --- - import stackAlertsObj from './stack_alerts.json'; diff --git a/api_docs/task_manager.json b/api_docs/task_manager.json index 34f16e8ad309b..f64f8b5461bcc 100644 --- a/api_docs/task_manager.json +++ b/api_docs/task_manager.json @@ -185,7 +185,7 @@ ], "source": { "path": "x-pack/plugins/task_manager/server/plugin.ts", - "lineNumber": 113 + "lineNumber": 111 }, "deprecated": false, "children": [ @@ -207,7 +207,7 @@ ], "source": { "path": "x-pack/plugins/task_manager/server/plugin.ts", - "lineNumber": 113 + "lineNumber": 111 }, "deprecated": false, "isRequired": true diff --git a/api_docs/task_manager.mdx b/api_docs/task_manager.mdx index 5c6d5b3d08ba4..71c2961300c5e 100644 --- a/api_docs/task_manager.mdx +++ b/api_docs/task_manager.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'taskManager'] warning: 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. --- - import taskManagerObj from './task_manager.json'; diff --git a/api_docs/telemetry.mdx b/api_docs/telemetry.mdx index f8d632c0d9708..b30d876841e6c 100644 --- a/api_docs/telemetry.mdx +++ b/api_docs/telemetry.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'telemetry'] warning: 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. --- - import telemetryObj from './telemetry.json'; diff --git a/api_docs/telemetry_collection_manager.mdx b/api_docs/telemetry_collection_manager.mdx index 749ec3ba2bd71..6589f18a49c32 100644 --- a/api_docs/telemetry_collection_manager.mdx +++ b/api_docs/telemetry_collection_manager.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'telemetryCollectionManager'] warning: 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. --- - import telemetryCollectionManagerObj from './telemetry_collection_manager.json'; diff --git a/api_docs/telemetry_collection_xpack.mdx b/api_docs/telemetry_collection_xpack.mdx index 53914260b037f..65154e792d98b 100644 --- a/api_docs/telemetry_collection_xpack.mdx +++ b/api_docs/telemetry_collection_xpack.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'telemetryCollectionXpack'] warning: 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. --- - import telemetryCollectionXpackObj from './telemetry_collection_xpack.json'; diff --git a/api_docs/telemetry_management_section.mdx b/api_docs/telemetry_management_section.mdx index 71831a66284fc..a24305809ffc0 100644 --- a/api_docs/telemetry_management_section.mdx +++ b/api_docs/telemetry_management_section.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'telemetryManagementSection'] warning: 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. --- - import telemetryManagementSectionObj from './telemetry_management_section.json'; diff --git a/api_docs/timelines.json b/api_docs/timelines.json index 570c34d5271de..09ec9db3f9b4f 100644 --- a/api_docs/timelines.json +++ b/api_docs/timelines.json @@ -1,6 +1,2143 @@ { "id": "timelines", "client": { + "classes": [], + "functions": [ + { + "parentPluginId": "timelines", + "id": "def-public.addFieldToTimelineColumns", + "type": "Function", + "tags": [], + "label": "addFieldToTimelineColumns", + "description": [], + "signature": [ + "({ browserFields, dispatch, result, timelineId, defaultsHeader, }: AddFieldToTimelineColumnsParams) => void" + ], + "source": { + "path": "x-pack/plugins/timelines/public/components/drag_and_drop/helpers.ts", + "lineNumber": 160 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.addFieldToTimelineColumns.$1", + "type": "Object", + "tags": [], + "label": "{\n browserFields,\n dispatch,\n result,\n timelineId,\n defaultsHeader,\n}", + "description": [], + "signature": [ + "AddFieldToTimelineColumnsParams" + ], + "source": { + "path": "x-pack/plugins/timelines/public/components/drag_and_drop/helpers.ts", + "lineNumber": 160 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.arrayIndexToAriaIndex", + "type": "Function", + "tags": [], + "label": "arrayIndexToAriaIndex", + "description": [ + "Converts an array index, which starts at zero, to an aria index, which starts at one" + ], + "signature": [ + "(arrayIndex: number) => number" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 52 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.arrayIndexToAriaIndex.$1", + "type": "number", + "tags": [], + "label": "arrayIndex", + "description": [], + "signature": [ + "number" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 52 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.elementOrChildrenHasFocus", + "type": "Function", + "tags": [], + "label": "elementOrChildrenHasFocus", + "description": [ + "Returns `true` when the element, or one of it's children has focus" + ], + "signature": [ + "(element: HTMLElement | null | undefined) => boolean" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 649 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.elementOrChildrenHasFocus.$1", + "type": "CompoundType", + "tags": [], + "label": "element", + "description": [], + "signature": [ + "HTMLElement | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 649 + }, + "deprecated": false, + "isRequired": false + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.focusColumn", + "type": "Function", + "tags": [], + "label": "focusColumn", + "description": [ + "\nSIDE EFFECT: mutates the DOM by focusing the specified column\nreturns the `aria-colindex` of the newly-focused column" + ], + "signature": [ + "({ colindexAttribute, containerElement, ariaColindex, ariaRowindex, rowindexAttribute, }: { colindexAttribute: string; containerElement: Element | null; ariaColindex: number; ariaRowindex: number; rowindexAttribute: string; }) => FocusColumnResult" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 246 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.focusColumn.$1.colindexAttributecontainerElementariaColindexariaRowindexrowindexAttribute", + "type": "Object", + "tags": [], + "label": "{\n colindexAttribute,\n containerElement,\n ariaColindex,\n ariaRowindex,\n rowindexAttribute,\n}", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 252 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.focusColumn.$1.colindexAttributecontainerElementariaColindexariaRowindexrowindexAttribute.colindexAttribute", + "type": "string", + "tags": [], + "label": "colindexAttribute", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 253 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.focusColumn.$1.colindexAttributecontainerElementariaColindexariaRowindexrowindexAttribute.containerElement", + "type": "CompoundType", + "tags": [], + "label": "containerElement", + "description": [], + "signature": [ + "Element | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 254 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.focusColumn.$1.colindexAttributecontainerElementariaColindexariaRowindexrowindexAttribute.ariaColindex", + "type": "number", + "tags": [], + "label": "ariaColindex", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 255 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.focusColumn.$1.colindexAttributecontainerElementariaColindexariaRowindexrowindexAttribute.ariaRowindex", + "type": "number", + "tags": [], + "label": "ariaRowindex", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 256 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.focusColumn.$1.colindexAttributecontainerElementariaColindexariaRowindexrowindexAttribute.rowindexAttribute", + "type": "string", + "tags": [], + "label": "rowindexAttribute", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 257 + }, + "deprecated": false + } + ] + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.getFocusedAriaColindexCell", + "type": "Function", + "tags": [], + "label": "getFocusedAriaColindexCell", + "description": [ + "\nReturns the focused cell for tables that use `aria-colindex`" + ], + "signature": [ + "({ containerElement, tableClassName, }: { containerElement: HTMLElement | null; tableClassName: string; }) => HTMLDivElement | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 831 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.getFocusedAriaColindexCell.$1.containerElementtableClassName", + "type": "Object", + "tags": [], + "label": "{\n containerElement,\n tableClassName,\n}", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 834 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.getFocusedAriaColindexCell.$1.containerElementtableClassName.containerElement", + "type": "CompoundType", + "tags": [], + "label": "containerElement", + "description": [], + "signature": [ + "HTMLElement | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 835 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.getFocusedAriaColindexCell.$1.containerElementtableClassName.tableClassName", + "type": "string", + "tags": [], + "label": "tableClassName", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 836 + }, + "deprecated": false + } + ] + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.getFocusedDataColindexCell", + "type": "Function", + "tags": [], + "label": "getFocusedDataColindexCell", + "description": [ + "\nReturns the focused cell for tables that use `data-colindex`" + ], + "signature": [ + "({ containerElement, tableClassName, }: { containerElement: HTMLElement | null; tableClassName: string; }) => HTMLDivElement | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 845 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.getFocusedDataColindexCell.$1.containerElementtableClassName", + "type": "Object", + "tags": [], + "label": "{\n containerElement,\n tableClassName,\n}", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 848 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.getFocusedDataColindexCell.$1.containerElementtableClassName.containerElement", + "type": "CompoundType", + "tags": [], + "label": "containerElement", + "description": [], + "signature": [ + "HTMLElement | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 849 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.getFocusedDataColindexCell.$1.containerElementtableClassName.tableClassName", + "type": "string", + "tags": [], + "label": "tableClassName", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 850 + }, + "deprecated": false + } + ] + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.getNotesContainerClassName", + "type": "Function", + "tags": [], + "label": "getNotesContainerClassName", + "description": [], + "signature": [ + "(ariaRowindex: number) => string" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 299 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.getNotesContainerClassName.$1", + "type": "number", + "tags": [], + "label": "ariaRowindex", + "description": [], + "signature": [ + "number" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 299 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.getRowRendererClassName", + "type": "Function", + "tags": [], + "label": "getRowRendererClassName", + "description": [], + "signature": [ + "(ariaRowindex: number) => string" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 296 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.getRowRendererClassName.$1", + "type": "number", + "tags": [], + "label": "ariaRowindex", + "description": [], + "signature": [ + "number" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 296 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.getTableSkipFocus", + "type": "Function", + "tags": [], + "label": "getTableSkipFocus", + "description": [ + "\nThis function, which works with tables that use the `aria-colindex` or\n`data-colindex` attributes, examines the focus state of the table, and\nreturns a `SkipFocus` enumeration.\n\nThe `SkipFocus` return value indicates whether the caller should skip focus\nto \"before\" the table, \"after\" the table, or take no action, and let the\nbrowser's \"natural\" focus management manage focus." + ], + "signature": [ + "({ containerElement, getFocusedCell, shiftKey, tableHasFocus, tableClassName, }: { containerElement: HTMLElement | null; getFocusedCell: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.GetFocusedCell", + "text": "GetFocusedCell" + }, + "; shiftKey: boolean; tableHasFocus: (containerElement: HTMLElement | null) => boolean; tableClassName: string; }) => ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SkipFocus", + "text": "SkipFocus" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 791 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.getTableSkipFocus.$1.containerElementgetFocusedCellshiftKeytableHasFocustableClassName", + "type": "Object", + "tags": [], + "label": "{\n containerElement,\n getFocusedCell,\n shiftKey,\n tableHasFocus,\n tableClassName,\n}", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 797 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.getTableSkipFocus.$1.containerElementgetFocusedCellshiftKeytableHasFocustableClassName.containerElement", + "type": "CompoundType", + "tags": [], + "label": "containerElement", + "description": [], + "signature": [ + "HTMLElement | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 798 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.getTableSkipFocus.$1.containerElementgetFocusedCellshiftKeytableHasFocustableClassName.getFocusedCell", + "type": "Function", + "tags": [], + "label": "getFocusedCell", + "description": [], + "signature": [ + "({ containerElement, tableClassName, }: { containerElement: HTMLElement | null; tableClassName: string; }) => HTMLDivElement | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 799 + }, + "deprecated": false, + "returnComment": [], + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.__0", + "type": "Object", + "tags": [], + "label": "__0", + "description": [], + "signature": [ + "{ containerElement: HTMLElement | null; tableClassName: string; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 767 + }, + "deprecated": false + } + ] + }, + { + "parentPluginId": "timelines", + "id": "def-public.getTableSkipFocus.$1.containerElementgetFocusedCellshiftKeytableHasFocustableClassName.shiftKey", + "type": "boolean", + "tags": [], + "label": "shiftKey", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 800 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.getTableSkipFocus.$1.containerElementgetFocusedCellshiftKeytableHasFocustableClassName.tableHasFocus", + "type": "Function", + "tags": [], + "label": "tableHasFocus", + "description": [], + "signature": [ + "(containerElement: HTMLElement | null) => boolean" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 801 + }, + "deprecated": false, + "returnComment": [], + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.containerElement", + "type": "CompoundType", + "tags": [], + "label": "containerElement", + "description": [], + "signature": [ + "HTMLElement | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 801 + }, + "deprecated": false + } + ] + }, + { + "parentPluginId": "timelines", + "id": "def-public.getTableSkipFocus.$1.containerElementgetFocusedCellshiftKeytableHasFocustableClassName.tableClassName", + "type": "string", + "tags": [], + "label": "tableClassName", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 802 + }, + "deprecated": false + } + ] + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.getTimelineIdFromColumnDroppableId", + "type": "Function", + "tags": [], + "label": "getTimelineIdFromColumnDroppableId", + "description": [], + "signature": [ + "(droppableId: string) => string" + ], + "source": { + "path": "x-pack/plugins/timelines/public/components/drag_and_drop/helpers.ts", + "lineNumber": 210 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.getTimelineIdFromColumnDroppableId.$1", + "type": "string", + "tags": [], + "label": "droppableId", + "description": [], + "signature": [ + "string" + ], + "source": { + "path": "x-pack/plugins/timelines/public/components/drag_and_drop/helpers.ts", + "lineNumber": 210 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.handleSkipFocus", + "type": "Function", + "tags": [], + "label": "handleSkipFocus", + "description": [ + "\nIf the value of `skipFocus` is `SKIP_FOCUS_BACKWARDS` or `SKIP_FOCUS_FORWARD`\nthis function will invoke the provided `onSkipFocusBackwards` or\n`onSkipFocusForward` functions respectively.\n\nIf `skipFocus` is `SKIP_FOCUS_NOOP`, the `onSkipFocusBackwards` and\n`onSkipFocusForward` functions will not be invoked." + ], + "signature": [ + "({ onSkipFocusBackwards, onSkipFocusForward, skipFocus, }: { onSkipFocusBackwards: () => void; onSkipFocusForward: () => void; skipFocus: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SkipFocus", + "text": "SkipFocus" + }, + "; }) => void" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 701 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.handleSkipFocus.$1.onSkipFocusBackwardsonSkipFocusForwardskipFocus", + "type": "Object", + "tags": [], + "label": "{\n onSkipFocusBackwards,\n onSkipFocusForward,\n skipFocus,\n}", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 705 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.handleSkipFocus.$1.onSkipFocusBackwardsonSkipFocusForwardskipFocus.onSkipFocusBackwards", + "type": "Function", + "tags": [], + "label": "onSkipFocusBackwards", + "description": [], + "signature": [ + "() => void" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 706 + }, + "deprecated": false, + "returnComment": [], + "children": [] + }, + { + "parentPluginId": "timelines", + "id": "def-public.handleSkipFocus.$1.onSkipFocusBackwardsonSkipFocusForwardskipFocus.onSkipFocusForward", + "type": "Function", + "tags": [], + "label": "onSkipFocusForward", + "description": [], + "signature": [ + "() => void" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 707 + }, + "deprecated": false, + "returnComment": [], + "children": [] + }, + { + "parentPluginId": "timelines", + "id": "def-public.handleSkipFocus.$1.onSkipFocusBackwardsonSkipFocusForwardskipFocus.skipFocus", + "type": "CompoundType", + "tags": [], + "label": "skipFocus", + "description": [], + "signature": [ + "\"SKIP_FOCUS_BACKWARDS\" | \"SKIP_FOCUS_FORWARD\" | \"SKIP_FOCUS_NOOP\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 708 + }, + "deprecated": false + } + ] + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.isArrowDownOrArrowUp", + "type": "Function", + "tags": [], + "label": "isArrowDownOrArrowUp", + "description": [ + "Returns `true` if the down or up arrow was pressed" + ], + "signature": [ + "(event: React.KeyboardEvent) => boolean" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 65 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.isArrowDownOrArrowUp.$1", + "type": "Object", + "tags": [], + "label": "event", + "description": [], + "signature": [ + "React.KeyboardEvent" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 65 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.isArrowUp", + "type": "Function", + "tags": [], + "label": "isArrowUp", + "description": [ + "Returns `true` if the up arrow key was pressed" + ], + "signature": [ + "(event: React.KeyboardEvent) => boolean" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 62 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.isArrowUp.$1", + "type": "Object", + "tags": [], + "label": "event", + "description": [], + "signature": [ + "React.KeyboardEvent" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 62 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.isEscape", + "type": "Function", + "tags": [], + "label": "isEscape", + "description": [ + "Returns `true` if the escape key was pressed" + ], + "signature": [ + "(event: React.KeyboardEvent) => boolean" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 76 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.isEscape.$1", + "type": "Object", + "tags": [], + "label": "event", + "description": [], + "signature": [ + "React.KeyboardEvent" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 76 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.isTab", + "type": "Function", + "tags": [], + "label": "isTab", + "description": [ + "Returns `true` if the tab key was pressed" + ], + "signature": [ + "(event: React.KeyboardEvent) => boolean" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 98 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.isTab.$1", + "type": "Object", + "tags": [], + "label": "event", + "description": [], + "signature": [ + "React.KeyboardEvent" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 98 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.onFocusReFocusDraggable", + "type": "Function", + "tags": [], + "label": "onFocusReFocusDraggable", + "description": [ + "\nAn `onFocus` event handler that focuses the first child draggable\nkeyboard handler" + ], + "signature": [ + "(event: React.FocusEvent) => void | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 645 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.onFocusReFocusDraggable.$1", + "type": "Object", + "tags": [], + "label": "event", + "description": [], + "signature": [ + "React.FocusEvent" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 645 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.onKeyDownFocusHandler", + "type": "Function", + "tags": [], + "label": "onKeyDownFocusHandler", + "description": [ + "\nThis function adds keyboard accessability to any `containerElement` that\nrenders its rows with support for `aria-colindex` and `aria-rowindex`.\n\nTo use this function, invoke it in the `onKeyDown` handler of the specified\n`containerElement`.\n\nSee the `Keyboard Support` section of\nhttps://www.w3.org/TR/wai-aria-practices-1.1/examples/grid/dataGrids.html\nfor details of the behavior." + ], + "signature": [ + "({ colindexAttribute, containerElement, event, maxAriaColindex, maxAriaRowindex, onColumnFocused, rowindexAttribute, }: { colindexAttribute: string; containerElement: HTMLDivElement | null; event: React.KeyboardEvent; maxAriaColindex: number; maxAriaRowindex: number; onColumnFocused: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.OnColumnFocused", + "text": "OnColumnFocused" + }, + "; rowindexAttribute: string; }) => void" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 563 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.onKeyDownFocusHandler.$1.colindexAttributecontainerElementeventmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute", + "type": "Object", + "tags": [], + "label": "{\n colindexAttribute,\n containerElement,\n event,\n maxAriaColindex,\n maxAriaRowindex,\n onColumnFocused,\n rowindexAttribute,\n}", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 571 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.onKeyDownFocusHandler.$1.colindexAttributecontainerElementeventmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute.colindexAttribute", + "type": "string", + "tags": [], + "label": "colindexAttribute", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 572 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.onKeyDownFocusHandler.$1.colindexAttributecontainerElementeventmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute.containerElement", + "type": "CompoundType", + "tags": [], + "label": "containerElement", + "description": [], + "signature": [ + "HTMLDivElement | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 573 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.onKeyDownFocusHandler.$1.colindexAttributecontainerElementeventmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute.event", + "type": "Object", + "tags": [], + "label": "event", + "description": [], + "signature": [ + "React.KeyboardEvent" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 574 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.onKeyDownFocusHandler.$1.colindexAttributecontainerElementeventmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute.maxAriaColindex", + "type": "number", + "tags": [], + "label": "maxAriaColindex", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 575 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.onKeyDownFocusHandler.$1.colindexAttributecontainerElementeventmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute.maxAriaRowindex", + "type": "number", + "tags": [], + "label": "maxAriaRowindex", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 576 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.onKeyDownFocusHandler.$1.colindexAttributecontainerElementeventmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute.onColumnFocused", + "type": "Function", + "tags": [], + "label": "onColumnFocused", + "description": [], + "signature": [ + "({ newFocusedColumn, newFocusedColumnAriaColindex, }: { newFocusedColumn: HTMLDivElement | null; newFocusedColumnAriaColindex: number | null; }) => void" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 577 + }, + "deprecated": false, + "returnComment": [], + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.__0", + "type": "Object", + "tags": [], + "label": "__0", + "description": [], + "signature": [ + "{ newFocusedColumn: HTMLDivElement | null; newFocusedColumnAriaColindex: number | null; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 288 + }, + "deprecated": false + } + ] + }, + { + "parentPluginId": "timelines", + "id": "def-public.onKeyDownFocusHandler.$1.colindexAttributecontainerElementeventmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute.rowindexAttribute", + "type": "string", + "tags": [], + "label": "rowindexAttribute", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 578 + }, + "deprecated": false + } + ] + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.skipFocusInContainerTo", + "type": "Function", + "tags": [], + "label": "skipFocusInContainerTo", + "description": [ + "\nThis function has a side effect. It focuses the first element with a\nmatching `className` in the `containerElement`." + ], + "signature": [ + "({ containerElement, className, }: { containerElement: HTMLElement | null; className: string; }) => void | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 668 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.skipFocusInContainerTo.$1.containerElementclassName", + "type": "Object", + "tags": [], + "label": "{\n containerElement,\n className,\n}", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 671 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.skipFocusInContainerTo.$1.containerElementclassName.containerElement", + "type": "CompoundType", + "tags": [], + "label": "containerElement", + "description": [], + "signature": [ + "HTMLElement | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 672 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.skipFocusInContainerTo.$1.containerElementclassName.className", + "type": "string", + "tags": [], + "label": "className", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 673 + }, + "deprecated": false + } + ] + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.stopPropagationAndPreventDefault", + "type": "Function", + "tags": [], + "label": "stopPropagationAndPreventDefault", + "description": [ + "\nThis function has side effects: It stops propagation of the provided\n`KeyboardEvent` and prevents the browser's default behavior." + ], + "signature": [ + "(event: React.KeyboardEvent) => void" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 547 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.stopPropagationAndPreventDefault.$1", + "type": "Object", + "tags": [], + "label": "event", + "description": [], + "signature": [ + "React.KeyboardEvent" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 547 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.tGridReducer", + "type": "Function", + "tags": [], + "label": "tGridReducer", + "description": [ + "The reducer for all timeline actions" + ], + "signature": [ + "(state: ", + { + "pluginId": "timelines", + "scope": "public", + "docId": "kibTimelinesPluginApi", + "section": "def-public.TimelineState", + "text": "TimelineState" + }, + " | undefined, action: { type: any; }) => ", + { + "pluginId": "timelines", + "scope": "public", + "docId": "kibTimelinesPluginApi", + "section": "def-public.TimelineState", + "text": "TimelineState" + } + ], + "source": { + "path": "x-pack/plugins/timelines/public/store/t_grid/reducer.ts", + "lineNumber": 53 + }, + "deprecated": false, + "returnComment": [], + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.state", + "type": "Uncategorized", + "tags": [], + "label": "state", + "description": [], + "signature": [ + "PassedS" + ], + "source": { + "path": "node_modules/typescript-fsa-reducers/dist/index.d.ts", + "lineNumber": 17 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.action", + "type": "Object", + "tags": [], + "label": "action", + "description": [], + "signature": [ + "{ type: any; }" + ], + "source": { + "path": "node_modules/typescript-fsa-reducers/dist/index.d.ts", + "lineNumber": 17 + }, + "deprecated": false + } + ], + "initialIsOpen": false + } + ], + "interfaces": [ + { + "parentPluginId": "timelines", + "id": "def-public.CursorType", + "type": "Interface", + "tags": [], + "label": "CursorType", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 16 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.CursorType.value", + "type": "CompoundType", + "tags": [], + "label": "value", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 17 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.CursorType.tiebreaker", + "type": "CompoundType", + "tags": [], + "label": "tiebreaker", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 18 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.Inspect", + "type": "Interface", + "tags": [], + "label": "Inspect", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 21 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.Inspect.dsl", + "type": "Array", + "tags": [], + "label": "dsl", + "description": [], + "signature": [ + "string[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 22 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.PaginationInputPaginated", + "type": "Interface", + "tags": [], + "label": "PaginationInputPaginated", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 44 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.PaginationInputPaginated.activePage", + "type": "number", + "tags": [], + "label": "activePage", + "description": [ + "The activePage parameter defines the page of results you want to fetch" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 46 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.PaginationInputPaginated.cursorStart", + "type": "number", + "tags": [], + "label": "cursorStart", + "description": [ + "The cursorStart parameter defines the start of the results to be displayed" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 48 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.PaginationInputPaginated.fakePossibleCount", + "type": "number", + "tags": [], + "label": "fakePossibleCount", + "description": [ + "The fakePossibleCount parameter determines the total count in order to show 5 additional pages" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 50 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.PaginationInputPaginated.querySize", + "type": "number", + "tags": [], + "label": "querySize", + "description": [ + "The querySize parameter is the number of items to be returned" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 52 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.SortField", + "type": "Interface", + "tags": [], + "label": "SortField", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SortField", + "text": "SortField" + }, + "" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 30 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.SortField.field", + "type": "Uncategorized", + "tags": [], + "label": "field", + "description": [], + "signature": [ + "Field" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 31 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.SortField.direction", + "type": "Enum", + "tags": [], + "label": "direction", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Direction", + "text": "Direction" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 32 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.TimelineState", + "type": "Interface", + "tags": [], + "label": "TimelineState", + "description": [ + "The state of all timelines is stored here" + ], + "source": { + "path": "x-pack/plugins/timelines/public/store/t_grid/types.ts", + "lineNumber": 38 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.TimelineState.timelineById", + "type": "Object", + "tags": [], + "label": "timelineById", + "description": [], + "signature": [ + "TimelineById" + ], + "source": { + "path": "x-pack/plugins/timelines/public/store/t_grid/types.ts", + "lineNumber": 39 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.TimerangeInput", + "type": "Interface", + "tags": [], + "label": "TimerangeInput", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 35 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.TimerangeInput.interval", + "type": "string", + "tags": [], + "label": "interval", + "description": [ + "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." + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 37 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.TimerangeInput.to", + "type": "string", + "tags": [], + "label": "to", + "description": [ + "The end of the timerange" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 39 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.TimerangeInput.from", + "type": "string", + "tags": [], + "label": "from", + "description": [ + "The beginning of the timerange" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 41 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.TotalValue", + "type": "Interface", + "tags": [], + "label": "TotalValue", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 11 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.TotalValue.value", + "type": "number", + "tags": [], + "label": "value", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 12 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.TotalValue.relation", + "type": "string", + "tags": [], + "label": "relation", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 13 + }, + "deprecated": false + } + ], + "initialIsOpen": false + } + ], + "enums": [ + { + "parentPluginId": "timelines", + "id": "def-public.Direction", + "type": "Enum", + "tags": [], + "label": "Direction", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 25 + }, + "deprecated": false, + "initialIsOpen": false + } + ], + "misc": [ + { + "parentPluginId": "timelines", + "id": "def-public.ARIA_COLINDEX_ATTRIBUTE", + "type": "string", + "tags": [], + "label": "ARIA_COLINDEX_ATTRIBUTE", + "description": [ + "\nThe name of the ARIA attribute representing a column, used in conjunction with\nthe ARIA: grid role https://www.w3.org/TR/wai-aria-practices-1.1/examples/grid/dataGrids.html" + ], + "signature": [ + "\"aria-colindex\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 20 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.ARIA_ROWINDEX_ATTRIBUTE", + "type": "string", + "tags": [], + "label": "ARIA_ROWINDEX_ATTRIBUTE", + "description": [ + "\nThe name of the ARIA attribute representing a row, used in conjunction with\nthe ARIA: grid role https://www.w3.org/TR/wai-aria-practices-1.1/examples/grid/dataGrids.html" + ], + "signature": [ + "\"aria-rowindex\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 35 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.DATA_COLINDEX_ATTRIBUTE", + "type": "string", + "tags": [], + "label": "DATA_COLINDEX_ATTRIBUTE", + "description": [ + "\nThis alternative attribute to `aria-colindex` is used to decorate the data\nin existing `EuiTable`s to enable keyboard navigation with minimal\nrefactoring of existing code until we're ready to migrate to `EuiDataGrid`.\nIt may be applied directly to keyboard-focusable elements and thus doesn't\nhave exactly the same semantics as `aria-colindex`." + ], + "signature": [ + "\"data-colindex\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 29 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.DATA_ROWINDEX_ATTRIBUTE", + "type": "string", + "tags": [], + "label": "DATA_ROWINDEX_ATTRIBUTE", + "description": [ + "\nThis alternative attribute to `aria-rowindex` is used to decorate the data\nin existing `EuiTable`s to enable keyboard navigation with minimal\nrefactoring of existing code until we're ready to migrate to `EuiDataGrid`.\nIt's typically applied to `` elements via `EuiTable`'s `rowProps` prop." + ], + "signature": [ + "\"data-rowindex\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 43 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.DocValueFields", + "type": "Type", + "tags": [], + "label": "DocValueFields", + "description": [], + "signature": [ + "SearchDocValueField" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 55 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.FIRST_ARIA_INDEX", + "type": "number", + "tags": [], + "label": "FIRST_ARIA_INDEX", + "description": [ + "`aria-colindex` and `aria-rowindex` start at one" + ], + "signature": [ + "1" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 46 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.OnColumnFocused", + "type": "Type", + "tags": [], + "label": "OnColumnFocused", + "description": [], + "signature": [ + "({ newFocusedColumn, newFocusedColumnAriaColindex, }: { newFocusedColumn: HTMLDivElement | null; newFocusedColumnAriaColindex: number | null; }) => void" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 288 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.TGridModelForTimeline", + "type": "Type", + "tags": [], + "label": "TGridModelForTimeline", + "description": [], + "signature": [ + "{ columns: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ColumnHeaderOptions", + "text": "ColumnHeaderOptions" + }, + "[]; filters?: ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataPluginApi", + "section": "def-common.Filter", + "text": "Filter" + }, + "[] | undefined; title: string; id: string; sort: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SortColumnTimeline", + "text": "SortColumnTimeline" + }, + "[]; version: string | null; isLoading: boolean; savedObjectId: string | null; dateRange: { start: string; end: string; }; deletedEventIds: string[]; excludedRowRendererIds: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + "[]; expandedDetail: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineExpandedDetail", + "text": "TimelineExpandedDetail" + }, + "; graphEventId?: string | undefined; kqlQuery: { filterQuery: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SerializedFilterQuery", + "text": "SerializedFilterQuery" + }, + " | null; }; indexNames: string[]; isSelectAllChecked: boolean; itemsPerPage: number; itemsPerPageOptions: number[]; loadingEventIds: string[]; showCheckboxes: boolean; selectedEventIds: Record; }" + ], + "source": { + "path": "x-pack/plugins/timelines/public/store/t_grid/model.ts", + "lineNumber": 81 + }, + "deprecated": false, + "initialIsOpen": false + } + ], + "objects": [ + { + "parentPluginId": "timelines", + "id": "def-public.tGridActions", + "type": "Object", + "tags": [], + "label": "tGridActions", + "description": [], + "signature": [ + "typeof ", + "x-pack/plugins/timelines/public/store/t_grid/actions" + ], + "source": { + "path": "x-pack/plugins/timelines/public/index.ts", + "lineNumber": 11 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-public.tGridSelectors", + "type": "Object", + "tags": [], + "label": "tGridSelectors", + "description": [], + "signature": [ + "typeof ", + "x-pack/plugins/timelines/public/store/t_grid/selectors" + ], + "source": { + "path": "x-pack/plugins/timelines/public/index.ts", + "lineNumber": 12 + }, + "deprecated": false, + "initialIsOpen": false + } + ], + "start": { + "parentPluginId": "timelines", + "id": "def-public.TimelinesUIStart", + "type": "Interface", + "tags": [], + "label": "TimelinesUIStart", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/public/types.ts", + "lineNumber": 20 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.TimelinesUIStart.getTGrid", + "type": "Function", + "tags": [], + "label": "getTGrid", + "description": [], + "signature": [ + "(props: ", + "GetTGridProps", + ") => React.ReactElement<", + "GetTGridProps", + ", string | ((props: any) => React.ReactElement React.Component)> | null) | (new (props: any) => React.Component)>" + ], + "source": { + "path": "x-pack/plugins/timelines/public/types.ts", + "lineNumber": 21 + }, + "deprecated": false, + "returnComment": [], + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.props", + "type": "Uncategorized", + "tags": [], + "label": "props", + "description": [], + "signature": [ + "T extends \"standalone\" ? TGridStandaloneCompProps : T extends \"embedded\" ? TGridIntegratedCompProps : TGridIntegratedCompProps" + ], + "source": { + "path": "x-pack/plugins/timelines/public/types.ts", + "lineNumber": 22 + }, + "deprecated": false + } + ] + }, + { + "parentPluginId": "timelines", + "id": "def-public.TimelinesUIStart.getTGridReducer", + "type": "Function", + "tags": [], + "label": "getTGridReducer", + "description": [], + "signature": [ + "() => any" + ], + "source": { + "path": "x-pack/plugins/timelines/public/types.ts", + "lineNumber": 25 + }, + "deprecated": false, + "returnComment": [], + "children": [] + }, + { + "parentPluginId": "timelines", + "id": "def-public.TimelinesUIStart.getLoadingPanel", + "type": "Function", + "tags": [], + "label": "getLoadingPanel", + "description": [], + "signature": [ + "(props: ", + "LoadingPanelProps", + ") => React.ReactElement<", + "LoadingPanelProps", + ">" + ], + "source": { + "path": "x-pack/plugins/timelines/public/types.ts", + "lineNumber": 26 + }, + "deprecated": false, + "returnComment": [], + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.props", + "type": "Object", + "tags": [], + "label": "props", + "description": [], + "signature": [ + "LoadingPanelProps" + ], + "source": { + "path": "x-pack/plugins/timelines/public/types.ts", + "lineNumber": 26 + }, + "deprecated": false + } + ] + }, + { + "parentPluginId": "timelines", + "id": "def-public.TimelinesUIStart.getLastUpdated", + "type": "Function", + "tags": [], + "label": "getLastUpdated", + "description": [], + "signature": [ + "(props: ", + "LastUpdatedAtProps", + ") => React.ReactElement<", + "LastUpdatedAtProps", + ">" + ], + "source": { + "path": "x-pack/plugins/timelines/public/types.ts", + "lineNumber": 27 + }, + "deprecated": false, + "returnComment": [], + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.props", + "type": "Object", + "tags": [], + "label": "props", + "description": [], + "signature": [ + "LastUpdatedAtProps" + ], + "source": { + "path": "x-pack/plugins/timelines/public/types.ts", + "lineNumber": 27 + }, + "deprecated": false + } + ] + }, + { + "parentPluginId": "timelines", + "id": "def-public.TimelinesUIStart.getUseAddToTimeline", + "type": "Function", + "tags": [], + "label": "getUseAddToTimeline", + "description": [], + "signature": [ + "() => (props: ", + "UseAddToTimelineProps", + ") => ", + "UseAddToTimeline" + ], + "source": { + "path": "x-pack/plugins/timelines/public/types.ts", + "lineNumber": 28 + }, + "deprecated": false, + "returnComment": [], + "children": [] + }, + { + "parentPluginId": "timelines", + "id": "def-public.TimelinesUIStart.getUseAddToTimelineSensor", + "type": "Function", + "tags": [], + "label": "getUseAddToTimelineSensor", + "description": [], + "signature": [ + "() => (api: ", + "SensorAPI", + ") => void" + ], + "source": { + "path": "x-pack/plugins/timelines/public/types.ts", + "lineNumber": 29 + }, + "deprecated": false, + "returnComment": [], + "children": [] + }, + { + "parentPluginId": "timelines", + "id": "def-public.TimelinesUIStart.getUseDraggableKeyboardWrapper", + "type": "Function", + "tags": [], + "label": "getUseDraggableKeyboardWrapper", + "description": [], + "signature": [ + "() => (props: ", + "UseDraggableKeyboardWrapperProps", + ") => ", + "UseDraggableKeyboardWrapper" + ], + "source": { + "path": "x-pack/plugins/timelines/public/types.ts", + "lineNumber": 30 + }, + "deprecated": false, + "returnComment": [], + "children": [] + }, + { + "parentPluginId": "timelines", + "id": "def-public.TimelinesUIStart.setTGridEmbeddedStore", + "type": "Function", + "tags": [], + "label": "setTGridEmbeddedStore", + "description": [], + "signature": [ + "(store: ", + "Store", + ") => void" + ], + "source": { + "path": "x-pack/plugins/timelines/public/types.ts", + "lineNumber": 33 + }, + "deprecated": false, + "returnComment": [], + "children": [ + { + "parentPluginId": "timelines", + "id": "def-public.store", + "type": "Object", + "tags": [], + "label": "store", + "description": [], + "signature": [ + "Store", + "" + ], + "source": { + "path": "x-pack/plugins/timelines/public/types.ts", + "lineNumber": 33 + }, + "deprecated": false + } + ] + } + ], + "lifecycle": "start", + "initialIsOpen": true + } + }, + "server": { "classes": [], "functions": [], "interfaces": [], @@ -9,123 +2146,20915 @@ "objects": [], "setup": { "parentPluginId": "timelines", - "id": "def-public.TimelinesPluginSetup", + "id": "def-server.TimelinesPluginUI", "type": "Interface", "tags": [], - "label": "TimelinesPluginSetup", + "label": "TimelinesPluginUI", "description": [], "source": { - "path": "x-pack/plugins/timelines/public/types.ts", - "lineNumber": 10 + "path": "x-pack/plugins/timelines/server/types.ts", + "lineNumber": 12 + }, + "deprecated": false, + "children": [], + "lifecycle": "setup", + "initialIsOpen": true + }, + "start": { + "parentPluginId": "timelines", + "id": "def-server.TimelinesPluginStart", + "type": "Interface", + "tags": [], + "label": "TimelinesPluginStart", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/server/types.ts", + "lineNumber": 14 + }, + "deprecated": false, + "children": [], + "lifecycle": "start", + "initialIsOpen": true + } + }, + "common": { + "classes": [], + "functions": [ + { + "parentPluginId": "timelines", + "id": "def-common.ariaIndexToArrayIndex", + "type": "Function", + "tags": [], + "label": "ariaIndexToArrayIndex", + "description": [ + "Converts an aria index, which starts at one, to an array index, which starts at zero" + ], + "signature": [ + "(ariaIndex: number) => number" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 49 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.ariaIndexToArrayIndex.$1", + "type": "number", + "tags": [], + "label": "ariaIndex", + "description": [], + "signature": [ + "number" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 49 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.arrayIndexToAriaIndex", + "type": "Function", + "tags": [], + "label": "arrayIndexToAriaIndex", + "description": [ + "Converts an array index, which starts at zero, to an aria index, which starts at one" + ], + "signature": [ + "(arrayIndex: number) => number" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 52 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.arrayIndexToAriaIndex.$1", + "type": "number", + "tags": [], + "label": "arrayIndex", + "description": [], + "signature": [ + "number" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 52 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.elementOrChildrenHasFocus", + "type": "Function", + "tags": [], + "label": "elementOrChildrenHasFocus", + "description": [ + "Returns `true` when the element, or one of it's children has focus" + ], + "signature": [ + "(element: HTMLElement | null | undefined) => boolean" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 649 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.elementOrChildrenHasFocus.$1", + "type": "CompoundType", + "tags": [], + "label": "element", + "description": [], + "signature": [ + "HTMLElement | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 649 + }, + "deprecated": false, + "isRequired": false + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.focusColumn", + "type": "Function", + "tags": [], + "label": "focusColumn", + "description": [ + "\nSIDE EFFECT: mutates the DOM by focusing the specified column\nreturns the `aria-colindex` of the newly-focused column" + ], + "signature": [ + "({ colindexAttribute, containerElement, ariaColindex, ariaRowindex, rowindexAttribute, }: { colindexAttribute: string; containerElement: Element | null; ariaColindex: number; ariaRowindex: number; rowindexAttribute: string; }) => FocusColumnResult" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 246 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.focusColumn.$1.colindexAttributecontainerElementariaColindexariaRowindexrowindexAttribute", + "type": "Object", + "tags": [], + "label": "{\n colindexAttribute,\n containerElement,\n ariaColindex,\n ariaRowindex,\n rowindexAttribute,\n}", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 252 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.focusColumn.$1.colindexAttributecontainerElementariaColindexariaRowindexrowindexAttribute.colindexAttribute", + "type": "string", + "tags": [], + "label": "colindexAttribute", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 253 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.focusColumn.$1.colindexAttributecontainerElementariaColindexariaRowindexrowindexAttribute.containerElement", + "type": "CompoundType", + "tags": [], + "label": "containerElement", + "description": [], + "signature": [ + "Element | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 254 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.focusColumn.$1.colindexAttributecontainerElementariaColindexariaRowindexrowindexAttribute.ariaColindex", + "type": "number", + "tags": [], + "label": "ariaColindex", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 255 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.focusColumn.$1.colindexAttributecontainerElementariaColindexariaRowindexrowindexAttribute.ariaRowindex", + "type": "number", + "tags": [], + "label": "ariaRowindex", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 256 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.focusColumn.$1.colindexAttributecontainerElementariaColindexariaRowindexrowindexAttribute.rowindexAttribute", + "type": "string", + "tags": [], + "label": "rowindexAttribute", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 257 + }, + "deprecated": false + } + ] + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.focusedCellHasAlwaysOpenHoverContent", + "type": "Function", + "tags": [], + "label": "focusedCellHasAlwaysOpenHoverContent", + "description": [ + "\nReturns `true` when the provided `focusedCell` has always-open hover\ncontent (i.e. a hover menu)\n\nWhen this function returns true, the caller should `NOT` move focus away\nfrom the table. Instead, the browser's \"natural\" focus management should\nbe allowed to manage focus between the table and the hover content." + ], + "signature": [ + "(focusedCell: HTMLElement | null) => boolean" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 764 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.focusedCellHasAlwaysOpenHoverContent.$1", + "type": "CompoundType", + "tags": [], + "label": "focusedCell", + "description": [], + "signature": [ + "HTMLElement | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 764 + }, + "deprecated": false, + "isRequired": false + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.focusedCellHasMoreFocusableChildren", + "type": "Function", + "tags": [], + "label": "focusedCellHasMoreFocusableChildren", + "description": [ + "\nThe provided `focusedCell` may contain multiple focusable children. For,\nexample, the cell may contain multiple `HTMLButtonElement`s that represent\nactions, or the cell may contain multiple draggables.\n\nThis function returns `true` when there are still more children of the cell\nthat should receive focus when the tab key is pressed.\n\nWhen this function returns `true`, the caller should NOT move focus away\nfrom the table. Instead, the browser's \"natural\" focus management should be\nallowed to automatically focus the next (or previous) focusable child of the\ncell." + ], + "signature": [ + "({ focusedCell, shiftKey, }: { focusedCell: HTMLElement | null; shiftKey: boolean; }) => boolean" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 736 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.focusedCellHasMoreFocusableChildren.$1.focusedCellshiftKey", + "type": "Object", + "tags": [], + "label": "{\n focusedCell,\n shiftKey,\n}", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 739 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.focusedCellHasMoreFocusableChildren.$1.focusedCellshiftKey.focusedCell", + "type": "CompoundType", + "tags": [], + "label": "focusedCell", + "description": [], + "signature": [ + "HTMLElement | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 740 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.focusedCellHasMoreFocusableChildren.$1.focusedCellshiftKey.shiftKey", + "type": "boolean", + "tags": [], + "label": "shiftKey", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 741 + }, + "deprecated": false + } + ] + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.focusedCellIsPlainColumnHeader", + "type": "Function", + "tags": [], + "label": "focusedCellIsPlainColumnHeader", + "description": [ + "\nReturns true if the focused cell is a plain, non-action `columnheader`" + ], + "signature": [ + "(focusedCell: HTMLDivElement | null) => boolean" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 778 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.focusedCellIsPlainColumnHeader.$1", + "type": "CompoundType", + "tags": [], + "label": "focusedCell", + "description": [], + "signature": [ + "HTMLDivElement | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 778 + }, + "deprecated": false, + "isRequired": false + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getColindex", + "type": "Function", + "tags": [], + "label": "getColindex", + "description": [ + "Returns the numeric `aria-colindex` of the specified element" + ], + "signature": [ + "({ colindexAttribute, element, }: { colindexAttribute: string; element: Element | null; }) => number | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 119 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.getColindex.$1.colindexAttributeelement", + "type": "Object", + "tags": [], + "label": "{\n colindexAttribute,\n element,\n}", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 122 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.getColindex.$1.colindexAttributeelement.colindexAttribute", + "type": "string", + "tags": [], + "label": "colindexAttribute", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 123 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getColindex.$1.colindexAttributeelement.element", + "type": "CompoundType", + "tags": [], + "label": "element", + "description": [], + "signature": [ + "Element | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 124 + }, + "deprecated": false + } + ] + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getElementWithMatchingAriaColindex", + "type": "Function", + "tags": [], + "label": "getElementWithMatchingAriaColindex", + "description": [ + "Returns the element at the specified `aria-colindex`" + ], + "signature": [ + "({ ariaColindex, colindexAttribute, element, }: { ariaColindex: number; colindexAttribute: string; element: HTMLDivElement | null; }) => HTMLDivElement | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 188 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.getElementWithMatchingAriaColindex.$1.ariaColindexcolindexAttributeelement", + "type": "Object", + "tags": [], + "label": "{\n ariaColindex,\n colindexAttribute,\n element,\n}", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 192 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.getElementWithMatchingAriaColindex.$1.ariaColindexcolindexAttributeelement.ariaColindex", + "type": "number", + "tags": [], + "label": "ariaColindex", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 193 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getElementWithMatchingAriaColindex.$1.ariaColindexcolindexAttributeelement.colindexAttribute", + "type": "string", + "tags": [], + "label": "colindexAttribute", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 194 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getElementWithMatchingAriaColindex.$1.ariaColindexcolindexAttributeelement.element", + "type": "CompoundType", + "tags": [], + "label": "element", + "description": [], + "signature": [ + "HTMLDivElement | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 195 + }, + "deprecated": false + } + ] + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getFirstNonVisibleAriaRowindex", + "type": "Function", + "tags": [], + "label": "getFirstNonVisibleAriaRowindex", + "description": [], + "signature": [ + "({ focusedAriaRowindex, element, event, maxAriaRowindex, rowindexAttribute, }: { focusedAriaRowindex: number; element: HTMLDivElement | null; event: React.KeyboardEvent; maxAriaRowindex: number; rowindexAttribute: string; }) => number" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 445 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.getFirstNonVisibleAriaRowindex.$1.focusedAriaRowindexelementeventmaxAriaRowindexrowindexAttribute", + "type": "Object", + "tags": [], + "label": "{\n focusedAriaRowindex,\n element,\n event,\n maxAriaRowindex,\n rowindexAttribute,\n}", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 451 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.getFirstNonVisibleAriaRowindex.$1.focusedAriaRowindexelementeventmaxAriaRowindexrowindexAttribute.focusedAriaRowindex", + "type": "number", + "tags": [], + "label": "focusedAriaRowindex", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 452 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getFirstNonVisibleAriaRowindex.$1.focusedAriaRowindexelementeventmaxAriaRowindexrowindexAttribute.element", + "type": "CompoundType", + "tags": [], + "label": "element", + "description": [], + "signature": [ + "HTMLDivElement | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 453 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getFirstNonVisibleAriaRowindex.$1.focusedAriaRowindexelementeventmaxAriaRowindexrowindexAttribute.event", + "type": "Object", + "tags": [], + "label": "event", + "description": [], + "signature": [ + "React.KeyboardEvent" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 454 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getFirstNonVisibleAriaRowindex.$1.focusedAriaRowindexelementeventmaxAriaRowindexrowindexAttribute.maxAriaRowindex", + "type": "number", + "tags": [], + "label": "maxAriaRowindex", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 455 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getFirstNonVisibleAriaRowindex.$1.focusedAriaRowindexelementeventmaxAriaRowindexrowindexAttribute.rowindexAttribute", + "type": "string", + "tags": [], + "label": "rowindexAttribute", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 456 + }, + "deprecated": false + } + ] + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getFirstOrLastAriaRowindex", + "type": "Function", + "tags": [], + "label": "getFirstOrLastAriaRowindex", + "description": [ + "Returns the first `aria-rowindex` if the home key is pressed, otherwise the last `aria-rowindex` is returned" + ], + "signature": [ + "({ event, maxAriaRowindex, }: { event: React.KeyboardEvent; maxAriaRowindex: number; }) => number" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 229 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.getFirstOrLastAriaRowindex.$1.eventmaxAriaRowindex", + "type": "Object", + "tags": [], + "label": "{\n event,\n maxAriaRowindex,\n}", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 232 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.getFirstOrLastAriaRowindex.$1.eventmaxAriaRowindex.event", + "type": "Object", + "tags": [], + "label": "event", + "description": [], + "signature": [ + "React.KeyboardEvent" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 233 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getFirstOrLastAriaRowindex.$1.eventmaxAriaRowindex.maxAriaRowindex", + "type": "number", + "tags": [], + "label": "maxAriaRowindex", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 234 + }, + "deprecated": false + } + ] + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getFocusableChidren", + "type": "Function", + "tags": [], + "label": "getFocusableChidren", + "description": [ + "\nReturns a table cell's focusable children, which may be one of the following\na) a `HTMLButtonElement` that does NOT have the `disabled` attribute\nb) an element with the `DRAGGABLE_KEYBOARD_WRAPPER_CLASS_NAME`" + ], + "signature": [ + "(cell: HTMLElement | null) => ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.FocusableElement", + "text": "FocusableElement" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 681 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.getFocusableChidren.$1", + "type": "CompoundType", + "tags": [], + "label": "cell", + "description": [], + "signature": [ + "HTMLElement | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 681 + }, + "deprecated": false, + "isRequired": false + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getFocusedAriaColindexCell", + "type": "Function", + "tags": [], + "label": "getFocusedAriaColindexCell", + "description": [ + "\nReturns the focused cell for tables that use `aria-colindex`" + ], + "signature": [ + "({ containerElement, tableClassName, }: { containerElement: HTMLElement | null; tableClassName: string; }) => HTMLDivElement | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 831 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.getFocusedAriaColindexCell.$1.containerElementtableClassName", + "type": "Object", + "tags": [], + "label": "{\n containerElement,\n tableClassName,\n}", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 834 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.getFocusedAriaColindexCell.$1.containerElementtableClassName.containerElement", + "type": "CompoundType", + "tags": [], + "label": "containerElement", + "description": [], + "signature": [ + "HTMLElement | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 835 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getFocusedAriaColindexCell.$1.containerElementtableClassName.tableClassName", + "type": "string", + "tags": [], + "label": "tableClassName", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 836 + }, + "deprecated": false + } + ] + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getFocusedColumn", + "type": "Function", + "tags": [], + "label": "getFocusedColumn", + "description": [ + "\nReturns the column that directly owns focus, or contains a focused element,\nusing the `aria-colindex` attribute." + ], + "signature": [ + "({ colindexAttribute, element, }: { colindexAttribute: string; element: Element | null; }) => Element | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 108 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.getFocusedColumn.$1.colindexAttributeelement", + "type": "Object", + "tags": [], + "label": "{\n colindexAttribute,\n element,\n}", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 111 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.getFocusedColumn.$1.colindexAttributeelement.colindexAttribute", + "type": "string", + "tags": [], + "label": "colindexAttribute", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 112 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getFocusedColumn.$1.colindexAttributeelement.element", + "type": "CompoundType", + "tags": [], + "label": "element", + "description": [], + "signature": [ + "Element | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 113 + }, + "deprecated": false + } + ] + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getFocusedDataColindexCell", + "type": "Function", + "tags": [], + "label": "getFocusedDataColindexCell", + "description": [ + "\nReturns the focused cell for tables that use `data-colindex`" + ], + "signature": [ + "({ containerElement, tableClassName, }: { containerElement: HTMLElement | null; tableClassName: string; }) => HTMLDivElement | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 845 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.getFocusedDataColindexCell.$1.containerElementtableClassName", + "type": "Object", + "tags": [], + "label": "{\n containerElement,\n tableClassName,\n}", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 848 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.getFocusedDataColindexCell.$1.containerElementtableClassName.containerElement", + "type": "CompoundType", + "tags": [], + "label": "containerElement", + "description": [], + "signature": [ + "HTMLElement | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 849 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getFocusedDataColindexCell.$1.containerElementtableClassName.tableClassName", + "type": "string", + "tags": [], + "label": "tableClassName", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 850 + }, + "deprecated": false + } + ] + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getFocusedRow", + "type": "Function", + "tags": [], + "label": "getFocusedRow", + "description": [ + " Returns the row that directly owns focus, or contains a focused element" + ], + "signature": [ + "({ rowindexAttribute, element, }: { rowindexAttribute: string; element: Element | null; }) => Element | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 131 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.getFocusedRow.$1.rowindexAttributeelement", + "type": "Object", + "tags": [], + "label": "{\n rowindexAttribute,\n element,\n}", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 134 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.getFocusedRow.$1.rowindexAttributeelement.rowindexAttribute", + "type": "string", + "tags": [], + "label": "rowindexAttribute", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 135 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getFocusedRow.$1.rowindexAttributeelement.element", + "type": "CompoundType", + "tags": [], + "label": "element", + "description": [], + "signature": [ + "Element | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 136 + }, + "deprecated": false + } + ] + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getFocusOnFromArrowKey", + "type": "Function", + "tags": [], + "label": "getFocusOnFromArrowKey", + "description": [ + "Returns `previous` or `next`, depending on which arrow key was pressed" + ], + "signature": [ + "(event: React.KeyboardEvent) => \"previous\" | \"next\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 101 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.getFocusOnFromArrowKey.$1", + "type": "Object", + "tags": [], + "label": "event", + "description": [], + "signature": [ + "React.KeyboardEvent" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 101 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getNewAriaColindex", + "type": "Function", + "tags": [], + "label": "getNewAriaColindex", + "description": [ + "Returns the `previous` or `next` `aria-colindex` relative to the currently focused `aria-colindex`" + ], + "signature": [ + "({ focusedAriaColindex, focusOn, maxAriaColindex, }: { focusedAriaColindex: number; focusOn: \"previous\" | \"next\"; maxAriaColindex: number; }) => number" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 164 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.getNewAriaColindex.$1.focusedAriaColindexfocusOnmaxAriaColindex", + "type": "Object", + "tags": [], + "label": "{\n focusedAriaColindex,\n focusOn,\n maxAriaColindex,\n}", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 168 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.getNewAriaColindex.$1.focusedAriaColindexfocusOnmaxAriaColindex.focusedAriaColindex", + "type": "number", + "tags": [], + "label": "focusedAriaColindex", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 169 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getNewAriaColindex.$1.focusedAriaColindexfocusOnmaxAriaColindex.focusOn", + "type": "CompoundType", + "tags": [], + "label": "focusOn", + "description": [], + "signature": [ + "\"previous\" | \"next\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 170 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getNewAriaColindex.$1.focusedAriaColindexfocusOnmaxAriaColindex.maxAriaColindex", + "type": "number", + "tags": [], + "label": "maxAriaColindex", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 171 + }, + "deprecated": false + } + ] + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getNewAriaRowindex", + "type": "Function", + "tags": [], + "label": "getNewAriaRowindex", + "description": [ + "Returns the `previous` or `next` `aria-rowindex` relative to the currently focused `aria-rowindex`" + ], + "signature": [ + "({ focusedAriaRowindex, focusOn, maxAriaRowindex, }: { focusedAriaRowindex: number; focusOn: \"previous\" | \"next\"; maxAriaRowindex: number; }) => number" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 205 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.getNewAriaRowindex.$1.focusedAriaRowindexfocusOnmaxAriaRowindex", + "type": "Object", + "tags": [], + "label": "{\n focusedAriaRowindex,\n focusOn,\n maxAriaRowindex,\n}", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 209 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.getNewAriaRowindex.$1.focusedAriaRowindexfocusOnmaxAriaRowindex.focusedAriaRowindex", + "type": "number", + "tags": [], + "label": "focusedAriaRowindex", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 210 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getNewAriaRowindex.$1.focusedAriaRowindexfocusOnmaxAriaRowindex.focusOn", + "type": "CompoundType", + "tags": [], + "label": "focusOn", + "description": [], + "signature": [ + "\"previous\" | \"next\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 211 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getNewAriaRowindex.$1.focusedAriaRowindexfocusOnmaxAriaRowindex.maxAriaRowindex", + "type": "number", + "tags": [], + "label": "maxAriaRowindex", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 212 + }, + "deprecated": false + } + ] + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getNotesContainerClassName", + "type": "Function", + "tags": [], + "label": "getNotesContainerClassName", + "description": [], + "signature": [ + "(ariaRowindex: number) => string" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 299 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.getNotesContainerClassName.$1", + "type": "number", + "tags": [], + "label": "ariaRowindex", + "description": [], + "signature": [ + "number" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 299 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getRowByAriaRowindex", + "type": "Function", + "tags": [], + "label": "getRowByAriaRowindex", + "description": [ + "Returns the row with the specified `aria-rowindex`" + ], + "signature": [ + "({ ariaRowindex, element, rowindexAttribute, }: { ariaRowindex: number; element: Element | null; rowindexAttribute: string; }) => HTMLDivElement | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 152 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.getRowByAriaRowindex.$1.ariaRowindexelementrowindexAttribute", + "type": "Object", + "tags": [], + "label": "{\n ariaRowindex,\n element,\n rowindexAttribute,\n}", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 156 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.getRowByAriaRowindex.$1.ariaRowindexelementrowindexAttribute.ariaRowindex", + "type": "number", + "tags": [], + "label": "ariaRowindex", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 157 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getRowByAriaRowindex.$1.ariaRowindexelementrowindexAttribute.element", + "type": "CompoundType", + "tags": [], + "label": "element", + "description": [], + "signature": [ + "Element | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 158 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getRowByAriaRowindex.$1.ariaRowindexelementrowindexAttribute.rowindexAttribute", + "type": "string", + "tags": [], + "label": "rowindexAttribute", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 159 + }, + "deprecated": false + } + ] + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getRowindex", + "type": "Function", + "tags": [], + "label": "getRowindex", + "description": [ + "Returns the numeric `aria-rowindex` of the specified element" + ], + "signature": [ + "({ rowindexAttribute, element, }: { rowindexAttribute: string; element: Element | null; }) => number | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 140 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.getRowindex.$1.rowindexAttributeelement", + "type": "Object", + "tags": [], + "label": "{\n rowindexAttribute,\n element,\n}", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 143 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.getRowindex.$1.rowindexAttributeelement.rowindexAttribute", + "type": "string", + "tags": [], + "label": "rowindexAttribute", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 144 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getRowindex.$1.rowindexAttributeelement.element", + "type": "CompoundType", + "tags": [], + "label": "element", + "description": [], + "signature": [ + "Element | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 145 + }, + "deprecated": false + } + ] + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getRowRendererClassName", + "type": "Function", + "tags": [], + "label": "getRowRendererClassName", + "description": [], + "signature": [ + "(ariaRowindex: number) => string" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 296 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.getRowRendererClassName.$1", + "type": "number", + "tags": [], + "label": "ariaRowindex", + "description": [], + "signature": [ + "number" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 296 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getTableSkipFocus", + "type": "Function", + "tags": [], + "label": "getTableSkipFocus", + "description": [ + "\nThis function, which works with tables that use the `aria-colindex` or\n`data-colindex` attributes, examines the focus state of the table, and\nreturns a `SkipFocus` enumeration.\n\nThe `SkipFocus` return value indicates whether the caller should skip focus\nto \"before\" the table, \"after\" the table, or take no action, and let the\nbrowser's \"natural\" focus management manage focus." + ], + "signature": [ + "({ containerElement, getFocusedCell, shiftKey, tableHasFocus, tableClassName, }: { containerElement: HTMLElement | null; getFocusedCell: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.GetFocusedCell", + "text": "GetFocusedCell" + }, + "; shiftKey: boolean; tableHasFocus: (containerElement: HTMLElement | null) => boolean; tableClassName: string; }) => ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SkipFocus", + "text": "SkipFocus" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 791 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.getTableSkipFocus.$1.containerElementgetFocusedCellshiftKeytableHasFocustableClassName", + "type": "Object", + "tags": [], + "label": "{\n containerElement,\n getFocusedCell,\n shiftKey,\n tableHasFocus,\n tableClassName,\n}", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 797 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.getTableSkipFocus.$1.containerElementgetFocusedCellshiftKeytableHasFocustableClassName.containerElement", + "type": "CompoundType", + "tags": [], + "label": "containerElement", + "description": [], + "signature": [ + "HTMLElement | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 798 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getTableSkipFocus.$1.containerElementgetFocusedCellshiftKeytableHasFocustableClassName.getFocusedCell", + "type": "Function", + "tags": [], + "label": "getFocusedCell", + "description": [], + "signature": [ + "({ containerElement, tableClassName, }: { containerElement: HTMLElement | null; tableClassName: string; }) => HTMLDivElement | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 799 + }, + "deprecated": false, + "returnComment": [], + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.__0", + "type": "Object", + "tags": [], + "label": "__0", + "description": [], + "signature": [ + "{ containerElement: HTMLElement | null; tableClassName: string; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 767 + }, + "deprecated": false + } + ] + }, + { + "parentPluginId": "timelines", + "id": "def-common.getTableSkipFocus.$1.containerElementgetFocusedCellshiftKeytableHasFocustableClassName.shiftKey", + "type": "boolean", + "tags": [], + "label": "shiftKey", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 800 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getTableSkipFocus.$1.containerElementgetFocusedCellshiftKeytableHasFocustableClassName.tableHasFocus", + "type": "Function", + "tags": [], + "label": "tableHasFocus", + "description": [], + "signature": [ + "(containerElement: HTMLElement | null) => boolean" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 801 + }, + "deprecated": false, + "returnComment": [], + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.containerElement", + "type": "CompoundType", + "tags": [], + "label": "containerElement", + "description": [], + "signature": [ + "HTMLElement | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 801 + }, + "deprecated": false + } + ] + }, + { + "parentPluginId": "timelines", + "id": "def-common.getTableSkipFocus.$1.containerElementgetFocusedCellshiftKeytableHasFocustableClassName.tableClassName", + "type": "string", + "tags": [], + "label": "tableClassName", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 802 + }, + "deprecated": false + } + ] + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getValidationErrors", + "type": "Function", + "tags": [], + "label": "getValidationErrors", + "description": [], + "signature": [ + "(response: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ErrorResponse", + "text": "ErrorResponse" + }, + ") => string[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/eql/validation/helpers.ts", + "lineNumber": 32 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.getValidationErrors.$1", + "type": "Object", + "tags": [], + "label": "response", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ErrorResponse", + "text": "ErrorResponse" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/eql/validation/helpers.ts", + "lineNumber": 32 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.handleSkipFocus", + "type": "Function", + "tags": [], + "label": "handleSkipFocus", + "description": [ + "\nIf the value of `skipFocus` is `SKIP_FOCUS_BACKWARDS` or `SKIP_FOCUS_FORWARD`\nthis function will invoke the provided `onSkipFocusBackwards` or\n`onSkipFocusForward` functions respectively.\n\nIf `skipFocus` is `SKIP_FOCUS_NOOP`, the `onSkipFocusBackwards` and\n`onSkipFocusForward` functions will not be invoked." + ], + "signature": [ + "({ onSkipFocusBackwards, onSkipFocusForward, skipFocus, }: { onSkipFocusBackwards: () => void; onSkipFocusForward: () => void; skipFocus: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SkipFocus", + "text": "SkipFocus" + }, + "; }) => void" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 701 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.handleSkipFocus.$1.onSkipFocusBackwardsonSkipFocusForwardskipFocus", + "type": "Object", + "tags": [], + "label": "{\n onSkipFocusBackwards,\n onSkipFocusForward,\n skipFocus,\n}", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 705 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.handleSkipFocus.$1.onSkipFocusBackwardsonSkipFocusForwardskipFocus.onSkipFocusBackwards", + "type": "Function", + "tags": [], + "label": "onSkipFocusBackwards", + "description": [], + "signature": [ + "() => void" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 706 + }, + "deprecated": false, + "returnComment": [], + "children": [] + }, + { + "parentPluginId": "timelines", + "id": "def-common.handleSkipFocus.$1.onSkipFocusBackwardsonSkipFocusForwardskipFocus.onSkipFocusForward", + "type": "Function", + "tags": [], + "label": "onSkipFocusForward", + "description": [], + "signature": [ + "() => void" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 707 + }, + "deprecated": false, + "returnComment": [], + "children": [] + }, + { + "parentPluginId": "timelines", + "id": "def-common.handleSkipFocus.$1.onSkipFocusBackwardsonSkipFocusForwardskipFocus.skipFocus", + "type": "CompoundType", + "tags": [], + "label": "skipFocus", + "description": [], + "signature": [ + "\"SKIP_FOCUS_BACKWARDS\" | \"SKIP_FOCUS_FORWARD\" | \"SKIP_FOCUS_NOOP\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 708 + }, + "deprecated": false + } + ] + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.isArrowDown", + "type": "Function", + "tags": [], + "label": "isArrowDown", + "description": [ + "Returns `true` if the down arrow key was pressed" + ], + "signature": [ + "(event: React.KeyboardEvent) => boolean" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 59 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.isArrowDown.$1", + "type": "Object", + "tags": [], + "label": "event", + "description": [], + "signature": [ + "React.KeyboardEvent" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 59 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.isArrowDownOrArrowUp", + "type": "Function", + "tags": [], + "label": "isArrowDownOrArrowUp", + "description": [ + "Returns `true` if the down or up arrow was pressed" + ], + "signature": [ + "(event: React.KeyboardEvent) => boolean" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 65 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.isArrowDownOrArrowUp.$1", + "type": "Object", + "tags": [], + "label": "event", + "description": [], + "signature": [ + "React.KeyboardEvent" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 65 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.isArrowKey", + "type": "Function", + "tags": [], + "label": "isArrowKey", + "description": [ + "Returns `true` if an arrow key was pressed" + ], + "signature": [ + "(event: React.KeyboardEvent) => boolean" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 69 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.isArrowKey.$1", + "type": "Object", + "tags": [], + "label": "event", + "description": [], + "signature": [ + "React.KeyboardEvent" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 69 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.isArrowRight", + "type": "Function", + "tags": [], + "label": "isArrowRight", + "description": [ + "Returns `true` if the right arrow key was pressed" + ], + "signature": [ + "(event: React.KeyboardEvent) => boolean" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 73 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.isArrowRight.$1", + "type": "Object", + "tags": [], + "label": "event", + "description": [], + "signature": [ + "React.KeyboardEvent" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 73 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.isArrowRightOrArrowLeft", + "type": "Function", + "tags": [], + "label": "isArrowRightOrArrowLeft", + "description": [ + "Returns `true` if the left or right arrow was pressed" + ], + "signature": [ + "(event: React.KeyboardEvent) => boolean" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 55 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.isArrowRightOrArrowLeft.$1", + "type": "Object", + "tags": [], + "label": "event", + "description": [], + "signature": [ + "React.KeyboardEvent" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 55 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.isArrowUp", + "type": "Function", + "tags": [], + "label": "isArrowUp", + "description": [ + "Returns `true` if the up arrow key was pressed" + ], + "signature": [ + "(event: React.KeyboardEvent) => boolean" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 62 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.isArrowUp.$1", + "type": "Object", + "tags": [], + "label": "event", + "description": [], + "signature": [ + "React.KeyboardEvent" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 62 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.isEnd", + "type": "Function", + "tags": [], + "label": "isEnd", + "description": [ + "Returns `true` if the end key was pressed" + ], + "signature": [ + "(event: React.KeyboardEvent) => boolean" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 82 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.isEnd.$1", + "type": "Object", + "tags": [], + "label": "event", + "description": [], + "signature": [ + "React.KeyboardEvent" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 82 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.isErrorResponse", + "type": "Function", + "tags": [], + "label": "isErrorResponse", + "description": [], + "signature": [ + "(response: unknown) => response is ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ErrorResponse", + "text": "ErrorResponse" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/eql/validation/helpers.ts", + "lineNumber": 26 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.isErrorResponse.$1", + "type": "Unknown", + "tags": [], + "label": "response", + "description": [], + "signature": [ + "unknown" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/eql/validation/helpers.ts", + "lineNumber": 26 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.isEscape", + "type": "Function", + "tags": [], + "label": "isEscape", + "description": [ + "Returns `true` if the escape key was pressed" + ], + "signature": [ + "(event: React.KeyboardEvent) => boolean" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 76 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.isEscape.$1", + "type": "Object", + "tags": [], + "label": "event", + "description": [], + "signature": [ + "React.KeyboardEvent" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 76 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.isHome", + "type": "Function", + "tags": [], + "label": "isHome", + "description": [ + "Returns `true` if the home key was pressed" + ], + "signature": [ + "(event: React.KeyboardEvent) => boolean" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 79 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.isHome.$1", + "type": "Object", + "tags": [], + "label": "event", + "description": [], + "signature": [ + "React.KeyboardEvent" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 79 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.isHomeOrEnd", + "type": "Function", + "tags": [], + "label": "isHomeOrEnd", + "description": [ + "Returns `true` if the home or end key was pressed" + ], + "signature": [ + "(event: React.KeyboardEvent) => boolean" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 85 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.isHomeOrEnd.$1", + "type": "Object", + "tags": [], + "label": "event", + "description": [], + "signature": [ + "React.KeyboardEvent" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 85 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.isPageDown", + "type": "Function", + "tags": [], + "label": "isPageDown", + "description": [ + "Returns `true` if the page down key was pressed" + ], + "signature": [ + "(event: React.KeyboardEvent) => boolean" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 91 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.isPageDown.$1", + "type": "Object", + "tags": [], + "label": "event", + "description": [], + "signature": [ + "React.KeyboardEvent" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 91 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.isPageDownOrPageUp", + "type": "Function", + "tags": [], + "label": "isPageDownOrPageUp", + "description": [ + "Returns `true` if the page up or page down key was pressed" + ], + "signature": [ + "(event: React.KeyboardEvent) => boolean" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 94 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.isPageDownOrPageUp.$1", + "type": "Object", + "tags": [], + "label": "event", + "description": [], + "signature": [ + "React.KeyboardEvent" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 94 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.isPageUp", + "type": "Function", + "tags": [], + "label": "isPageUp", + "description": [ + "Returns `true` if the page up key was pressed" + ], + "signature": [ + "(event: React.KeyboardEvent) => boolean" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 88 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.isPageUp.$1", + "type": "Object", + "tags": [], + "label": "event", + "description": [], + "signature": [ + "React.KeyboardEvent" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 88 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.isTab", + "type": "Function", + "tags": [], + "label": "isTab", + "description": [ + "Returns `true` if the tab key was pressed" + ], + "signature": [ + "(event: React.KeyboardEvent) => boolean" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 98 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.isTab.$1", + "type": "Object", + "tags": [], + "label": "event", + "description": [], + "signature": [ + "React.KeyboardEvent" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 98 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.isValidationErrorResponse", + "type": "Function", + "tags": [], + "label": "isValidationErrorResponse", + "description": [], + "signature": [ + "(response: unknown) => response is ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ErrorResponse", + "text": "ErrorResponse" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/eql/validation/helpers.ts", + "lineNumber": 29 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.isValidationErrorResponse.$1", + "type": "Unknown", + "tags": [], + "label": "response", + "description": [], + "signature": [ + "unknown" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/eql/validation/helpers.ts", + "lineNumber": 29 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.onArrowKeyDown", + "type": "Function", + "tags": [], + "label": "onArrowKeyDown", + "description": [ + "\nThis function implements arrow key support for the `onKeyDownFocusHandler`.\n\nSee the `Keyboard Support` section of\nhttps://www.w3.org/TR/wai-aria-practices-1.1/examples/grid/dataGrids.html\nfor details" + ], + "signature": [ + "({ colindexAttribute, containerElement, event, focusedAriaColindex, focusedAriaRowindex, maxAriaColindex, maxAriaRowindex, onColumnFocused, rowindexAttribute, }: { colindexAttribute: string; containerElement: HTMLElement | null; event: React.KeyboardEvent; focusedAriaColindex: number; focusedAriaRowindex: number; maxAriaColindex: number; maxAriaRowindex: number; onColumnFocused?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.OnColumnFocused", + "text": "OnColumnFocused" + }, + " | undefined; rowindexAttribute: string; }) => void" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 309 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.onArrowKeyDown.$1.colindexAttributecontainerElementeventfocusedAriaColindexfocusedAriaRowindexmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute", + "type": "Object", + "tags": [], + "label": "{\n colindexAttribute,\n containerElement,\n event,\n focusedAriaColindex,\n focusedAriaRowindex,\n maxAriaColindex,\n maxAriaRowindex,\n onColumnFocused,\n rowindexAttribute,\n}", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 319 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.onArrowKeyDown.$1.colindexAttributecontainerElementeventfocusedAriaColindexfocusedAriaRowindexmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute.colindexAttribute", + "type": "string", + "tags": [], + "label": "colindexAttribute", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 320 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.onArrowKeyDown.$1.colindexAttributecontainerElementeventfocusedAriaColindexfocusedAriaRowindexmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute.containerElement", + "type": "CompoundType", + "tags": [], + "label": "containerElement", + "description": [], + "signature": [ + "HTMLElement | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 321 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.onArrowKeyDown.$1.colindexAttributecontainerElementeventfocusedAriaColindexfocusedAriaRowindexmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute.event", + "type": "Object", + "tags": [], + "label": "event", + "description": [], + "signature": [ + "React.KeyboardEvent" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 322 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.onArrowKeyDown.$1.colindexAttributecontainerElementeventfocusedAriaColindexfocusedAriaRowindexmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute.focusedAriaColindex", + "type": "number", + "tags": [], + "label": "focusedAriaColindex", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 323 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.onArrowKeyDown.$1.colindexAttributecontainerElementeventfocusedAriaColindexfocusedAriaRowindexmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute.focusedAriaRowindex", + "type": "number", + "tags": [], + "label": "focusedAriaRowindex", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 324 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.onArrowKeyDown.$1.colindexAttributecontainerElementeventfocusedAriaColindexfocusedAriaRowindexmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute.maxAriaColindex", + "type": "number", + "tags": [], + "label": "maxAriaColindex", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 325 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.onArrowKeyDown.$1.colindexAttributecontainerElementeventfocusedAriaColindexfocusedAriaRowindexmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute.maxAriaRowindex", + "type": "number", + "tags": [], + "label": "maxAriaRowindex", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 326 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.onArrowKeyDown.$1.colindexAttributecontainerElementeventfocusedAriaColindexfocusedAriaRowindexmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute.onColumnFocused", + "type": "Function", + "tags": [], + "label": "onColumnFocused", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.OnColumnFocused", + "text": "OnColumnFocused" + }, + " | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 327 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.onArrowKeyDown.$1.colindexAttributecontainerElementeventfocusedAriaColindexfocusedAriaRowindexmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute.rowindexAttribute", + "type": "string", + "tags": [], + "label": "rowindexAttribute", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 328 + }, + "deprecated": false + } + ] + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.onFocusReFocusDraggable", + "type": "Function", + "tags": [], + "label": "onFocusReFocusDraggable", + "description": [ + "\nAn `onFocus` event handler that focuses the first child draggable\nkeyboard handler" + ], + "signature": [ + "(event: React.FocusEvent) => void | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 645 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.onFocusReFocusDraggable.$1", + "type": "Object", + "tags": [], + "label": "event", + "description": [], + "signature": [ + "React.FocusEvent" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 645 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.onHomeEndDown", + "type": "Function", + "tags": [], + "label": "onHomeEndDown", + "description": [ + "\nThis function implements `home` and `end` key support for the `onKeyDownFocusHandler`.\n\nSee the `Keyboard Support` section of\nhttps://www.w3.org/TR/wai-aria-practices-1.1/examples/grid/dataGrids.html\nfor details" + ], + "signature": [ + "({ colindexAttribute, containerElement, event, focusedAriaRowindex, maxAriaColindex, maxAriaRowindex, onColumnFocused, rowindexAttribute, }: { colindexAttribute: string; containerElement: HTMLElement | null; event: React.KeyboardEvent; focusedAriaRowindex: number; maxAriaColindex: number; maxAriaRowindex: number; onColumnFocused?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.OnColumnFocused", + "text": "OnColumnFocused" + }, + " | undefined; rowindexAttribute: string; }) => void" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 388 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.onHomeEndDown.$1.colindexAttributecontainerElementeventfocusedAriaRowindexmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute", + "type": "Object", + "tags": [], + "label": "{\n colindexAttribute,\n containerElement,\n event,\n focusedAriaRowindex,\n maxAriaColindex,\n maxAriaRowindex,\n onColumnFocused,\n rowindexAttribute,\n}", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 397 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.onHomeEndDown.$1.colindexAttributecontainerElementeventfocusedAriaRowindexmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute.colindexAttribute", + "type": "string", + "tags": [], + "label": "colindexAttribute", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 398 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.onHomeEndDown.$1.colindexAttributecontainerElementeventfocusedAriaRowindexmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute.containerElement", + "type": "CompoundType", + "tags": [], + "label": "containerElement", + "description": [], + "signature": [ + "HTMLElement | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 399 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.onHomeEndDown.$1.colindexAttributecontainerElementeventfocusedAriaRowindexmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute.event", + "type": "Object", + "tags": [], + "label": "event", + "description": [], + "signature": [ + "React.KeyboardEvent" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 400 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.onHomeEndDown.$1.colindexAttributecontainerElementeventfocusedAriaRowindexmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute.focusedAriaRowindex", + "type": "number", + "tags": [], + "label": "focusedAriaRowindex", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 401 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.onHomeEndDown.$1.colindexAttributecontainerElementeventfocusedAriaRowindexmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute.maxAriaColindex", + "type": "number", + "tags": [], + "label": "maxAriaColindex", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 402 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.onHomeEndDown.$1.colindexAttributecontainerElementeventfocusedAriaRowindexmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute.maxAriaRowindex", + "type": "number", + "tags": [], + "label": "maxAriaRowindex", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 403 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.onHomeEndDown.$1.colindexAttributecontainerElementeventfocusedAriaRowindexmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute.onColumnFocused", + "type": "Function", + "tags": [], + "label": "onColumnFocused", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.OnColumnFocused", + "text": "OnColumnFocused" + }, + " | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 404 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.onHomeEndDown.$1.colindexAttributecontainerElementeventfocusedAriaRowindexmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute.rowindexAttribute", + "type": "string", + "tags": [], + "label": "rowindexAttribute", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 405 + }, + "deprecated": false + } + ] + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.onKeyDownFocusHandler", + "type": "Function", + "tags": [], + "label": "onKeyDownFocusHandler", + "description": [ + "\nThis function adds keyboard accessability to any `containerElement` that\nrenders its rows with support for `aria-colindex` and `aria-rowindex`.\n\nTo use this function, invoke it in the `onKeyDown` handler of the specified\n`containerElement`.\n\nSee the `Keyboard Support` section of\nhttps://www.w3.org/TR/wai-aria-practices-1.1/examples/grid/dataGrids.html\nfor details of the behavior." + ], + "signature": [ + "({ colindexAttribute, containerElement, event, maxAriaColindex, maxAriaRowindex, onColumnFocused, rowindexAttribute, }: { colindexAttribute: string; containerElement: HTMLDivElement | null; event: React.KeyboardEvent; maxAriaColindex: number; maxAriaRowindex: number; onColumnFocused: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.OnColumnFocused", + "text": "OnColumnFocused" + }, + "; rowindexAttribute: string; }) => void" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 563 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.onKeyDownFocusHandler.$1.colindexAttributecontainerElementeventmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute", + "type": "Object", + "tags": [], + "label": "{\n colindexAttribute,\n containerElement,\n event,\n maxAriaColindex,\n maxAriaRowindex,\n onColumnFocused,\n rowindexAttribute,\n}", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 571 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.onKeyDownFocusHandler.$1.colindexAttributecontainerElementeventmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute.colindexAttribute", + "type": "string", + "tags": [], + "label": "colindexAttribute", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 572 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.onKeyDownFocusHandler.$1.colindexAttributecontainerElementeventmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute.containerElement", + "type": "CompoundType", + "tags": [], + "label": "containerElement", + "description": [], + "signature": [ + "HTMLDivElement | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 573 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.onKeyDownFocusHandler.$1.colindexAttributecontainerElementeventmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute.event", + "type": "Object", + "tags": [], + "label": "event", + "description": [], + "signature": [ + "React.KeyboardEvent" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 574 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.onKeyDownFocusHandler.$1.colindexAttributecontainerElementeventmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute.maxAriaColindex", + "type": "number", + "tags": [], + "label": "maxAriaColindex", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 575 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.onKeyDownFocusHandler.$1.colindexAttributecontainerElementeventmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute.maxAriaRowindex", + "type": "number", + "tags": [], + "label": "maxAriaRowindex", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 576 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.onKeyDownFocusHandler.$1.colindexAttributecontainerElementeventmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute.onColumnFocused", + "type": "Function", + "tags": [], + "label": "onColumnFocused", + "description": [], + "signature": [ + "({ newFocusedColumn, newFocusedColumnAriaColindex, }: { newFocusedColumn: HTMLDivElement | null; newFocusedColumnAriaColindex: number | null; }) => void" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 577 + }, + "deprecated": false, + "returnComment": [], + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.__0", + "type": "Object", + "tags": [], + "label": "__0", + "description": [], + "signature": [ + "{ newFocusedColumn: HTMLDivElement | null; newFocusedColumnAriaColindex: number | null; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 288 + }, + "deprecated": false + } + ] + }, + { + "parentPluginId": "timelines", + "id": "def-common.onKeyDownFocusHandler.$1.colindexAttributecontainerElementeventmaxAriaColindexmaxAriaRowindexonColumnFocusedrowindexAttribute.rowindexAttribute", + "type": "string", + "tags": [], + "label": "rowindexAttribute", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 578 + }, + "deprecated": false + } + ] + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.onPageDownOrPageUp", + "type": "Function", + "tags": [], + "label": "onPageDownOrPageUp", + "description": [ + "\nThis function implements `page down` and `page up` key support for the `onKeyDownFocusHandler`.\n\nSee the `Keyboard Support` section of\nhttps://www.w3.org/TR/wai-aria-practices-1.1/examples/grid/dataGrids.html\nfor details" + ], + "signature": [ + "({ colindexAttribute, containerElement, event, focusedAriaColindex, focusedAriaRowindex, maxAriaRowindex, onColumnFocused, rowindexAttribute, }: { colindexAttribute: string; containerElement: HTMLDivElement | null; event: React.KeyboardEvent; focusedAriaColindex: number; focusedAriaRowindex: number; maxAriaRowindex: number; onColumnFocused?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.OnColumnFocused", + "text": "OnColumnFocused" + }, + " | undefined; rowindexAttribute: string; }) => void" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 503 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.onPageDownOrPageUp.$1.colindexAttributecontainerElementeventfocusedAriaColindexfocusedAriaRowindexmaxAriaRowindexonColumnFocusedrowindexAttribute", + "type": "Object", + "tags": [], + "label": "{\n colindexAttribute,\n containerElement,\n event,\n focusedAriaColindex,\n focusedAriaRowindex,\n maxAriaRowindex,\n onColumnFocused,\n rowindexAttribute,\n}", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 512 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.onPageDownOrPageUp.$1.colindexAttributecontainerElementeventfocusedAriaColindexfocusedAriaRowindexmaxAriaRowindexonColumnFocusedrowindexAttribute.colindexAttribute", + "type": "string", + "tags": [], + "label": "colindexAttribute", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 513 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.onPageDownOrPageUp.$1.colindexAttributecontainerElementeventfocusedAriaColindexfocusedAriaRowindexmaxAriaRowindexonColumnFocusedrowindexAttribute.containerElement", + "type": "CompoundType", + "tags": [], + "label": "containerElement", + "description": [], + "signature": [ + "HTMLDivElement | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 514 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.onPageDownOrPageUp.$1.colindexAttributecontainerElementeventfocusedAriaColindexfocusedAriaRowindexmaxAriaRowindexonColumnFocusedrowindexAttribute.event", + "type": "Object", + "tags": [], + "label": "event", + "description": [], + "signature": [ + "React.KeyboardEvent" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 515 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.onPageDownOrPageUp.$1.colindexAttributecontainerElementeventfocusedAriaColindexfocusedAriaRowindexmaxAriaRowindexonColumnFocusedrowindexAttribute.focusedAriaColindex", + "type": "number", + "tags": [], + "label": "focusedAriaColindex", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 516 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.onPageDownOrPageUp.$1.colindexAttributecontainerElementeventfocusedAriaColindexfocusedAriaRowindexmaxAriaRowindexonColumnFocusedrowindexAttribute.focusedAriaRowindex", + "type": "number", + "tags": [], + "label": "focusedAriaRowindex", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 517 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.onPageDownOrPageUp.$1.colindexAttributecontainerElementeventfocusedAriaColindexfocusedAriaRowindexmaxAriaRowindexonColumnFocusedrowindexAttribute.maxAriaRowindex", + "type": "number", + "tags": [], + "label": "maxAriaRowindex", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 518 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.onPageDownOrPageUp.$1.colindexAttributecontainerElementeventfocusedAriaColindexfocusedAriaRowindexmaxAriaRowindexonColumnFocusedrowindexAttribute.onColumnFocused", + "type": "Function", + "tags": [], + "label": "onColumnFocused", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.OnColumnFocused", + "text": "OnColumnFocused" + }, + " | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 519 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.onPageDownOrPageUp.$1.colindexAttributecontainerElementeventfocusedAriaColindexfocusedAriaRowindexmaxAriaRowindexonColumnFocusedrowindexAttribute.rowindexAttribute", + "type": "string", + "tags": [], + "label": "rowindexAttribute", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 520 + }, + "deprecated": false + } + ] + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.skipFocusInContainerTo", + "type": "Function", + "tags": [], + "label": "skipFocusInContainerTo", + "description": [ + "\nThis function has a side effect. It focuses the first element with a\nmatching `className` in the `containerElement`." + ], + "signature": [ + "({ containerElement, className, }: { containerElement: HTMLElement | null; className: string; }) => void | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 668 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.skipFocusInContainerTo.$1.containerElementclassName", + "type": "Object", + "tags": [], + "label": "{\n containerElement,\n className,\n}", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 671 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.skipFocusInContainerTo.$1.containerElementclassName.containerElement", + "type": "CompoundType", + "tags": [], + "label": "containerElement", + "description": [], + "signature": [ + "HTMLElement | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 672 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.skipFocusInContainerTo.$1.containerElementclassName.className", + "type": "string", + "tags": [], + "label": "className", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 673 + }, + "deprecated": false + } + ] + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.stopPropagationAndPreventDefault", + "type": "Function", + "tags": [], + "label": "stopPropagationAndPreventDefault", + "description": [ + "\nThis function has side effects: It stops propagation of the provided\n`KeyboardEvent` and prevents the browser's default behavior." + ], + "signature": [ + "(event: React.KeyboardEvent) => void" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 547 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.stopPropagationAndPreventDefault.$1", + "type": "Object", + "tags": [], + "label": "event", + "description": [], + "signature": [ + "React.KeyboardEvent" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 547 + }, + "deprecated": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + } + ], + "interfaces": [ + { + "parentPluginId": "timelines", + "id": "def-common.ActionProps", + "type": "Interface", + "tags": [], + "label": "ActionProps", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 16 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.ActionProps.ariaRowindex", + "type": "number", + "tags": [], + "label": "ariaRowindex", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 17 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ActionProps.action", + "type": "CompoundType", + "tags": [], + "label": "action", + "description": [], + "signature": [ + "((props: Pick<", + "EuiDataGridCellValueElementProps", + ", \"columnId\" | \"rowIndex\">) => React.ReactElement React.ReactElement React.Component)> | null) | (new (props: any) => React.Component)> | null) | (new (props: Pick<", + "EuiDataGridCellValueElementProps", + ", \"columnId\" | \"rowIndex\">) => React.Component, any, any>) | ((props: Pick<", + "EuiDataGridCellValueElementProps", + ", \"columnId\" | \"rowIndex\">) => JSX.Element) | ((props: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ActionProps", + "text": "ActionProps" + }, + ") => React.ReactElement React.ReactElement React.Component)> | null) | (new (props: any) => React.Component)> | null) | (new (props: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ActionProps", + "text": "ActionProps" + }, + ") => React.Component<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ActionProps", + "text": "ActionProps" + }, + ", any, any>) | ((props: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ActionProps", + "text": "ActionProps" + }, + ") => JSX.Element) | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 18 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ActionProps.width", + "type": "number", + "tags": [], + "label": "width", + "description": [], + "signature": [ + "number | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 19 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ActionProps.columnId", + "type": "string", + "tags": [], + "label": "columnId", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 20 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ActionProps.columnValues", + "type": "string", + "tags": [], + "label": "columnValues", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 21 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ActionProps.checked", + "type": "boolean", + "tags": [], + "label": "checked", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 22 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ActionProps.onRowSelected", + "type": "Function", + "tags": [], + "label": "onRowSelected", + "description": [], + "signature": [ + "({ eventIds, isSelected, }: { eventIds: string[]; isSelected: boolean; }) => void" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 23 + }, + "deprecated": false, + "returnComment": [], + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.__0", + "type": "Object", + "tags": [], + "label": "__0", + "description": [], + "signature": [ + "{ eventIds: string[]; isSelected: boolean; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 80 + }, + "deprecated": false + } + ] + }, + { + "parentPluginId": "timelines", + "id": "def-common.ActionProps.eventId", + "type": "string", + "tags": [], + "label": "eventId", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 24 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ActionProps.loadingEventIds", + "type": "Object", + "tags": [], + "label": "loadingEventIds", + "description": [], + "signature": [ + "readonly string[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 25 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ActionProps.onEventDetailsPanelOpened", + "type": "Function", + "tags": [], + "label": "onEventDetailsPanelOpened", + "description": [], + "signature": [ + "() => void" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 26 + }, + "deprecated": false, + "returnComment": [], + "children": [] + }, + { + "parentPluginId": "timelines", + "id": "def-common.ActionProps.showCheckboxes", + "type": "boolean", + "tags": [], + "label": "showCheckboxes", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 27 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ActionProps.data", + "type": "Array", + "tags": [], + "label": "data", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineNonEcsData", + "text": "TimelineNonEcsData" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 28 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ActionProps.ecsData", + "type": "Object", + "tags": [], + "label": "ecsData", + "description": [], + "signature": [ + "Ecs" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 29 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ActionProps.index", + "type": "number", + "tags": [], + "label": "index", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 30 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ActionProps.eventIdToNoteIds", + "type": "Object", + "tags": [], + "label": "eventIdToNoteIds", + "description": [], + "signature": [ + "Readonly> | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 31 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ActionProps.isEventPinned", + "type": "CompoundType", + "tags": [], + "label": "isEventPinned", + "description": [], + "signature": [ + "boolean | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 32 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ActionProps.isEventViewer", + "type": "CompoundType", + "tags": [], + "label": "isEventViewer", + "description": [], + "signature": [ + "boolean | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 33 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ActionProps.rowIndex", + "type": "number", + "tags": [], + "label": "rowIndex", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 34 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ActionProps.refetch", + "type": "Function", + "tags": [], + "label": "refetch", + "description": [], + "signature": [ + "(() => void) | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 35 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ActionProps.onRuleChange", + "type": "Function", + "tags": [], + "label": "onRuleChange", + "description": [], + "signature": [ + "(() => void) | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 36 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ActionProps.showNotes", + "type": "CompoundType", + "tags": [], + "label": "showNotes", + "description": [], + "signature": [ + "boolean | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 37 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ActionProps.tabType", + "type": "CompoundType", + "tags": [], + "label": "tabType", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineTabs", + "text": "TimelineTabs" + }, + " | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 38 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ActionProps.timelineId", + "type": "string", + "tags": [], + "label": "timelineId", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 39 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ActionProps.toggleShowNotes", + "type": "Function", + "tags": [], + "label": "toggleShowNotes", + "description": [], + "signature": [ + "(() => void) | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 40 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.BaseHit", + "type": "Interface", + "tags": [], + "label": "BaseHit", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.BaseHit", + "text": "BaseHit" + }, + "" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/eql/index.ts", + "lineNumber": 23 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.BaseHit._index", + "type": "string", + "tags": [], + "label": "_index", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/eql/index.ts", + "lineNumber": 24 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.BaseHit._id", + "type": "string", + "tags": [], + "label": "_id", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/eql/index.ts", + "lineNumber": 25 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.BaseHit._source", + "type": "Uncategorized", + "tags": [], + "label": "_source", + "description": [], + "signature": [ + "T" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/eql/index.ts", + "lineNumber": 26 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.BaseHit.fields", + "type": "Object", + "tags": [], + "label": "fields", + "description": [], + "signature": [ + "Record | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/eql/index.ts", + "lineNumber": 27 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.BrowserField", + "type": "Interface", + "tags": [], + "label": "BrowserField", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 63 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.BrowserField.aggregatable", + "type": "boolean", + "tags": [], + "label": "aggregatable", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 64 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.BrowserField.category", + "type": "string", + "tags": [], + "label": "category", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 65 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.BrowserField.description", + "type": "CompoundType", + "tags": [], + "label": "description", + "description": [], + "signature": [ + "string | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 66 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.BrowserField.example", + "type": "CompoundType", + "tags": [], + "label": "example", + "description": [], + "signature": [ + "string | number | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 67 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.BrowserField.fields", + "type": "Object", + "tags": [], + "label": "fields", + "description": [], + "signature": [ + "{ readonly [x: string]: Partial<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.BrowserField", + "text": "BrowserField" + }, + ">; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 68 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.BrowserField.format", + "type": "string", + "tags": [], + "label": "format", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 69 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.BrowserField.indexes", + "type": "Array", + "tags": [], + "label": "indexes", + "description": [], + "signature": [ + "string[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 70 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.BrowserField.name", + "type": "string", + "tags": [], + "label": "name", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 71 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.BrowserField.searchable", + "type": "boolean", + "tags": [], + "label": "searchable", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 72 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.BrowserField.type", + "type": "string", + "tags": [], + "label": "type", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 73 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.BrowserField.subType", + "type": "Object", + "tags": [], + "label": "subType", + "description": [], + "signature": [ + "{ [key: string]: unknown; nested?: { path: string; } | undefined; } | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 74 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.BulkGetInput", + "type": "Interface", + "tags": [], + "label": "BulkGetInput", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 435 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.BulkGetInput.type", + "type": "string", + "tags": [], + "label": "type", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 436 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.BulkGetInput.id", + "type": "string", + "tags": [], + "label": "id", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 437 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ColumnHeaderInput", + "type": "Interface", + "tags": [], + "label": "ColumnHeaderInput", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 80 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.ColumnHeaderInput.aggregatable", + "type": "CompoundType", + "tags": [], + "label": "aggregatable", + "description": [], + "signature": [ + "boolean | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 81 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ColumnHeaderInput.category", + "type": "CompoundType", + "tags": [], + "label": "category", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 82 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ColumnHeaderInput.columnHeaderType", + "type": "CompoundType", + "tags": [], + "label": "columnHeaderType", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 83 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ColumnHeaderInput.description", + "type": "CompoundType", + "tags": [], + "label": "description", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 84 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ColumnHeaderInput.example", + "type": "CompoundType", + "tags": [], + "label": "example", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 85 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ColumnHeaderInput.indexes", + "type": "CompoundType", + "tags": [], + "label": "indexes", + "description": [], + "signature": [ + "string[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 86 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ColumnHeaderInput.id", + "type": "CompoundType", + "tags": [], + "label": "id", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 87 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ColumnHeaderInput.name", + "type": "CompoundType", + "tags": [], + "label": "name", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 88 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ColumnHeaderInput.placeholder", + "type": "CompoundType", + "tags": [], + "label": "placeholder", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 89 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ColumnHeaderInput.searchable", + "type": "CompoundType", + "tags": [], + "label": "searchable", + "description": [], + "signature": [ + "boolean | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 90 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ColumnHeaderInput.type", + "type": "CompoundType", + "tags": [], + "label": "type", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 91 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ColumnHeaderResult", + "type": "Interface", + "tags": [], + "label": "ColumnHeaderResult", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 607 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.ColumnHeaderResult.aggregatable", + "type": "CompoundType", + "tags": [], + "label": "aggregatable", + "description": [], + "signature": [ + "boolean | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 608 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ColumnHeaderResult.category", + "type": "CompoundType", + "tags": [], + "label": "category", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 609 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ColumnHeaderResult.columnHeaderType", + "type": "CompoundType", + "tags": [], + "label": "columnHeaderType", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 610 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ColumnHeaderResult.description", + "type": "CompoundType", + "tags": [], + "label": "description", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 611 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ColumnHeaderResult.example", + "type": "CompoundType", + "tags": [], + "label": "example", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 612 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ColumnHeaderResult.indexes", + "type": "CompoundType", + "tags": [], + "label": "indexes", + "description": [], + "signature": [ + "string[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 613 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ColumnHeaderResult.id", + "type": "CompoundType", + "tags": [], + "label": "id", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 614 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ColumnHeaderResult.name", + "type": "CompoundType", + "tags": [], + "label": "name", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 615 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ColumnHeaderResult.placeholder", + "type": "CompoundType", + "tags": [], + "label": "placeholder", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 616 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ColumnHeaderResult.searchable", + "type": "CompoundType", + "tags": [], + "label": "searchable", + "description": [], + "signature": [ + "boolean | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 617 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ColumnHeaderResult.type", + "type": "CompoundType", + "tags": [], + "label": "type", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 618 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ColumnRenderer", + "type": "Interface", + "tags": [], + "label": "ColumnRenderer", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.ts", + "lineNumber": 35 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.ColumnRenderer.isInstance", + "type": "Function", + "tags": [], + "label": "isInstance", + "description": [], + "signature": [ + "(columnName: string, data: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineNonEcsData", + "text": "TimelineNonEcsData" + }, + "[]) => boolean" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.ts", + "lineNumber": 36 + }, + "deprecated": false, + "returnComment": [], + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.columnName", + "type": "string", + "tags": [], + "label": "columnName", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.ts", + "lineNumber": 36 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.data", + "type": "Array", + "tags": [], + "label": "data", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineNonEcsData", + "text": "TimelineNonEcsData" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.ts", + "lineNumber": 36 + }, + "deprecated": false + } + ] + }, + { + "parentPluginId": "timelines", + "id": "def-common.ColumnRenderer.renderColumn", + "type": "Function", + "tags": [], + "label": "renderColumn", + "description": [], + "signature": [ + "({ columnName, eventId, field, timelineId, truncate, values, linkValues, }: { columnName: string; eventId: string; field: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ColumnHeaderOptions", + "text": "ColumnHeaderOptions" + }, + "; timelineId: string; truncate?: boolean | undefined; values: string[] | null | undefined; linkValues?: string[] | null | undefined; }) => React.ReactNode" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.ts", + "lineNumber": 37 + }, + "deprecated": false, + "returnComment": [], + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.__0", + "type": "Object", + "tags": [], + "label": "__0", + "description": [], + "signature": [ + "{ columnName: string; eventId: string; field: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ColumnHeaderOptions", + "text": "ColumnHeaderOptions" + }, + "; timelineId: string; truncate?: boolean | undefined; values: string[] | null | undefined; linkValues?: string[] | null | undefined; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.ts", + "lineNumber": 37 + }, + "deprecated": false + } + ] + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.CursorType", + "type": "Interface", + "tags": [], + "label": "CursorType", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 16 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.CursorType.value", + "type": "CompoundType", + "tags": [], + "label": "value", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 17 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.CursorType.tiebreaker", + "type": "CompoundType", + "tags": [], + "label": "tiebreaker", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 18 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.DataProvider", + "type": "Interface", + "tags": [], + "label": "DataProvider", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 32 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.DataProvider.id", + "type": "string", + "tags": [], + "label": "id", + "description": [ + "Uniquely identifies a data provider" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 34 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.DataProvider.name", + "type": "string", + "tags": [], + "label": "name", + "description": [ + "Human readable" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 36 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.DataProvider.enabled", + "type": "boolean", + "tags": [], + "label": "enabled", + "description": [ + "\nWhen `false`, a data provider is temporarily disabled, but not removed from\nthe timeline. default: `true`" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 41 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.DataProvider.excluded", + "type": "boolean", + "tags": [], + "label": "excluded", + "description": [ + "\nWhen `true`, a data provider is excluding the match, but not removed from\nthe timeline. default: `false`" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 46 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.DataProvider.kqlQuery", + "type": "string", + "tags": [], + "label": "kqlQuery", + "description": [ + "\nReturns the KQL query who have been added by user" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 50 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.DataProvider.queryMatch", + "type": "Object", + "tags": [], + "label": "queryMatch", + "description": [ + "\nReturns a query properties that, when executed, returns the data for this provider" + ], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.QueryMatch", + "text": "QueryMatch" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 54 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.DataProvider.and", + "type": "Array", + "tags": [], + "label": "and", + "description": [ + "\nAdditional query clauses that are ANDed with this query to narrow results" + ], + "signature": [ + "Pick<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProvider", + "text": "DataProvider" + }, + ", \"type\" | \"enabled\" | \"id\" | \"name\" | \"excluded\" | \"kqlQuery\" | \"queryMatch\">[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 58 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.DataProvider.type", + "type": "CompoundType", + "tags": [], + "label": "type", + "description": [ + "\nReturns a DataProviderType" + ], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + " | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 62 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.DataProviderInput", + "type": "Interface", + "tags": [], + "label": "DataProviderInput", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 106 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.DataProviderInput.id", + "type": "CompoundType", + "tags": [], + "label": "id", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 107 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.DataProviderInput.name", + "type": "CompoundType", + "tags": [], + "label": "name", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 108 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.DataProviderInput.enabled", + "type": "CompoundType", + "tags": [], + "label": "enabled", + "description": [], + "signature": [ + "boolean | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 109 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.DataProviderInput.excluded", + "type": "CompoundType", + "tags": [], + "label": "excluded", + "description": [], + "signature": [ + "boolean | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 110 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.DataProviderInput.kqlQuery", + "type": "CompoundType", + "tags": [], + "label": "kqlQuery", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 111 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.DataProviderInput.queryMatch", + "type": "CompoundType", + "tags": [], + "label": "queryMatch", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.QueryMatchInput", + "text": "QueryMatchInput" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 112 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.DataProviderInput.and", + "type": "CompoundType", + "tags": [], + "label": "and", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderInput", + "text": "DataProviderInput" + }, + "[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 113 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.DataProviderInput.type", + "type": "CompoundType", + "tags": [], + "label": "type", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 114 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.DataProviderResult", + "type": "Interface", + "tags": [], + "label": "DataProviderResult", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 621 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.DataProviderResult.id", + "type": "CompoundType", + "tags": [], + "label": "id", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 622 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.DataProviderResult.name", + "type": "CompoundType", + "tags": [], + "label": "name", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 623 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.DataProviderResult.enabled", + "type": "CompoundType", + "tags": [], + "label": "enabled", + "description": [], + "signature": [ + "boolean | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 624 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.DataProviderResult.excluded", + "type": "CompoundType", + "tags": [], + "label": "excluded", + "description": [], + "signature": [ + "boolean | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 625 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.DataProviderResult.kqlQuery", + "type": "CompoundType", + "tags": [], + "label": "kqlQuery", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 626 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.DataProviderResult.queryMatch", + "type": "CompoundType", + "tags": [], + "label": "queryMatch", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.QueryMatchResult", + "text": "QueryMatchResult" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 627 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.DataProviderResult.type", + "type": "CompoundType", + "tags": [], + "label": "type", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 628 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.DataProviderResult.and", + "type": "CompoundType", + "tags": [], + "label": "and", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderResult", + "text": "DataProviderResult" + }, + "[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 629 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.DateRangePickerInput", + "type": "Interface", + "tags": [], + "label": "DateRangePickerInput", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 163 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.DateRangePickerInput.start", + "type": "CompoundType", + "tags": [], + "label": "start", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 164 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.DateRangePickerInput.end", + "type": "CompoundType", + "tags": [], + "label": "end", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 165 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.DateRangePickerResult", + "type": "Interface", + "tags": [], + "label": "DateRangePickerResult", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 640 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.DateRangePickerResult.start", + "type": "Any", + "tags": [], + "label": "start", + "description": [], + "signature": [ + "any" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 642 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.DateRangePickerResult.end", + "type": "Any", + "tags": [], + "label": "end", + "description": [], + "signature": [ + "any" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 644 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.EqlOptionsData", + "type": "Interface", + "tags": [], + "label": "EqlOptionsData", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 32 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.EqlOptionsData.keywordFields", + "type": "Array", + "tags": [], + "label": "keywordFields", + "description": [], + "signature": [ + "EuiComboBoxOptionOption", + "[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 33 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.EqlOptionsData.dateFields", + "type": "Array", + "tags": [], + "label": "dateFields", + "description": [], + "signature": [ + "EuiComboBoxOptionOption", + "[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 34 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.EqlOptionsData.nonDateFields", + "type": "Array", + "tags": [], + "label": "nonDateFields", + "description": [], + "signature": [ + "EuiComboBoxOptionOption", + "[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 35 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.EqlOptionsInput", + "type": "Interface", + "tags": [], + "label": "EqlOptionsInput", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 117 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.EqlOptionsInput.eventCategoryField", + "type": "CompoundType", + "tags": [], + "label": "eventCategoryField", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 118 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.EqlOptionsInput.tiebreakerField", + "type": "CompoundType", + "tags": [], + "label": "tiebreakerField", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 119 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.EqlOptionsInput.timestampField", + "type": "CompoundType", + "tags": [], + "label": "timestampField", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 120 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.EqlOptionsInput.query", + "type": "CompoundType", + "tags": [], + "label": "query", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 121 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.EqlOptionsInput.size", + "type": "CompoundType", + "tags": [], + "label": "size", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 122 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.EqlOptionsResult", + "type": "Interface", + "tags": [], + "label": "EqlOptionsResult", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 647 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.EqlOptionsResult.eventCategoryField", + "type": "CompoundType", + "tags": [], + "label": "eventCategoryField", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 648 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.EqlOptionsResult.tiebreakerField", + "type": "CompoundType", + "tags": [], + "label": "tiebreakerField", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 649 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.EqlOptionsResult.timestampField", + "type": "CompoundType", + "tags": [], + "label": "timestampField", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 650 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.EqlOptionsResult.query", + "type": "CompoundType", + "tags": [], + "label": "query", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 651 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.EqlOptionsResult.size", + "type": "Any", + "tags": [], + "label": "size", + "description": [], + "signature": [ + "any" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 653 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.EqlOptionsSelected", + "type": "Interface", + "tags": [], + "label": "EqlOptionsSelected", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 38 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.EqlOptionsSelected.eventCategoryField", + "type": "string", + "tags": [], + "label": "eventCategoryField", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 39 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.EqlOptionsSelected.tiebreakerField", + "type": "string", + "tags": [], + "label": "tiebreakerField", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 40 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.EqlOptionsSelected.timestampField", + "type": "string", + "tags": [], + "label": "timestampField", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 41 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.EqlOptionsSelected.query", + "type": "string", + "tags": [], + "label": "query", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 42 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.EqlOptionsSelected.size", + "type": "number", + "tags": [], + "label": "size", + "description": [], + "signature": [ + "number | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 43 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.EqlSearchResponse", + "type": "Interface", + "tags": [], + "label": "EqlSearchResponse", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.EqlSearchResponse", + "text": "EqlSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/eql/index.ts", + "lineNumber": 35 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.EqlSearchResponse.is_partial", + "type": "boolean", + "tags": [], + "label": "is_partial", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/eql/index.ts", + "lineNumber": 36 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.EqlSearchResponse.is_running", + "type": "boolean", + "tags": [], + "label": "is_running", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/eql/index.ts", + "lineNumber": 37 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.EqlSearchResponse.took", + "type": "number", + "tags": [], + "label": "took", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/eql/index.ts", + "lineNumber": 38 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.EqlSearchResponse.timed_out", + "type": "boolean", + "tags": [], + "label": "timed_out", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/eql/index.ts", + "lineNumber": 39 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.EqlSearchResponse.hits", + "type": "Object", + "tags": [], + "label": "hits", + "description": [], + "signature": [ + "{ total: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TotalValue", + "text": "TotalValue" + }, + "; sequences?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.EqlSequence", + "text": "EqlSequence" + }, + "[] | undefined; events?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.BaseHit", + "text": "BaseHit" + }, + "[] | undefined; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/eql/index.ts", + "lineNumber": 40 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.EqlSequence", + "type": "Interface", + "tags": [], + "label": "EqlSequence", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.EqlSequence", + "text": "EqlSequence" + }, + "" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/eql/index.ts", + "lineNumber": 30 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.EqlSequence.join_keys", + "type": "Array", + "tags": [], + "label": "join_keys", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SearchTypes", + "text": "SearchTypes" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/eql/index.ts", + "lineNumber": 31 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.EqlSequence.events", + "type": "Array", + "tags": [], + "label": "events", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.BaseHit", + "text": "BaseHit" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/eql/index.ts", + "lineNumber": 32 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ErrorResponse", + "type": "Interface", + "tags": [], + "label": "ErrorResponse", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/eql/validation/helpers.ts", + "lineNumber": 19 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.ErrorResponse.error", + "type": "CompoundType", + "tags": [], + "label": "error", + "description": [], + "signature": [ + "ErrorCause & { root_cause: ErrorCause[]; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/eql/validation/helpers.ts", + "lineNumber": 20 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.EventHit", + "type": "Interface", + "tags": [], + "label": "EventHit", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.EventHit", + "text": "EventHit" + }, + " extends ", + "SearchHit", + ">" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 77 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.EventHit.sort", + "type": "Array", + "tags": [], + "label": "sort", + "description": [], + "signature": [ + "string[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 78 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.EventHit.fields", + "type": "Object", + "tags": [], + "label": "fields", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Fields", + "text": "Fields" + }, + "" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 79 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.EventSource", + "type": "Interface", + "tags": [], + "label": "EventSource", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 71 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.EventSource.Unnamed", + "type": "Any", + "tags": [], + "label": "Unnamed", + "description": [], + "signature": [ + "any" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 73 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ExportedNotes", + "type": "Interface", + "tags": [], + "label": "ExportedNotes", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 420 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.ExportedNotes.eventNotes", + "type": "Array", + "tags": [], + "label": "eventNotes", + "description": [], + "signature": [ + "NoteSavedObject", + "[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 421 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ExportedNotes.globalNotes", + "type": "Array", + "tags": [], + "label": "globalNotes", + "description": [], + "signature": [ + "NoteSavedObject", + "[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 422 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ExportTimelineNotFoundError", + "type": "Interface", + "tags": [], + "label": "ExportTimelineNotFoundError", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 430 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.ExportTimelineNotFoundError.statusCode", + "type": "number", + "tags": [], + "label": "statusCode", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 431 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ExportTimelineNotFoundError.message", + "type": "string", + "tags": [], + "label": "message", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 432 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.Fields", + "type": "Interface", + "tags": [], + "label": "Fields", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Fields", + "text": "Fields" + }, + "" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 67 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.Fields.Unnamed", + "type": "Any", + "tags": [], + "label": "Unnamed", + "description": [], + "signature": [ + "any" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 68 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterMetaTimelineInput", + "type": "Interface", + "tags": [], + "label": "FilterMetaTimelineInput", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 125 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.FilterMetaTimelineInput.alias", + "type": "CompoundType", + "tags": [], + "label": "alias", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 126 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterMetaTimelineInput.controlledBy", + "type": "CompoundType", + "tags": [], + "label": "controlledBy", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 127 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterMetaTimelineInput.disabled", + "type": "CompoundType", + "tags": [], + "label": "disabled", + "description": [], + "signature": [ + "boolean | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 128 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterMetaTimelineInput.field", + "type": "CompoundType", + "tags": [], + "label": "field", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 129 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterMetaTimelineInput.formattedValue", + "type": "CompoundType", + "tags": [], + "label": "formattedValue", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 130 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterMetaTimelineInput.index", + "type": "CompoundType", + "tags": [], + "label": "index", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 131 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterMetaTimelineInput.key", + "type": "CompoundType", + "tags": [], + "label": "key", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 132 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterMetaTimelineInput.negate", + "type": "CompoundType", + "tags": [], + "label": "negate", + "description": [], + "signature": [ + "boolean | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 133 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterMetaTimelineInput.params", + "type": "CompoundType", + "tags": [], + "label": "params", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 134 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterMetaTimelineInput.type", + "type": "CompoundType", + "tags": [], + "label": "type", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 135 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterMetaTimelineInput.value", + "type": "CompoundType", + "tags": [], + "label": "value", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 136 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterMetaTimelineResult", + "type": "Interface", + "tags": [], + "label": "FilterMetaTimelineResult", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 666 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.FilterMetaTimelineResult.alias", + "type": "CompoundType", + "tags": [], + "label": "alias", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 667 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterMetaTimelineResult.controlledBy", + "type": "CompoundType", + "tags": [], + "label": "controlledBy", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 668 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterMetaTimelineResult.disabled", + "type": "CompoundType", + "tags": [], + "label": "disabled", + "description": [], + "signature": [ + "boolean | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 669 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterMetaTimelineResult.field", + "type": "CompoundType", + "tags": [], + "label": "field", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 670 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterMetaTimelineResult.formattedValue", + "type": "CompoundType", + "tags": [], + "label": "formattedValue", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 671 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterMetaTimelineResult.index", + "type": "CompoundType", + "tags": [], + "label": "index", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 672 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterMetaTimelineResult.key", + "type": "CompoundType", + "tags": [], + "label": "key", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 673 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterMetaTimelineResult.negate", + "type": "CompoundType", + "tags": [], + "label": "negate", + "description": [], + "signature": [ + "boolean | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 674 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterMetaTimelineResult.params", + "type": "CompoundType", + "tags": [], + "label": "params", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 675 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterMetaTimelineResult.type", + "type": "CompoundType", + "tags": [], + "label": "type", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 676 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterMetaTimelineResult.value", + "type": "CompoundType", + "tags": [], + "label": "value", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 677 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterTimelineInput", + "type": "Interface", + "tags": [], + "label": "FilterTimelineInput", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 139 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.FilterTimelineInput.exists", + "type": "CompoundType", + "tags": [], + "label": "exists", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 140 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterTimelineInput.meta", + "type": "CompoundType", + "tags": [], + "label": "meta", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.FilterMetaTimelineInput", + "text": "FilterMetaTimelineInput" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 141 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterTimelineInput.match_all", + "type": "CompoundType", + "tags": [], + "label": "match_all", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 142 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterTimelineInput.missing", + "type": "CompoundType", + "tags": [], + "label": "missing", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 143 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterTimelineInput.query", + "type": "CompoundType", + "tags": [], + "label": "query", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 144 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterTimelineInput.range", + "type": "CompoundType", + "tags": [], + "label": "range", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 145 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterTimelineInput.script", + "type": "CompoundType", + "tags": [], + "label": "script", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 146 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterTimelineResult", + "type": "Interface", + "tags": [], + "label": "FilterTimelineResult", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 656 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.FilterTimelineResult.exists", + "type": "CompoundType", + "tags": [], + "label": "exists", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 657 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterTimelineResult.meta", + "type": "CompoundType", + "tags": [], + "label": "meta", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.FilterMetaTimelineResult", + "text": "FilterMetaTimelineResult" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 658 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterTimelineResult.match_all", + "type": "CompoundType", + "tags": [], + "label": "match_all", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 659 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterTimelineResult.missing", + "type": "CompoundType", + "tags": [], + "label": "missing", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 660 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterTimelineResult.query", + "type": "CompoundType", + "tags": [], + "label": "query", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 661 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterTimelineResult.range", + "type": "CompoundType", + "tags": [], + "label": "range", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 662 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FilterTimelineResult.script", + "type": "CompoundType", + "tags": [], + "label": "script", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 663 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.GetAllTimelineVariables", + "type": "Interface", + "tags": [], + "label": "GetAllTimelineVariables", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 737 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.GetAllTimelineVariables.pageInfo", + "type": "Object", + "tags": [], + "label": "pageInfo", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.PageInfoTimeline", + "text": "PageInfoTimeline" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 738 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.GetAllTimelineVariables.search", + "type": "CompoundType", + "tags": [], + "label": "search", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 739 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.GetAllTimelineVariables.sort", + "type": "CompoundType", + "tags": [], + "label": "sort", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SortTimeline", + "text": "SortTimeline" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 740 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.GetAllTimelineVariables.onlyUserFavorite", + "type": "CompoundType", + "tags": [], + "label": "onlyUserFavorite", + "description": [], + "signature": [ + "boolean | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 741 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.GetAllTimelineVariables.timelineType", + "type": "CompoundType", + "tags": [], + "label": "timelineType", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 742 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.GetAllTimelineVariables.status", + "type": "CompoundType", + "tags": [], + "label": "status", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 743 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.HeaderActionProps", + "type": "Interface", + "tags": [], + "label": "HeaderActionProps", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 43 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.HeaderActionProps.width", + "type": "number", + "tags": [], + "label": "width", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 44 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.HeaderActionProps.browserFields", + "type": "Object", + "tags": [], + "label": "browserFields", + "description": [], + "signature": [ + "{ readonly [x: string]: Partial<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.BrowserField", + "text": "BrowserField" + }, + ">; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 45 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.HeaderActionProps.columnHeaders", + "type": "Array", + "tags": [], + "label": "columnHeaders", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ColumnHeaderOptions", + "text": "ColumnHeaderOptions" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 46 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.HeaderActionProps.isEventViewer", + "type": "CompoundType", + "tags": [], + "label": "isEventViewer", + "description": [], + "signature": [ + "boolean | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 47 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.HeaderActionProps.isSelectAllChecked", + "type": "boolean", + "tags": [], + "label": "isSelectAllChecked", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 48 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.HeaderActionProps.onSelectAll", + "type": "Function", + "tags": [], + "label": "onSelectAll", + "description": [], + "signature": [ + "({ isSelected }: { isSelected: boolean; }) => void" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 49 + }, + "deprecated": false, + "returnComment": [], + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.__0", + "type": "Object", + "tags": [], + "label": "__0", + "description": [], + "signature": [ + "{ isSelected: boolean; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 49 + }, + "deprecated": false + } + ] + }, + { + "parentPluginId": "timelines", + "id": "def-common.HeaderActionProps.showEventsSelect", + "type": "boolean", + "tags": [], + "label": "showEventsSelect", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 50 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.HeaderActionProps.showSelectAllCheckbox", + "type": "boolean", + "tags": [], + "label": "showSelectAllCheckbox", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 51 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.HeaderActionProps.sort", + "type": "Array", + "tags": [], + "label": "sort", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SortColumnTimeline", + "text": "SortColumnTimeline" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 52 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.HeaderActionProps.tabType", + "type": "Enum", + "tags": [], + "label": "tabType", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineTabs", + "text": "TimelineTabs" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 53 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.HeaderActionProps.timelineId", + "type": "string", + "tags": [], + "label": "timelineId", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 54 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.IndexField", + "type": "Interface", + "tags": [], + "label": "IndexField", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 27 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.IndexField.category", + "type": "string", + "tags": [], + "label": "category", + "description": [ + "Where the field belong" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 29 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.IndexField.example", + "type": "CompoundType", + "tags": [], + "label": "example", + "description": [ + "Example of field's value" + ], + "signature": [ + "string | number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 31 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.IndexField.indexes", + "type": "Array", + "tags": [], + "label": "indexes", + "description": [ + "whether the field's belong to an alias index" + ], + "signature": [ + "(string | null)[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 33 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.IndexField.name", + "type": "string", + "tags": [], + "label": "name", + "description": [ + "The name of the field" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 35 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.IndexField.type", + "type": "string", + "tags": [], + "label": "type", + "description": [ + "The type of the field's values as recognized by Kibana" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 37 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.IndexField.searchable", + "type": "boolean", + "tags": [], + "label": "searchable", + "description": [ + "Whether the field's values can be efficiently searched for" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 39 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.IndexField.aggregatable", + "type": "boolean", + "tags": [], + "label": "aggregatable", + "description": [ + "Whether the field's values can be aggregated" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 41 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.IndexField.description", + "type": "CompoundType", + "tags": [], + "label": "description", + "description": [ + "Description of the field" + ], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 43 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.IndexField.format", + "type": "CompoundType", + "tags": [], + "label": "format", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 44 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.IndexField.esTypes", + "type": "Array", + "tags": [], + "label": "esTypes", + "description": [ + "the elastic type as mapped in the index" + ], + "signature": [ + "string[] | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 46 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.IndexField.subType", + "type": "Object", + "tags": [], + "label": "subType", + "description": [], + "signature": [ + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataIndexPatternsPluginApi", + "section": "def-common.IFieldSubType", + "text": "IFieldSubType" + }, + " | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 47 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.IndexField.readFromDocValues", + "type": "boolean", + "tags": [], + "label": "readFromDocValues", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 48 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.IndexFieldsStrategyRequest", + "type": "Interface", + "tags": [], + "label": "IndexFieldsStrategyRequest", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.IndexFieldsStrategyRequest", + "text": "IndexFieldsStrategyRequest" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchRequest", + "text": "IEsSearchRequest" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 53 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.IndexFieldsStrategyRequest.indices", + "type": "Array", + "tags": [], + "label": "indices", + "description": [], + "signature": [ + "string[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 54 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.IndexFieldsStrategyRequest.onlyCheckIfIndicesExist", + "type": "boolean", + "tags": [], + "label": "onlyCheckIfIndicesExist", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 55 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.IndexFieldsStrategyResponse", + "type": "Interface", + "tags": [], + "label": "IndexFieldsStrategyResponse", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.IndexFieldsStrategyResponse", + "text": "IndexFieldsStrategyResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchResponse", + "text": "IEsSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 58 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.IndexFieldsStrategyResponse.indexFields", + "type": "Array", + "tags": [], + "label": "indexFields", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.IndexField", + "text": "IndexField" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 59 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.IndexFieldsStrategyResponse.indicesExist", + "type": "Array", + "tags": [], + "label": "indicesExist", + "description": [], + "signature": [ + "string[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 60 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.Inspect", + "type": "Interface", + "tags": [], + "label": "Inspect", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 21 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.Inspect.dsl", + "type": "Array", + "tags": [], + "label": "dsl", + "description": [], + "signature": [ + "string[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 22 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.KueryFilterQuery", + "type": "Interface", + "tags": [], + "label": "KueryFilterQuery", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 24 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.KueryFilterQuery.kind", + "type": "CompoundType", + "tags": [], + "label": "kind", + "description": [], + "signature": [ + "\"eql\" | \"lucene\" | \"kuery\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 25 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.KueryFilterQuery.expression", + "type": "string", + "tags": [], + "label": "expression", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 26 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.KueryFilterQueryInput", + "type": "Interface", + "tags": [], + "label": "KueryFilterQueryInput", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 158 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.KueryFilterQueryInput.kind", + "type": "CompoundType", + "tags": [], + "label": "kind", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 159 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.KueryFilterQueryInput.expression", + "type": "CompoundType", + "tags": [], + "label": "expression", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 160 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.KueryFilterQueryResult", + "type": "Interface", + "tags": [], + "label": "KueryFilterQueryResult", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 689 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.KueryFilterQueryResult.kind", + "type": "CompoundType", + "tags": [], + "label": "kind", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 690 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.KueryFilterQueryResult.expression", + "type": "CompoundType", + "tags": [], + "label": "expression", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 691 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.LastTimeDetails", + "type": "Interface", + "tags": [], + "label": "LastTimeDetails", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 19 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.LastTimeDetails.hostName", + "type": "CompoundType", + "tags": [], + "label": "hostName", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 20 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.LastTimeDetails.ip", + "type": "CompoundType", + "tags": [], + "label": "ip", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 21 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.PageInfoTimeline", + "type": "Interface", + "tags": [], + "label": "PageInfoTimeline", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 601 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.PageInfoTimeline.pageIndex", + "type": "number", + "tags": [], + "label": "pageIndex", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 602 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.PageInfoTimeline.pageSize", + "type": "number", + "tags": [], + "label": "pageSize", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 604 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.PaginationInputPaginated", + "type": "Interface", + "tags": [], + "label": "PaginationInputPaginated", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 44 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.PaginationInputPaginated.activePage", + "type": "number", + "tags": [], + "label": "activePage", + "description": [ + "The activePage parameter defines the page of results you want to fetch" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 46 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.PaginationInputPaginated.cursorStart", + "type": "number", + "tags": [], + "label": "cursorStart", + "description": [ + "The cursorStart parameter defines the start of the results to be displayed" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 48 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.PaginationInputPaginated.fakePossibleCount", + "type": "number", + "tags": [], + "label": "fakePossibleCount", + "description": [ + "The fakePossibleCount parameter determines the total count in order to show 5 additional pages" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 50 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.PaginationInputPaginated.querySize", + "type": "number", + "tags": [], + "label": "querySize", + "description": [ + "The querySize parameter is the number of items to be returned" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 52 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.QueryMatch", + "type": "Interface", + "tags": [], + "label": "QueryMatch", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 24 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.QueryMatch.field", + "type": "string", + "tags": [], + "label": "field", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 25 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.QueryMatch.displayField", + "type": "string", + "tags": [], + "label": "displayField", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 26 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.QueryMatch.value", + "type": "CompoundType", + "tags": [], + "label": "value", + "description": [], + "signature": [ + "string | number" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 27 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.QueryMatch.displayValue", + "type": "CompoundType", + "tags": [], + "label": "displayValue", + "description": [], + "signature": [ + "string | number | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 28 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.QueryMatch.operator", + "type": "CompoundType", + "tags": [], + "label": "operator", + "description": [], + "signature": [ + "\":\" | \":*\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 29 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.QueryMatchInput", + "type": "Interface", + "tags": [], + "label": "QueryMatchInput", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 94 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.QueryMatchInput.field", + "type": "CompoundType", + "tags": [], + "label": "field", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 95 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.QueryMatchInput.displayField", + "type": "CompoundType", + "tags": [], + "label": "displayField", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 97 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.QueryMatchInput.value", + "type": "CompoundType", + "tags": [], + "label": "value", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 99 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.QueryMatchInput.displayValue", + "type": "CompoundType", + "tags": [], + "label": "displayValue", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 101 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.QueryMatchInput.operator", + "type": "CompoundType", + "tags": [], + "label": "operator", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 103 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.QueryMatchResult", + "type": "Interface", + "tags": [], + "label": "QueryMatchResult", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 632 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.QueryMatchResult.field", + "type": "CompoundType", + "tags": [], + "label": "field", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 633 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.QueryMatchResult.displayField", + "type": "CompoundType", + "tags": [], + "label": "displayField", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 634 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.QueryMatchResult.value", + "type": "CompoundType", + "tags": [], + "label": "value", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 635 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.QueryMatchResult.displayValue", + "type": "CompoundType", + "tags": [], + "label": "displayValue", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 636 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.QueryMatchResult.operator", + "type": "CompoundType", + "tags": [], + "label": "operator", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 637 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ResponseTimeline", + "type": "Interface", + "tags": [], + "label": "ResponseTimeline", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 727 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.ResponseTimeline.code", + "type": "CompoundType", + "tags": [], + "label": "code", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 728 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ResponseTimeline.message", + "type": "CompoundType", + "tags": [], + "label": "message", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 729 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ResponseTimeline.timeline", + "type": "Object", + "tags": [], + "label": "timeline", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineResult", + "text": "TimelineResult" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 730 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.RowRenderer", + "type": "Interface", + "tags": [], + "label": "RowRenderer", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/rows/index.ts", + "lineNumber": 12 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.RowRenderer.id", + "type": "Enum", + "tags": [], + "label": "id", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/rows/index.ts", + "lineNumber": 13 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.RowRenderer.isInstance", + "type": "Function", + "tags": [], + "label": "isInstance", + "description": [], + "signature": [ + "(data: ", + "Ecs", + ") => boolean" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/rows/index.ts", + "lineNumber": 14 + }, + "deprecated": false, + "returnComment": [], + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.data", + "type": "Object", + "tags": [], + "label": "data", + "description": [], + "signature": [ + "Ecs" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/rows/index.ts", + "lineNumber": 14 + }, + "deprecated": false + } + ] + }, + { + "parentPluginId": "timelines", + "id": "def-common.RowRenderer.renderRow", + "type": "Function", + "tags": [], + "label": "renderRow", + "description": [], + "signature": [ + "({ browserFields, data, timelineId, }: { browserFields: Readonly>>; data: ", + "Ecs", + "; timelineId: string; }) => React.ReactNode" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/rows/index.ts", + "lineNumber": 15 + }, + "deprecated": false, + "returnComment": [], + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.__0", + "type": "Object", + "tags": [], + "label": "__0", + "description": [], + "signature": [ + "{ browserFields: Readonly>>; data: ", + "Ecs", + "; timelineId: string; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/rows/index.ts", + "lineNumber": 15 + }, + "deprecated": false + } + ] + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.SerializedFilterQuery", + "type": "Interface", + "tags": [], + "label": "SerializedFilterQuery", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 29 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.SerializedFilterQuery.kuery", + "type": "CompoundType", + "tags": [], + "label": "kuery", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.KueryFilterQuery", + "text": "KueryFilterQuery" + }, + " | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 30 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.SerializedFilterQuery.serializedQuery", + "type": "string", + "tags": [], + "label": "serializedQuery", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 31 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.SerializedFilterQueryInput", + "type": "Interface", + "tags": [], + "label": "SerializedFilterQueryInput", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 149 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.SerializedFilterQueryInput.filterQuery", + "type": "CompoundType", + "tags": [], + "label": "filterQuery", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SerializedKueryQueryInput", + "text": "SerializedKueryQueryInput" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 150 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.SerializedFilterQueryResult", + "type": "Interface", + "tags": [], + "label": "SerializedFilterQueryResult", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 680 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.SerializedFilterQueryResult.filterQuery", + "type": "CompoundType", + "tags": [], + "label": "filterQuery", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SerializedKueryQueryResult", + "text": "SerializedKueryQueryResult" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 681 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.SerializedKueryQueryInput", + "type": "Interface", + "tags": [], + "label": "SerializedKueryQueryInput", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 153 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.SerializedKueryQueryInput.kuery", + "type": "CompoundType", + "tags": [], + "label": "kuery", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.KueryFilterQueryInput", + "text": "KueryFilterQueryInput" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 154 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.SerializedKueryQueryInput.serializedQuery", + "type": "CompoundType", + "tags": [], + "label": "serializedQuery", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 155 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.SerializedKueryQueryResult", + "type": "Interface", + "tags": [], + "label": "SerializedKueryQueryResult", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 684 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.SerializedKueryQueryResult.kuery", + "type": "CompoundType", + "tags": [], + "label": "kuery", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.KueryFilterQueryResult", + "text": "KueryFilterQueryResult" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 685 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.SerializedKueryQueryResult.serializedQuery", + "type": "CompoundType", + "tags": [], + "label": "serializedQuery", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 686 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.SortColumnTimeline", + "type": "Interface", + "tags": [], + "label": "SortColumnTimeline", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 35 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.SortColumnTimeline.columnId", + "type": "string", + "tags": [], + "label": "columnId", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 36 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.SortColumnTimeline.columnType", + "type": "string", + "tags": [], + "label": "columnType", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 37 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.SortColumnTimeline.sortDirection", + "type": "CompoundType", + "tags": [], + "label": "sortDirection", + "description": [], + "signature": [ + "\"none\" | \"asc\" | \"desc\" | ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Direction", + "text": "Direction" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 38 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.SortField", + "type": "Interface", + "tags": [], + "label": "SortField", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SortField", + "text": "SortField" + }, + "" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 30 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.SortField.field", + "type": "Uncategorized", + "tags": [], + "label": "field", + "description": [], + "signature": [ + "Field" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 31 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.SortField.direction", + "type": "Enum", + "tags": [], + "label": "direction", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Direction", + "text": "Direction" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 32 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.SortTimeline", + "type": "Interface", + "tags": [], + "label": "SortTimeline", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 732 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.SortTimeline.sortField", + "type": "Enum", + "tags": [], + "label": "sortField", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SortFieldTimeline", + "text": "SortFieldTimeline" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 733 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.SortTimeline.sortOrder", + "type": "Enum", + "tags": [], + "label": "sortOrder", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Direction", + "text": "Direction" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 734 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.SortTimelineInput", + "type": "Interface", + "tags": [], + "label": "SortTimelineInput", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 168 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.SortTimelineInput.columnId", + "type": "CompoundType", + "tags": [], + "label": "columnId", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 169 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.SortTimelineInput.sortDirection", + "type": "CompoundType", + "tags": [], + "label": "sortDirection", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 170 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEdges", + "type": "Interface", + "tags": [], + "label": "TimelineEdges", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 13 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEdges.node", + "type": "Object", + "tags": [], + "label": "node", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineItem", + "text": "TimelineItem" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 14 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEdges.cursor", + "type": "Object", + "tags": [], + "label": "cursor", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.CursorType", + "text": "CursorType" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 15 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEqlRequestOptions", + "type": "Interface", + "tags": [], + "label": "TimelineEqlRequestOptions", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEqlRequestOptions", + "text": "TimelineEqlRequestOptions" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.EqlSearchStrategyRequest", + "text": "EqlSearchStrategyRequest" + }, + ",Pick<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsAllRequestOptions", + "text": "TimelineEventsAllRequestOptions" + }, + ", \"id\" | \"sort\" | \"fields\" | \"language\" | \"timerange\" | \"defaultIndex\" | \"pagination\" | \"filterQuery\" | \"docValueFields\" | \"factoryQueryType\" | \"indexType\" | \"fieldRequested\" | \"excludeEcsData\">" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 16 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEqlRequestOptions.eventCategoryField", + "type": "string", + "tags": [], + "label": "eventCategoryField", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 19 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEqlRequestOptions.tiebreakerField", + "type": "string", + "tags": [], + "label": "tiebreakerField", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 20 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEqlRequestOptions.timestampField", + "type": "string", + "tags": [], + "label": "timestampField", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 21 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEqlRequestOptions.size", + "type": "number", + "tags": [], + "label": "size", + "description": [], + "signature": [ + "number | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 22 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEqlResponse", + "type": "Interface", + "tags": [], + "label": "TimelineEqlResponse", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEqlResponse", + "text": "TimelineEqlResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.EqlSearchStrategyResponse", + "text": "EqlSearchStrategyResponse" + }, + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.EqlSearchResponse", + "text": "EqlSearchResponse" + }, + ">" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 25 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEqlResponse.edges", + "type": "Array", + "tags": [], + "label": "edges", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEdges", + "text": "TimelineEdges" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 26 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEqlResponse.totalCount", + "type": "number", + "tags": [], + "label": "totalCount", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 27 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEqlResponse.pageInfo", + "type": "Object", + "tags": [], + "label": "pageInfo", + "description": [], + "signature": [ + "{ activePage: number; querySize: number; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 28 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEqlResponse.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 29 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEventsAllRequestOptions", + "type": "Interface", + "tags": [], + "label": "TimelineEventsAllRequestOptions", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsAllRequestOptions", + "text": "TimelineEventsAllRequestOptions" + }, + " extends ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineRequestOptionsPaginated", + "text": "TimelineRequestOptionsPaginated" + }, + "" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 37 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEventsAllRequestOptions.fields", + "type": "CompoundType", + "tags": [], + "label": "fields", + "description": [], + "signature": [ + "string[] | { field: string; include_unmapped: boolean; }[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 38 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEventsAllRequestOptions.fieldRequested", + "type": "Array", + "tags": [], + "label": "fieldRequested", + "description": [], + "signature": [ + "string[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 39 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEventsAllRequestOptions.language", + "type": "CompoundType", + "tags": [], + "label": "language", + "description": [], + "signature": [ + "\"eql\" | \"lucene\" | \"kuery\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 40 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEventsAllRequestOptions.excludeEcsData", + "type": "CompoundType", + "tags": [], + "label": "excludeEcsData", + "description": [], + "signature": [ + "boolean | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 41 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEventsAllStrategyResponse", + "type": "Interface", + "tags": [], + "label": "TimelineEventsAllStrategyResponse", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsAllStrategyResponse", + "text": "TimelineEventsAllStrategyResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchResponse", + "text": "IEsSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 30 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEventsAllStrategyResponse.edges", + "type": "Array", + "tags": [], + "label": "edges", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEdges", + "text": "TimelineEdges" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 31 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEventsAllStrategyResponse.totalCount", + "type": "number", + "tags": [], + "label": "totalCount", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 32 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEventsAllStrategyResponse.pageInfo", + "type": "Object", + "tags": [], + "label": "pageInfo", + "description": [], + "signature": [ + "{ activePage: number; querySize: number; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 33 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEventsAllStrategyResponse.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 34 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEventsDetailsItem", + "type": "Interface", + "tags": [], + "label": "TimelineEventsDetailsItem", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", + "lineNumber": 12 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEventsDetailsItem.ariaRowindex", + "type": "CompoundType", + "tags": [], + "label": "ariaRowindex", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", + "lineNumber": 13 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEventsDetailsItem.category", + "type": "string", + "tags": [], + "label": "category", + "description": [], + "signature": [ + "string | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", + "lineNumber": 14 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEventsDetailsItem.field", + "type": "string", + "tags": [], + "label": "field", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", + "lineNumber": 15 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEventsDetailsItem.values", + "type": "CompoundType", + "tags": [], + "label": "values", + "description": [], + "signature": [ + "string[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", + "lineNumber": 16 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEventsDetailsItem.originalValue", + "type": "Any", + "tags": [], + "label": "originalValue", + "description": [], + "signature": [ + "any" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", + "lineNumber": 18 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEventsDetailsItem.isObjectArray", + "type": "boolean", + "tags": [], + "label": "isObjectArray", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", + "lineNumber": 19 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEventsDetailsRequestOptions", + "type": "Interface", + "tags": [], + "label": "TimelineEventsDetailsRequestOptions", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsDetailsRequestOptions", + "text": "TimelineEventsDetailsRequestOptions" + }, + " extends Partial<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineRequestOptionsPaginated", + "text": "TimelineRequestOptionsPaginated" + }, + ">" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", + "lineNumber": 27 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEventsDetailsRequestOptions.indexName", + "type": "string", + "tags": [], + "label": "indexName", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", + "lineNumber": 29 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEventsDetailsRequestOptions.eventId", + "type": "string", + "tags": [], + "label": "eventId", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", + "lineNumber": 30 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEventsDetailsStrategyResponse", + "type": "Interface", + "tags": [], + "label": "TimelineEventsDetailsStrategyResponse", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsDetailsStrategyResponse", + "text": "TimelineEventsDetailsStrategyResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchResponse", + "text": "IEsSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", + "lineNumber": 22 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEventsDetailsStrategyResponse.data", + "type": "CompoundType", + "tags": [], + "label": "data", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsDetailsItem", + "text": "TimelineEventsDetailsItem" + }, + "[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", + "lineNumber": 23 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEventsDetailsStrategyResponse.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", + "lineNumber": 24 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEventsLastEventTimeRequestOptions", + "type": "Interface", + "tags": [], + "label": "TimelineEventsLastEventTimeRequestOptions", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsLastEventTimeRequestOptions", + "text": "TimelineEventsLastEventTimeRequestOptions" + }, + " extends Pick<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineRequestBasicOptions", + "text": "TimelineRequestBasicOptions" + }, + ", \"id\" | \"params\" | \"defaultIndex\" | \"docValueFields\" | \"factoryQueryType\" | \"indexType\">" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 38 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEventsLastEventTimeRequestOptions.indexKey", + "type": "Enum", + "tags": [], + "label": "indexKey", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.LastEventIndexKey", + "text": "LastEventIndexKey" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 40 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEventsLastEventTimeRequestOptions.details", + "type": "Object", + "tags": [], + "label": "details", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.LastTimeDetails", + "text": "LastTimeDetails" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 41 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEventsLastEventTimeStrategyResponse", + "type": "Interface", + "tags": [], + "label": "TimelineEventsLastEventTimeStrategyResponse", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsLastEventTimeStrategyResponse", + "text": "TimelineEventsLastEventTimeStrategyResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchResponse", + "text": "IEsSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 24 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEventsLastEventTimeStrategyResponse.lastSeen", + "type": "CompoundType", + "tags": [], + "label": "lastSeen", + "description": [], + "signature": [ + "string | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 25 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEventsLastEventTimeStrategyResponse.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 26 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineInput", + "type": "Interface", + "tags": [], + "label": "TimelineInput", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 173 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.TimelineInput.columns", + "type": "CompoundType", + "tags": [], + "label": "columns", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ColumnHeaderInput", + "text": "ColumnHeaderInput" + }, + "[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 174 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineInput.dataProviders", + "type": "CompoundType", + "tags": [], + "label": "dataProviders", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderInput", + "text": "DataProviderInput" + }, + "[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 175 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineInput.description", + "type": "CompoundType", + "tags": [], + "label": "description", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 176 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineInput.eqlOptions", + "type": "CompoundType", + "tags": [], + "label": "eqlOptions", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.EqlOptionsInput", + "text": "EqlOptionsInput" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 177 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineInput.eventType", + "type": "CompoundType", + "tags": [], + "label": "eventType", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 178 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineInput.excludedRowRendererIds", + "type": "CompoundType", + "tags": [], + "label": "excludedRowRendererIds", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + "[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 179 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineInput.filters", + "type": "CompoundType", + "tags": [], + "label": "filters", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.FilterTimelineInput", + "text": "FilterTimelineInput" + }, + "[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 180 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineInput.kqlMode", + "type": "CompoundType", + "tags": [], + "label": "kqlMode", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 181 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineInput.kqlQuery", + "type": "CompoundType", + "tags": [], + "label": "kqlQuery", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SerializedFilterQueryInput", + "text": "SerializedFilterQueryInput" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 182 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineInput.indexNames", + "type": "CompoundType", + "tags": [], + "label": "indexNames", + "description": [], + "signature": [ + "string[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 183 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineInput.title", + "type": "CompoundType", + "tags": [], + "label": "title", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 184 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineInput.templateTimelineId", + "type": "CompoundType", + "tags": [], + "label": "templateTimelineId", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 185 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineInput.templateTimelineVersion", + "type": "CompoundType", + "tags": [], + "label": "templateTimelineVersion", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 186 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineInput.timelineType", + "type": "CompoundType", + "tags": [], + "label": "timelineType", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 187 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineInput.dateRange", + "type": "CompoundType", + "tags": [], + "label": "dateRange", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DateRangePickerInput", + "text": "DateRangePickerInput" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 188 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineInput.savedQueryId", + "type": "CompoundType", + "tags": [], + "label": "savedQueryId", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 189 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineInput.sort", + "type": "CompoundType", + "tags": [], + "label": "sort", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SortTimelineInput", + "text": "SortTimelineInput" + }, + "[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 190 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineInput.status", + "type": "CompoundType", + "tags": [], + "label": "status", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 191 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineItem", + "type": "Interface", + "tags": [], + "label": "TimelineItem", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 18 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.TimelineItem._id", + "type": "string", + "tags": [], + "label": "_id", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 19 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineItem._index", + "type": "CompoundType", + "tags": [], + "label": "_index", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 20 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineItem.data", + "type": "Array", + "tags": [], + "label": "data", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineNonEcsData", + "text": "TimelineNonEcsData" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 21 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineItem.ecs", + "type": "Object", + "tags": [], + "label": "ecs", + "description": [], + "signature": [ + "Ecs" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 22 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineKpiStrategyResponse", + "type": "Interface", + "tags": [], + "label": "TimelineKpiStrategyResponse", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineKpiStrategyResponse", + "text": "TimelineKpiStrategyResponse" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchResponse", + "text": "IEsSearchResponse" + }, + "" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 29 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.TimelineKpiStrategyResponse.destinationIpCount", + "type": "number", + "tags": [], + "label": "destinationIpCount", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 30 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineKpiStrategyResponse.inspect", + "type": "CompoundType", + "tags": [], + "label": "inspect", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Inspect", + "text": "Inspect" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 31 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineKpiStrategyResponse.hostCount", + "type": "number", + "tags": [], + "label": "hostCount", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 32 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineKpiStrategyResponse.processCount", + "type": "number", + "tags": [], + "label": "processCount", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 33 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineKpiStrategyResponse.sourceIpCount", + "type": "number", + "tags": [], + "label": "sourceIpCount", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 34 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineKpiStrategyResponse.userCount", + "type": "number", + "tags": [], + "label": "userCount", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 35 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineNonEcsData", + "type": "Interface", + "tags": [], + "label": "TimelineNonEcsData", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 25 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.TimelineNonEcsData.field", + "type": "string", + "tags": [], + "label": "field", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 26 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineNonEcsData.value", + "type": "CompoundType", + "tags": [], + "label": "value", + "description": [], + "signature": [ + "string[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", + "lineNumber": 27 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelinePersistInput", + "type": "Interface", + "tags": [], + "label": "TimelinePersistInput", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 41 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.TimelinePersistInput.id", + "type": "string", + "tags": [], + "label": "id", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 42 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelinePersistInput.dataProviders", + "type": "Array", + "tags": [], + "label": "dataProviders", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProvider", + "text": "DataProvider" + }, + "[] | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 43 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelinePersistInput.dateRange", + "type": "Object", + "tags": [], + "label": "dateRange", + "description": [], + "signature": [ + "{ start: string; end: string; } | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 44 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelinePersistInput.excludedRowRendererIds", + "type": "Array", + "tags": [], + "label": "excludedRowRendererIds", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + "[] | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 48 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelinePersistInput.expandedDetail", + "type": "Object", + "tags": [], + "label": "expandedDetail", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineExpandedDetail", + "text": "TimelineExpandedDetail" + }, + " | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 49 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelinePersistInput.filters", + "type": "Array", + "tags": [], + "label": "filters", + "description": [], + "signature": [ + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataPluginApi", + "section": "def-common.Filter", + "text": "Filter" + }, + "[] | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 50 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelinePersistInput.columns", + "type": "Array", + "tags": [], + "label": "columns", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ColumnHeaderOptions", + "text": "ColumnHeaderOptions" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 51 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelinePersistInput.itemsPerPage", + "type": "number", + "tags": [], + "label": "itemsPerPage", + "description": [], + "signature": [ + "number | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 52 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelinePersistInput.indexNames", + "type": "Array", + "tags": [], + "label": "indexNames", + "description": [], + "signature": [ + "string[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 53 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelinePersistInput.kqlQuery", + "type": "Object", + "tags": [], + "label": "kqlQuery", + "description": [], + "signature": [ + "{ filterQuery: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SerializedFilterQuery", + "text": "SerializedFilterQuery" + }, + " | null; } | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 54 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelinePersistInput.show", + "type": "CompoundType", + "tags": [], + "label": "show", + "description": [], + "signature": [ + "boolean | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 57 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelinePersistInput.sort", + "type": "Array", + "tags": [], + "label": "sort", + "description": [], + "signature": [ + "({ columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; } | { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; }[])[] | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 58 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelinePersistInput.showCheckboxes", + "type": "CompoundType", + "tags": [], + "label": "showCheckboxes", + "description": [], + "signature": [ + "boolean | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 59 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelinePersistInput.timelineType", + "type": "CompoundType", + "tags": [], + "label": "timelineType", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + " | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 60 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelinePersistInput.templateTimelineId", + "type": "CompoundType", + "tags": [], + "label": "templateTimelineId", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 61 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelinePersistInput.templateTimelineVersion", + "type": "CompoundType", + "tags": [], + "label": "templateTimelineVersion", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 62 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineRequestBasicOptions", + "type": "Interface", + "tags": [], + "label": "TimelineRequestBasicOptions", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineRequestBasicOptions", + "text": "TimelineRequestBasicOptions" + }, + " extends ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataSearchPluginApi", + "section": "def-common.IEsSearchRequest", + "text": "IEsSearchRequest" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 38 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.TimelineRequestBasicOptions.timerange", + "type": "Object", + "tags": [], + "label": "timerange", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimerangeInput", + "text": "TimerangeInput" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 39 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineRequestBasicOptions.filterQuery", + "type": "CompoundType", + "tags": [], + "label": "filterQuery", + "description": [], + "signature": [ + "string | ", + "JsonObject", + " | ", + "ESRangeQuery", + " | ", + "ESQueryStringQuery", + " | ", + "ESMatchQuery", + " | ", + "ESTermQuery", + " | ", + "ESBoolQuery", + " | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 40 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineRequestBasicOptions.defaultIndex", + "type": "Array", + "tags": [], + "label": "defaultIndex", + "description": [], + "signature": [ + "string[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 41 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineRequestBasicOptions.docValueFields", + "type": "Array", + "tags": [], + "label": "docValueFields", + "description": [], + "signature": [ + "SearchDocValueField", + "[] | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 42 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineRequestBasicOptions.factoryQueryType", + "type": "CompoundType", + "tags": [], + "label": "factoryQueryType", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsQueries", + "text": "TimelineEventsQueries" + }, + " | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 43 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineRequestOptionsPaginated", + "type": "Interface", + "tags": [], + "label": "TimelineRequestOptionsPaginated", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineRequestOptionsPaginated", + "text": "TimelineRequestOptionsPaginated" + }, + " extends ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineRequestBasicOptions", + "text": "TimelineRequestBasicOptions" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 50 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.TimelineRequestOptionsPaginated.pagination", + "type": "Object", + "tags": [], + "label": "pagination", + "description": [], + "signature": [ + "{ activePage: number; querySize: number; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 52 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineRequestOptionsPaginated.sort", + "type": "Array", + "tags": [], + "label": "sort", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineRequestSortField", + "text": "TimelineRequestSortField" + }, + "[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 53 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineRequestSortField", + "type": "Interface", + "tags": [], + "label": "TimelineRequestSortField", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineRequestSortField", + "text": "TimelineRequestSortField" + }, + " extends ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SortField", + "text": "SortField" + }, + "" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 46 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.TimelineRequestSortField.type", + "type": "string", + "tags": [], + "label": "type", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 47 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineResult", + "type": "Interface", + "tags": [], + "label": "TimelineResult", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 694 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.TimelineResult.columns", + "type": "CompoundType", + "tags": [], + "label": "columns", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ColumnHeaderResult", + "text": "ColumnHeaderResult" + }, + "[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 695 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineResult.created", + "type": "CompoundType", + "tags": [], + "label": "created", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 696 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineResult.createdBy", + "type": "CompoundType", + "tags": [], + "label": "createdBy", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 697 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineResult.dataProviders", + "type": "CompoundType", + "tags": [], + "label": "dataProviders", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderResult", + "text": "DataProviderResult" + }, + "[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 698 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineResult.dateRange", + "type": "CompoundType", + "tags": [], + "label": "dateRange", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DateRangePickerResult", + "text": "DateRangePickerResult" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 699 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineResult.description", + "type": "CompoundType", + "tags": [], + "label": "description", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 700 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineResult.eqlOptions", + "type": "CompoundType", + "tags": [], + "label": "eqlOptions", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.EqlOptionsResult", + "text": "EqlOptionsResult" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 701 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineResult.eventIdToNoteIds", + "type": "CompoundType", + "tags": [], + "label": "eventIdToNoteIds", + "description": [], + "signature": [ + "NoteResult", + "[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 702 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineResult.eventType", + "type": "CompoundType", + "tags": [], + "label": "eventType", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 703 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineResult.excludedRowRendererIds", + "type": "CompoundType", + "tags": [], + "label": "excludedRowRendererIds", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + "[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 704 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineResult.favorite", + "type": "CompoundType", + "tags": [], + "label": "favorite", + "description": [], + "signature": [ + "{ fullName?: string | null | undefined; userName?: string | null | undefined; favoriteDate?: number | null | undefined; }[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 705 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineResult.filters", + "type": "CompoundType", + "tags": [], + "label": "filters", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.FilterTimelineResult", + "text": "FilterTimelineResult" + }, + "[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 706 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineResult.kqlMode", + "type": "CompoundType", + "tags": [], + "label": "kqlMode", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 707 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineResult.kqlQuery", + "type": "CompoundType", + "tags": [], + "label": "kqlQuery", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SerializedFilterQueryResult", + "text": "SerializedFilterQueryResult" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 708 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineResult.indexNames", + "type": "CompoundType", + "tags": [], + "label": "indexNames", + "description": [], + "signature": [ + "string[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 709 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineResult.notes", + "type": "CompoundType", + "tags": [], + "label": "notes", + "description": [], + "signature": [ + "NoteResult", + "[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 710 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineResult.noteIds", + "type": "CompoundType", + "tags": [], + "label": "noteIds", + "description": [], + "signature": [ + "string[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 711 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineResult.pinnedEventIds", + "type": "CompoundType", + "tags": [], + "label": "pinnedEventIds", + "description": [], + "signature": [ + "string[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 712 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineResult.pinnedEventsSaveObject", + "type": "CompoundType", + "tags": [], + "label": "pinnedEventsSaveObject", + "description": [], + "signature": [ + "PinnedEvent", + "[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 713 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineResult.savedQueryId", + "type": "CompoundType", + "tags": [], + "label": "savedQueryId", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 714 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineResult.savedObjectId", + "type": "string", + "tags": [], + "label": "savedObjectId", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 715 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineResult.sort", + "type": "CompoundType", + "tags": [], + "label": "sort", + "description": [], + "signature": [ + "{ columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; } | { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; }[] | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 716 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineResult.status", + "type": "CompoundType", + "tags": [], + "label": "status", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 717 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineResult.title", + "type": "CompoundType", + "tags": [], + "label": "title", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 718 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineResult.templateTimelineId", + "type": "CompoundType", + "tags": [], + "label": "templateTimelineId", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 719 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineResult.templateTimelineVersion", + "type": "CompoundType", + "tags": [], + "label": "templateTimelineVersion", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 720 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineResult.timelineType", + "type": "CompoundType", + "tags": [], + "label": "timelineType", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + " | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 721 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineResult.updated", + "type": "CompoundType", + "tags": [], + "label": "updated", + "description": [], + "signature": [ + "number | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 722 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineResult.updatedBy", + "type": "CompoundType", + "tags": [], + "label": "updatedBy", + "description": [], + "signature": [ + "string | null | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 723 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineResult.version", + "type": "string", + "tags": [], + "label": "version", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 724 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimerangeFilter", + "type": "Interface", + "tags": [], + "label": "TimerangeFilter", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 57 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.TimerangeFilter.range", + "type": "Object", + "tags": [], + "label": "range", + "description": [], + "signature": [ + "{ [timestamp: string]: { gte: string; lte: string; format: string; }; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 58 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimerangeInput", + "type": "Interface", + "tags": [], + "label": "TimerangeInput", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 35 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.TimerangeInput.interval", + "type": "string", + "tags": [], + "label": "interval", + "description": [ + "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." + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 37 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimerangeInput.to", + "type": "string", + "tags": [], + "label": "to", + "description": [ + "The end of the timerange" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 39 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimerangeInput.from", + "type": "string", + "tags": [], + "label": "from", + "description": [ + "The beginning of the timerange" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 41 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TotalValue", + "type": "Interface", + "tags": [], + "label": "TotalValue", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 11 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.TotalValue.value", + "type": "number", + "tags": [], + "label": "value", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 12 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TotalValue.relation", + "type": "string", + "tags": [], + "label": "relation", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 13 + }, + "deprecated": false + } + ], + "initialIsOpen": false + } + ], + "enums": [ + { + "parentPluginId": "timelines", + "id": "def-common.DataProviderType", + "type": "Enum", + "tags": [], + "label": "DataProviderType", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 74 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.Direction", + "type": "Enum", + "tags": [], + "label": "Direction", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 25 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FlowDirection", + "type": "Enum", + "tags": [], + "label": "FlowDirection", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 194 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.LastEventIndexKey", + "type": "Enum", + "tags": [], + "label": "LastEventIndexKey", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", + "lineNumber": 12 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.RowRendererId", + "type": "Enum", + "tags": [], + "label": "RowRendererId", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 211 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.SortFieldTimeline", + "type": "Enum", + "tags": [], + "label": "SortFieldTimeline", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 525 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TemplateTimelineType", + "type": "Enum", + "tags": [], + "label": "TemplateTimelineType", + "description": [ + "\nTimeline template type" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 237 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEventsQueries", + "type": "Enum", + "tags": [], + "label": "TimelineEventsQueries", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/index.ts", + "lineNumber": 13 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineId", + "type": "Enum", + "tags": [], + "label": "TimelineId", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 311 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineStatus", + "type": "Enum", + "tags": [], + "label": "TimelineStatus", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 192 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineTabs", + "type": "Enum", + "tags": [], + "label": "TimelineTabs", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 459 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineType", + "type": "Enum", + "tags": [], + "label": "TimelineType", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 260 + }, + "deprecated": false, + "initialIsOpen": false + } + ], + "misc": [ + { + "parentPluginId": "timelines", + "id": "def-common.AllTimelineSavedObject", + "type": "Type", + "tags": [], + "label": "AllTimelineSavedObject", + "description": [], + "signature": [ + "{ total: number; data: { columns?: { aggregatable?: boolean | null | undefined; category?: string | null | undefined; columnHeaderType?: string | null | undefined; description?: string | null | undefined; example?: string | null | undefined; indexes?: string[] | null | undefined; id?: string | null | undefined; name?: string | null | undefined; placeholder?: string | null | undefined; searchable?: boolean | null | undefined; type?: string | null | undefined; }[] | null | undefined; dataProviders?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; and?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; }[] | null | undefined; type?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + " | null | undefined; }[] | null | undefined; description?: string | null | undefined; eqlOptions?: { eventCategoryField?: string | null | undefined; query?: string | null | undefined; tiebreakerField?: string | null | undefined; timestampField?: string | null | undefined; size?: string | number | null | undefined; } | null | undefined; eventType?: string | null | undefined; excludedRowRendererIds?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + "[] | null | undefined; favorite?: { keySearch?: string | null | undefined; favoriteDate?: number | null | undefined; fullName?: string | null | undefined; userName?: string | null | undefined; }[] | null | undefined; filters?: { exists?: string | null | undefined; meta?: { alias?: string | null | undefined; controlledBy?: string | null | undefined; disabled?: boolean | null | undefined; field?: string | null | undefined; formattedValue?: string | null | undefined; index?: string | null | undefined; key?: string | null | undefined; negate?: boolean | null | undefined; params?: string | null | undefined; type?: string | null | undefined; value?: string | null | undefined; } | null | undefined; match_all?: string | null | undefined; missing?: string | null | undefined; query?: string | null | undefined; range?: string | null | undefined; script?: string | null | undefined; }[] | null | undefined; indexNames?: string[] | null | undefined; kqlMode?: string | null | undefined; kqlQuery?: { filterQuery?: { kuery?: { kind?: string | null | undefined; expression?: string | null | undefined; } | null | undefined; serializedQuery?: string | null | undefined; } | null | undefined; } | null | undefined; title?: string | null | undefined; templateTimelineId?: string | null | undefined; templateTimelineVersion?: number | null | undefined; timelineType?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + " | null | undefined; dateRange?: { start?: string | number | null | undefined; end?: string | number | null | undefined; } | null | undefined; savedQueryId?: string | null | undefined; sort?: { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; } | { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; }[] | null | undefined; status?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + " | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { savedObjectId: string; version: string; } & { eventIdToNoteIds?: ({ timelineId: string | null; } & { eventId?: string | null | undefined; note?: string | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { noteId: string; version: string; } & { timelineVersion?: string | null | undefined; })[] | undefined; noteIds?: string[] | undefined; notes?: ({ timelineId: string | null; } & { eventId?: string | null | undefined; note?: string | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { noteId: string; version: string; } & { timelineVersion?: string | null | undefined; })[] | undefined; pinnedEventIds?: string[] | undefined; pinnedEventsSaveObject?: ({ pinnedEventId: string; version: string; } & { timelineId: string; eventId: string; } & { created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { timelineVersion?: string | null | undefined; })[] | undefined; }; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 411 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.AllTimelinesResponse", + "type": "Type", + "tags": [], + "label": "AllTimelinesResponse", + "description": [], + "signature": [ + "{ timeline: ({ columns?: { aggregatable?: boolean | null | undefined; category?: string | null | undefined; columnHeaderType?: string | null | undefined; description?: string | null | undefined; example?: string | null | undefined; indexes?: string[] | null | undefined; id?: string | null | undefined; name?: string | null | undefined; placeholder?: string | null | undefined; searchable?: boolean | null | undefined; type?: string | null | undefined; }[] | null | undefined; dataProviders?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; and?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; }[] | null | undefined; type?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + " | null | undefined; }[] | null | undefined; description?: string | null | undefined; eqlOptions?: { eventCategoryField?: string | null | undefined; query?: string | null | undefined; tiebreakerField?: string | null | undefined; timestampField?: string | null | undefined; size?: string | number | null | undefined; } | null | undefined; eventType?: string | null | undefined; excludedRowRendererIds?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + "[] | null | undefined; favorite?: { keySearch?: string | null | undefined; favoriteDate?: number | null | undefined; fullName?: string | null | undefined; userName?: string | null | undefined; }[] | null | undefined; filters?: { exists?: string | null | undefined; meta?: { alias?: string | null | undefined; controlledBy?: string | null | undefined; disabled?: boolean | null | undefined; field?: string | null | undefined; formattedValue?: string | null | undefined; index?: string | null | undefined; key?: string | null | undefined; negate?: boolean | null | undefined; params?: string | null | undefined; type?: string | null | undefined; value?: string | null | undefined; } | null | undefined; match_all?: string | null | undefined; missing?: string | null | undefined; query?: string | null | undefined; range?: string | null | undefined; script?: string | null | undefined; }[] | null | undefined; indexNames?: string[] | null | undefined; kqlMode?: string | null | undefined; kqlQuery?: { filterQuery?: { kuery?: { kind?: string | null | undefined; expression?: string | null | undefined; } | null | undefined; serializedQuery?: string | null | undefined; } | null | undefined; } | null | undefined; title?: string | null | undefined; templateTimelineId?: string | null | undefined; templateTimelineVersion?: number | null | undefined; timelineType?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + " | null | undefined; dateRange?: { start?: string | number | null | undefined; end?: string | number | null | undefined; } | null | undefined; savedQueryId?: string | null | undefined; sort?: { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; } | { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; }[] | null | undefined; status?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + " | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { savedObjectId: string; version: string; } & { eventIdToNoteIds?: ({ timelineId: string | null; } & { eventId?: string | null | undefined; note?: string | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { noteId: string; version: string; } & { timelineVersion?: string | null | undefined; })[] | undefined; noteIds?: string[] | undefined; notes?: ({ timelineId: string | null; } & { eventId?: string | null | undefined; note?: string | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { noteId: string; version: string; } & { timelineVersion?: string | null | undefined; })[] | undefined; pinnedEventIds?: string[] | undefined; pinnedEventsSaveObject?: ({ pinnedEventId: string; version: string; } & { timelineId: string; eventId: string; } & { created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { timelineVersion?: string | null | undefined; })[] | undefined; })[]; totalCount: number; } & { defaultTimelineCount: number; templateTimelineCount: number; elasticTemplateTimelineCount: number; customTemplateTimelineCount: number; favoriteCount: number; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 599 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ARIA_COLINDEX_ATTRIBUTE", + "type": "string", + "tags": [], + "label": "ARIA_COLINDEX_ATTRIBUTE", + "description": [ + "\nThe name of the ARIA attribute representing a column, used in conjunction with\nthe ARIA: grid role https://www.w3.org/TR/wai-aria-practices-1.1/examples/grid/dataGrids.html" + ], + "signature": [ + "\"aria-colindex\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 20 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ARIA_ROWINDEX_ATTRIBUTE", + "type": "string", + "tags": [], + "label": "ARIA_ROWINDEX_ATTRIBUTE", + "description": [ + "\nThe name of the ARIA attribute representing a row, used in conjunction with\nthe ARIA: grid role https://www.w3.org/TR/wai-aria-practices-1.1/examples/grid/dataGrids.html" + ], + "signature": [ + "\"aria-rowindex\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 35 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.BeatFields", + "type": "Type", + "tags": [], + "label": "BeatFields", + "description": [], + "signature": [ + "{ [x: string]: FieldInfo; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 51 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.BeatFieldsFactoryQueryType", + "type": "Type", + "tags": [], + "label": "BeatFieldsFactoryQueryType", + "description": [], + "signature": [ + "\"beatFields\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 16 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.BrowserFields", + "type": "Type", + "tags": [], + "label": "BrowserFields", + "description": [], + "signature": [ + "{ readonly [x: string]: Partial<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.BrowserField", + "text": "BrowserField" + }, + ">; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 82 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.CellValueElementProps", + "type": "Type", + "tags": [], + "label": "CellValueElementProps", + "description": [ + "The following props are provided to the function called by `renderCellValue`" + ], + "signature": [ + "EuiDataGridCellValueElementProps", + " & { data: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineNonEcsData", + "text": "TimelineNonEcsData" + }, + "[]; eventId: string; header: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ColumnHeaderOptions", + "text": "ColumnHeaderOptions" + }, + "; linkValues: string[] | undefined; timelineId: string; setFlyoutAlert?: ((data: any) => void) | undefined; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/cells/index.ts", + "lineNumber": 13 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ColumnHeaderOptions", + "type": "Type", + "tags": [], + "label": "ColumnHeaderOptions", + "description": [ + "The specification of a column header" + ], + "signature": [ + "Pick<", + "EuiDataGridColumn", + ", \"id\" | \"display\" | \"displayAsText\" | \"initialWidth\"> & { aggregatable?: boolean | undefined; category?: string | undefined; columnHeaderType: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ColumnHeaderType", + "text": "ColumnHeaderType" + }, + "; description?: string | undefined; example?: string | undefined; format?: string | undefined; linkField?: string | undefined; placeholder?: string | undefined; subType?: ", + { + "pluginId": "data", + "scope": "common", + "docId": "kibDataIndexPatternsPluginApi", + "section": "def-common.IFieldSubType", + "text": "IFieldSubType" + }, + " | undefined; type?: string | undefined; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.ts", + "lineNumber": 19 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ColumnHeaderType", + "type": "Type", + "tags": [], + "label": "ColumnHeaderType", + "description": [], + "signature": [ + "\"not-filtered\" | \"text-filter\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.ts", + "lineNumber": 13 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ColumnId", + "type": "Type", + "tags": [], + "label": "ColumnId", + "description": [ + "Uniquely identifies a column" + ], + "signature": [ + "string" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.ts", + "lineNumber": 16 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ControlColumnProps", + "type": "Type", + "tags": [], + "label": "ControlColumnProps", + "description": [], + "signature": [ + "Pick<", + "EuiDataGridControlColumn", + ", never> & Partial" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 88 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.DATA_COLINDEX_ATTRIBUTE", + "type": "string", + "tags": [], + "label": "DATA_COLINDEX_ATTRIBUTE", + "description": [ + "\nThis alternative attribute to `aria-colindex` is used to decorate the data\nin existing `EuiTable`s to enable keyboard navigation with minimal\nrefactoring of existing code until we're ready to migrate to `EuiDataGrid`.\nIt may be applied directly to keyboard-focusable elements and thus doesn't\nhave exactly the same semantics as `aria-colindex`." + ], + "signature": [ + "\"data-colindex\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 29 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.DATA_ROWINDEX_ATTRIBUTE", + "type": "string", + "tags": [], + "label": "DATA_ROWINDEX_ATTRIBUTE", + "description": [ + "\nThis alternative attribute to `aria-rowindex` is used to decorate the data\nin existing `EuiTable`s to enable keyboard navigation with minimal\nrefactoring of existing code until we're ready to migrate to `EuiDataGrid`.\nIt's typically applied to `` elements via `EuiTable`'s `rowProps` prop." + ], + "signature": [ + "\"data-rowindex\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 43 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.DataProvidersAnd", + "type": "Type", + "tags": [], + "label": "DataProvidersAnd", + "description": [], + "signature": [ + "{ type?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + " | undefined; enabled: boolean; id: string; name: string; excluded: boolean; kqlQuery: string; queryMatch: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.QueryMatch", + "text": "QueryMatch" + }, + "; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 65 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.DocValueFields", + "type": "Type", + "tags": [], + "label": "DocValueFields", + "description": [], + "signature": [ + "SearchDocValueField" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 55 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.EMPTY_DOCVALUE_FIELD", + "type": "Array", + "tags": [], + "label": "EMPTY_DOCVALUE_FIELD", + "description": [], + "signature": [ + "SearchDocValueField", + "[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 85 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ErrorSchema", + "type": "Type", + "tags": [], + "label": "ErrorSchema", + "description": [], + "signature": [ + "{ error: { status_code: number; message: string; }; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 35 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.EXISTS_OPERATOR", + "type": "string", + "tags": [], + "label": "EXISTS_OPERATOR", + "description": [ + "The `exists` operator in a KQL query" + ], + "signature": [ + "\":*\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 14 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ExportedEventNotes", + "type": "Type", + "tags": [], + "label": "ExportedEventNotes", + "description": [], + "signature": [ + "NoteSavedObject", + "[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 418 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ExportedGlobalNotes", + "type": "Type", + "tags": [], + "label": "ExportedGlobalNotes", + "description": [ + "\nImport/export timelines" + ], + "signature": [ + "NoteSavedObject", + "[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 417 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ExportedTimelines", + "type": "Type", + "tags": [], + "label": "ExportedTimelines", + "description": [], + "signature": [ + "{ columns?: { aggregatable?: boolean | null | undefined; category?: string | null | undefined; columnHeaderType?: string | null | undefined; description?: string | null | undefined; example?: string | null | undefined; indexes?: string[] | null | undefined; id?: string | null | undefined; name?: string | null | undefined; placeholder?: string | null | undefined; searchable?: boolean | null | undefined; type?: string | null | undefined; }[] | null | undefined; dataProviders?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; and?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; }[] | null | undefined; type?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + " | null | undefined; }[] | null | undefined; description?: string | null | undefined; eqlOptions?: { eventCategoryField?: string | null | undefined; query?: string | null | undefined; tiebreakerField?: string | null | undefined; timestampField?: string | null | undefined; size?: string | number | null | undefined; } | null | undefined; eventType?: string | null | undefined; excludedRowRendererIds?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + "[] | null | undefined; favorite?: { keySearch?: string | null | undefined; favoriteDate?: number | null | undefined; fullName?: string | null | undefined; userName?: string | null | undefined; }[] | null | undefined; filters?: { exists?: string | null | undefined; meta?: { alias?: string | null | undefined; controlledBy?: string | null | undefined; disabled?: boolean | null | undefined; field?: string | null | undefined; formattedValue?: string | null | undefined; index?: string | null | undefined; key?: string | null | undefined; negate?: boolean | null | undefined; params?: string | null | undefined; type?: string | null | undefined; value?: string | null | undefined; } | null | undefined; match_all?: string | null | undefined; missing?: string | null | undefined; query?: string | null | undefined; range?: string | null | undefined; script?: string | null | undefined; }[] | null | undefined; indexNames?: string[] | null | undefined; kqlMode?: string | null | undefined; kqlQuery?: { filterQuery?: { kuery?: { kind?: string | null | undefined; expression?: string | null | undefined; } | null | undefined; serializedQuery?: string | null | undefined; } | null | undefined; } | null | undefined; title?: string | null | undefined; templateTimelineId?: string | null | undefined; templateTimelineVersion?: number | null | undefined; timelineType?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + " | null | undefined; dateRange?: { start?: string | number | null | undefined; end?: string | number | null | undefined; } | null | undefined; savedQueryId?: string | null | undefined; sort?: { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; } | { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; }[] | null | undefined; status?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + " | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { savedObjectId: string; version: string; } & { eventIdToNoteIds?: ({ timelineId: string | null; } & { eventId?: string | null | undefined; note?: string | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { noteId: string; version: string; } & { timelineVersion?: string | null | undefined; })[] | undefined; noteIds?: string[] | undefined; notes?: ({ timelineId: string | null; } & { eventId?: string | null | undefined; note?: string | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { noteId: string; version: string; } & { timelineVersion?: string | null | undefined; })[] | undefined; pinnedEventIds?: string[] | undefined; pinnedEventsSaveObject?: ({ pinnedEventId: string; version: string; } & { timelineId: string; eventId: string; } & { created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { timelineVersion?: string | null | undefined; })[] | undefined; } & ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ExportedNotes", + "text": "ExportedNotes" + }, + " & { pinnedEventIds: string[]; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 425 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FavoriteTimelineResult", + "type": "Type", + "tags": [], + "label": "FavoriteTimelineResult", + "description": [], + "signature": [ + "{ fullName?: string | null | undefined; userName?: string | null | undefined; favoriteDate?: number | null | undefined; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 555 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FieldsEqlOptions", + "type": "Type", + "tags": [], + "label": "FieldsEqlOptions", + "description": [], + "signature": [ + "\"query\" | \"size\" | \"eventCategoryField\" | \"tiebreakerField\" | \"timestampField\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", + "lineNumber": 46 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FIRST_ARIA_INDEX", + "type": "number", + "tags": [], + "label": "FIRST_ARIA_INDEX", + "description": [ + "`aria-colindex` and `aria-rowindex` start at one" + ], + "signature": [ + "1" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 46 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.FocusableElement", + "type": "Type", + "tags": [], + "label": "FocusableElement", + "description": [], + "signature": [ + "HTMLDivElement | HTMLButtonElement | HTMLInputElement | HTMLAnchorElement | HTMLFormElement | HTMLAudioElement | HTMLAreaElement | HTMLSelectElement | HTMLTextAreaElement | HTMLVideoElement" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 652 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.GenericActionRowCellRenderProps", + "type": "Type", + "tags": [], + "label": "GenericActionRowCellRenderProps", + "description": [], + "signature": [ + "{ columnId: string; rowIndex: number; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 57 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.GetFocusedCell", + "type": "Type", + "tags": [], + "label": "GetFocusedCell", + "description": [], + "signature": [ + "({ containerElement, tableClassName, }: { containerElement: HTMLElement | null; tableClassName: string; }) => HTMLDivElement | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 767 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.GetTimelinesArgs", + "type": "Type", + "tags": [], + "label": "GetTimelinesArgs", + "description": [], + "signature": [ + "{ onlyUserFavorite?: boolean | null | undefined; pageInfo?: { pageIndex: number; pageSize: number; } | null | undefined; search?: string | null | undefined; sort?: { sortField: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SortFieldTimeline", + "text": "SortFieldTimeline" + }, + "; sortOrder: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Direction", + "text": "Direction" + }, + "; } | null | undefined; status?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + " | null | undefined; timelineType?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + " | null | undefined; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 579 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.HeaderCellRender", + "type": "Type", + "tags": [], + "label": "HeaderCellRender", + "description": [], + "signature": [ + "React.ComponentClass<{}, any> | React.FunctionComponent<{}> | React.ComponentClass<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.HeaderActionProps", + "text": "HeaderActionProps" + }, + ", any> | React.FunctionComponent<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.HeaderActionProps", + "text": "HeaderActionProps" + }, + ">" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 62 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ImportTimelineResultSchema", + "type": "Type", + "tags": [], + "label": "ImportTimelineResultSchema", + "description": [], + "signature": [ + "{ success: boolean; success_count: number; timelines_installed: number; timelines_updated: number; errors: { error: { status_code: number; message: string; }; }[]; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 455 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.IS_OPERATOR", + "type": "string", + "tags": [], + "label": "IS_OPERATOR", + "description": [ + "Represents the Timeline data providers\nThe `is` operator in a KQL query" + ], + "signature": [ + "\":\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 11 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.KueryFilterQueryKind", + "type": "Type", + "tags": [], + "label": "KueryFilterQueryKind", + "description": [], + "signature": [ + "\"eql\" | \"lucene\" | \"kuery\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 22 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.Maybe", + "type": "Type", + "tags": [], + "label": "Maybe", + "description": [], + "signature": [ + "T | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "lineNumber": 9 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.NotesAndPinnedEventsByTimelineId", + "type": "Type", + "tags": [], + "label": "NotesAndPinnedEventsByTimelineId", + "description": [], + "signature": [ + "{ [x: string]: { notes: ", + "NoteSavedObject", + "[]; pinnedEvents: ", + "PinnedEventSavedObject", + "[]; }; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 440 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.OnChangePage", + "type": "Type", + "tags": [], + "label": "OnChangePage", + "description": [ + "Invoked when a user clicks to load more item" + ], + "signature": [ + "(nextPage: number) => void" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 77 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.OnColumnFocused", + "type": "Type", + "tags": [], + "label": "OnColumnFocused", + "description": [], + "signature": [ + "({ newFocusedColumn, newFocusedColumnAriaColindex, }: { newFocusedColumn: HTMLDivElement | null; newFocusedColumnAriaColindex: number | null; }) => void" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 288 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.OnColumnRemoved", + "type": "Type", + "tags": [], + "label": "OnColumnRemoved", + "description": [], + "signature": [ + "(columnId: string) => void" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 72 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.OnColumnResized", + "type": "Type", + "tags": [], + "label": "OnColumnResized", + "description": [], + "signature": [ + "({ columnId, delta }: { columnId: string; delta: number; }) => void" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 74 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.OnColumnSorted", + "type": "Type", + "tags": [], + "label": "OnColumnSorted", + "description": [ + "Invoked when a column is sorted" + ], + "signature": [ + "(sorted: { columnId: string; sortDirection: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.SortDirection", + "text": "SortDirection" + }, + "; }) => void" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 66 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.OnColumnsSorted", + "type": "Type", + "tags": [], + "label": "OnColumnsSorted", + "description": [], + "signature": [ + "(sorted: { columnId: string; sortDirection: ", + { + "pluginId": "securitySolution", + "scope": "common", + "docId": "kibSecuritySolutionPluginApi", + "section": "def-common.SortDirection", + "text": "SortDirection" + }, + "; }[]) => void" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 68 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.OnPinEvent", + "type": "Type", + "tags": [], + "label": "OnPinEvent", + "description": [ + "Invoked when a user pins an event" + ], + "signature": [ + "(eventId: string) => void" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 95 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.OnRowSelected", + "type": "Type", + "tags": [], + "label": "OnRowSelected", + "description": [ + "Invoked when a user checks/un-checks a row" + ], + "signature": [ + "({ eventIds, isSelected, }: { eventIds: string[]; isSelected: boolean; }) => void" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 80 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.OnSelectAll", + "type": "Type", + "tags": [], + "label": "OnSelectAll", + "description": [ + "Invoked when a user checks/un-checks the select all checkbox" + ], + "signature": [ + "({ isSelected }: { isSelected: boolean; }) => void" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 89 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.OnUnPinEvent", + "type": "Type", + "tags": [], + "label": "OnUnPinEvent", + "description": [ + "Invoked when a user unpins an event" + ], + "signature": [ + "(eventId: string) => void" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 98 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.OnUpdateColumns", + "type": "Type", + "tags": [], + "label": "OnUpdateColumns", + "description": [ + "Invoked when columns are updated" + ], + "signature": [ + "(columns: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ColumnHeaderOptions", + "text": "ColumnHeaderOptions" + }, + "[]) => void" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 92 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.PLUGIN_ID", + "type": "string", + "tags": [], + "label": "PLUGIN_ID", + "description": [], + "signature": [ + "\"timelines\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/index.ts", + "lineNumber": 12 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.PLUGIN_NAME", + "type": "string", + "tags": [], + "label": "PLUGIN_NAME", + "description": [], + "signature": [ + "\"timelines\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/index.ts", + "lineNumber": 13 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.QueryOperator", + "type": "Type", + "tags": [], + "label": "QueryOperator", + "description": [ + "The operator applied to a field" + ], + "signature": [ + "\":\" | \":*\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", + "lineNumber": 17 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ResponseFavoriteTimeline", + "type": "Type", + "tags": [], + "label": "ResponseFavoriteTimeline", + "description": [], + "signature": [ + "{ savedObjectId?: string | undefined; version?: string | undefined; code?: number | null | undefined; message?: string | null | undefined; templateTimelineId?: string | null | undefined; templateTimelineVersion?: number | null | undefined; timelineType?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + " | null | undefined; favorite?: { fullName?: string | null | undefined; userName?: string | null | undefined; favoriteDate?: number | null | undefined; }[] | null | undefined; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 568 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ResponseTimelines", + "type": "Type", + "tags": [], + "label": "ResponseTimelines", + "description": [], + "signature": [ + "{ timeline: ({ columns?: { aggregatable?: boolean | null | undefined; category?: string | null | undefined; columnHeaderType?: string | null | undefined; description?: string | null | undefined; example?: string | null | undefined; indexes?: string[] | null | undefined; id?: string | null | undefined; name?: string | null | undefined; placeholder?: string | null | undefined; searchable?: boolean | null | undefined; type?: string | null | undefined; }[] | null | undefined; dataProviders?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; and?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; }[] | null | undefined; type?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + " | null | undefined; }[] | null | undefined; description?: string | null | undefined; eqlOptions?: { eventCategoryField?: string | null | undefined; query?: string | null | undefined; tiebreakerField?: string | null | undefined; timestampField?: string | null | undefined; size?: string | number | null | undefined; } | null | undefined; eventType?: string | null | undefined; excludedRowRendererIds?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + "[] | null | undefined; favorite?: { keySearch?: string | null | undefined; favoriteDate?: number | null | undefined; fullName?: string | null | undefined; userName?: string | null | undefined; }[] | null | undefined; filters?: { exists?: string | null | undefined; meta?: { alias?: string | null | undefined; controlledBy?: string | null | undefined; disabled?: boolean | null | undefined; field?: string | null | undefined; formattedValue?: string | null | undefined; index?: string | null | undefined; key?: string | null | undefined; negate?: boolean | null | undefined; params?: string | null | undefined; type?: string | null | undefined; value?: string | null | undefined; } | null | undefined; match_all?: string | null | undefined; missing?: string | null | undefined; query?: string | null | undefined; range?: string | null | undefined; script?: string | null | undefined; }[] | null | undefined; indexNames?: string[] | null | undefined; kqlMode?: string | null | undefined; kqlQuery?: { filterQuery?: { kuery?: { kind?: string | null | undefined; expression?: string | null | undefined; } | null | undefined; serializedQuery?: string | null | undefined; } | null | undefined; } | null | undefined; title?: string | null | undefined; templateTimelineId?: string | null | undefined; templateTimelineVersion?: number | null | undefined; timelineType?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + " | null | undefined; dateRange?: { start?: string | number | null | undefined; end?: string | number | null | undefined; } | null | undefined; savedQueryId?: string | null | undefined; sort?: { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; } | { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; }[] | null | undefined; status?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + " | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { savedObjectId: string; version: string; } & { eventIdToNoteIds?: ({ timelineId: string | null; } & { eventId?: string | null | undefined; note?: string | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { noteId: string; version: string; } & { timelineVersion?: string | null | undefined; })[] | undefined; noteIds?: string[] | undefined; notes?: ({ timelineId: string | null; } & { eventId?: string | null | undefined; note?: string | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { noteId: string; version: string; } & { timelineVersion?: string | null | undefined; })[] | undefined; pinnedEventIds?: string[] | undefined; pinnedEventsSaveObject?: ({ pinnedEventId: string; version: string; } & { timelineId: string; eventId: string; } & { created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { timelineVersion?: string | null | undefined; })[] | undefined; })[]; totalCount: number; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 586 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.RowCellRender", + "type": "Type", + "tags": [], + "label": "RowCellRender", + "description": [], + "signature": [ + "((props: Pick<", + "EuiDataGridCellValueElementProps", + ", \"columnId\" | \"rowIndex\">) => React.ReactElement React.ReactElement React.Component)> | null) | (new (props: any) => React.Component)> | null) | (new (props: Pick<", + "EuiDataGridCellValueElementProps", + ", \"columnId\" | \"rowIndex\">) => React.Component, any, any>) | ((props: Pick<", + "EuiDataGridCellValueElementProps", + ", \"columnId\" | \"rowIndex\">) => JSX.Element) | ((props: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ActionProps", + "text": "ActionProps" + }, + ") => React.ReactElement React.ReactElement React.Component)> | null) | (new (props: any) => React.Component)> | null) | (new (props: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ActionProps", + "text": "ActionProps" + }, + ") => React.Component<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ActionProps", + "text": "ActionProps" + }, + ", any, any>) | ((props: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.ActionProps", + "text": "ActionProps" + }, + ") => JSX.Element)" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", + "lineNumber": 63 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.SavedTimeline", + "type": "Type", + "tags": [], + "label": "SavedTimeline", + "description": [], + "signature": [ + "{ columns?: { aggregatable?: boolean | null | undefined; category?: string | null | undefined; columnHeaderType?: string | null | undefined; description?: string | null | undefined; example?: string | null | undefined; indexes?: string[] | null | undefined; id?: string | null | undefined; name?: string | null | undefined; placeholder?: string | null | undefined; searchable?: boolean | null | undefined; type?: string | null | undefined; }[] | null | undefined; dataProviders?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; and?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; }[] | null | undefined; type?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + " | null | undefined; }[] | null | undefined; description?: string | null | undefined; eqlOptions?: { eventCategoryField?: string | null | undefined; query?: string | null | undefined; tiebreakerField?: string | null | undefined; timestampField?: string | null | undefined; size?: string | number | null | undefined; } | null | undefined; eventType?: string | null | undefined; excludedRowRendererIds?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + "[] | null | undefined; favorite?: { keySearch?: string | null | undefined; favoriteDate?: number | null | undefined; fullName?: string | null | undefined; userName?: string | null | undefined; }[] | null | undefined; filters?: { exists?: string | null | undefined; meta?: { alias?: string | null | undefined; controlledBy?: string | null | undefined; disabled?: boolean | null | undefined; field?: string | null | undefined; formattedValue?: string | null | undefined; index?: string | null | undefined; key?: string | null | undefined; negate?: boolean | null | undefined; params?: string | null | undefined; type?: string | null | undefined; value?: string | null | undefined; } | null | undefined; match_all?: string | null | undefined; missing?: string | null | undefined; query?: string | null | undefined; range?: string | null | undefined; script?: string | null | undefined; }[] | null | undefined; indexNames?: string[] | null | undefined; kqlMode?: string | null | undefined; kqlQuery?: { filterQuery?: { kuery?: { kind?: string | null | undefined; expression?: string | null | undefined; } | null | undefined; serializedQuery?: string | null | undefined; } | null | undefined; } | null | undefined; title?: string | null | undefined; templateTimelineId?: string | null | undefined; templateTimelineVersion?: number | null | undefined; timelineType?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + " | null | undefined; dateRange?: { start?: string | number | null | undefined; end?: string | number | null | undefined; } | null | undefined; savedQueryId?: string | null | undefined; sort?: { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; } | { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; }[] | null | undefined; status?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + " | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 303 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.SavedTimelineNote", + "type": "Type", + "tags": [], + "label": "SavedTimelineNote", + "description": [], + "signature": [ + "{ columns?: { aggregatable?: boolean | null | undefined; category?: string | null | undefined; columnHeaderType?: string | null | undefined; description?: string | null | undefined; example?: string | null | undefined; indexes?: string[] | null | undefined; id?: string | null | undefined; name?: string | null | undefined; placeholder?: string | null | undefined; searchable?: boolean | null | undefined; type?: string | null | undefined; }[] | null | undefined; dataProviders?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; and?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; }[] | null | undefined; type?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + " | null | undefined; }[] | null | undefined; description?: string | null | undefined; eqlOptions?: { eventCategoryField?: string | null | undefined; query?: string | null | undefined; tiebreakerField?: string | null | undefined; timestampField?: string | null | undefined; size?: string | number | null | undefined; } | null | undefined; eventType?: string | null | undefined; excludedRowRendererIds?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + "[] | null | undefined; favorite?: { keySearch?: string | null | undefined; favoriteDate?: number | null | undefined; fullName?: string | null | undefined; userName?: string | null | undefined; }[] | null | undefined; filters?: { exists?: string | null | undefined; meta?: { alias?: string | null | undefined; controlledBy?: string | null | undefined; disabled?: boolean | null | undefined; field?: string | null | undefined; formattedValue?: string | null | undefined; index?: string | null | undefined; key?: string | null | undefined; negate?: boolean | null | undefined; params?: string | null | undefined; type?: string | null | undefined; value?: string | null | undefined; } | null | undefined; match_all?: string | null | undefined; missing?: string | null | undefined; query?: string | null | undefined; range?: string | null | undefined; script?: string | null | undefined; }[] | null | undefined; indexNames?: string[] | null | undefined; kqlMode?: string | null | undefined; kqlQuery?: { filterQuery?: { kuery?: { kind?: string | null | undefined; expression?: string | null | undefined; } | null | undefined; serializedQuery?: string | null | undefined; } | null | undefined; } | null | undefined; title?: string | null | undefined; templateTimelineId?: string | null | undefined; templateTimelineVersion?: number | null | undefined; timelineType?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + " | null | undefined; dateRange?: { start?: string | number | null | undefined; end?: string | number | null | undefined; } | null | undefined; savedQueryId?: string | null | undefined; sort?: { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; } | { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; }[] | null | undefined; status?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + " | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 305 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.SearchTypes", + "type": "Type", + "tags": [], + "label": "SearchTypes", + "description": [], + "signature": [ + "string | number | boolean | object | string[] | number[] | boolean[] | object[] | undefined" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/eql/index.ts", + "lineNumber": 12 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.SingleTimelineResponse", + "type": "Type", + "tags": [], + "label": "SingleTimelineResponse", + "description": [], + "signature": [ + "{ data: { getOneTimeline: { columns?: { aggregatable?: boolean | null | undefined; category?: string | null | undefined; columnHeaderType?: string | null | undefined; description?: string | null | undefined; example?: string | null | undefined; indexes?: string[] | null | undefined; id?: string | null | undefined; name?: string | null | undefined; placeholder?: string | null | undefined; searchable?: boolean | null | undefined; type?: string | null | undefined; }[] | null | undefined; dataProviders?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; and?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; }[] | null | undefined; type?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + " | null | undefined; }[] | null | undefined; description?: string | null | undefined; eqlOptions?: { eventCategoryField?: string | null | undefined; query?: string | null | undefined; tiebreakerField?: string | null | undefined; timestampField?: string | null | undefined; size?: string | number | null | undefined; } | null | undefined; eventType?: string | null | undefined; excludedRowRendererIds?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + "[] | null | undefined; favorite?: { keySearch?: string | null | undefined; favoriteDate?: number | null | undefined; fullName?: string | null | undefined; userName?: string | null | undefined; }[] | null | undefined; filters?: { exists?: string | null | undefined; meta?: { alias?: string | null | undefined; controlledBy?: string | null | undefined; disabled?: boolean | null | undefined; field?: string | null | undefined; formattedValue?: string | null | undefined; index?: string | null | undefined; key?: string | null | undefined; negate?: boolean | null | undefined; params?: string | null | undefined; type?: string | null | undefined; value?: string | null | undefined; } | null | undefined; match_all?: string | null | undefined; missing?: string | null | undefined; query?: string | null | undefined; range?: string | null | undefined; script?: string | null | undefined; }[] | null | undefined; indexNames?: string[] | null | undefined; kqlMode?: string | null | undefined; kqlQuery?: { filterQuery?: { kuery?: { kind?: string | null | undefined; expression?: string | null | undefined; } | null | undefined; serializedQuery?: string | null | undefined; } | null | undefined; } | null | undefined; title?: string | null | undefined; templateTimelineId?: string | null | undefined; templateTimelineVersion?: number | null | undefined; timelineType?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + " | null | undefined; dateRange?: { start?: string | number | null | undefined; end?: string | number | null | undefined; } | null | undefined; savedQueryId?: string | null | undefined; sort?: { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; } | { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; }[] | null | undefined; status?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + " | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { savedObjectId: string; version: string; } & { eventIdToNoteIds?: ({ timelineId: string | null; } & { eventId?: string | null | undefined; note?: string | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { noteId: string; version: string; } & { timelineVersion?: string | null | undefined; })[] | undefined; noteIds?: string[] | undefined; notes?: ({ timelineId: string | null; } & { eventId?: string | null | undefined; note?: string | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { noteId: string; version: string; } & { timelineVersion?: string | null | undefined; })[] | undefined; pinnedEventIds?: string[] | undefined; pinnedEventsSaveObject?: ({ pinnedEventId: string; version: string; } & { timelineId: string; eventId: string; } & { created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { timelineVersion?: string | null | undefined; })[] | undefined; }; }; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 375 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.SKIP_FOCUS_BACKWARDS", + "type": "Type", + "tags": [], + "label": "SKIP_FOCUS_BACKWARDS", + "description": [], + "signature": [ + "\"SKIP_FOCUS_BACKWARDS\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 688 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.SKIP_FOCUS_FORWARD", + "type": "Type", + "tags": [], + "label": "SKIP_FOCUS_FORWARD", + "description": [], + "signature": [ + "\"SKIP_FOCUS_FORWARD\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 689 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.SKIP_FOCUS_NOOP", + "type": "Type", + "tags": [], + "label": "SKIP_FOCUS_NOOP", + "description": [], + "signature": [ + "\"SKIP_FOCUS_NOOP\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 690 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.SkipFocus", + "type": "Type", + "tags": [], + "label": "SkipFocus", + "description": [], + "signature": [ + "\"SKIP_FOCUS_BACKWARDS\" | \"SKIP_FOCUS_FORWARD\" | \"SKIP_FOCUS_NOOP\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", + "lineNumber": 691 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.Sort", + "type": "Type", + "tags": [], + "label": "Sort", + "description": [], + "signature": [ + "{ columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; } | { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; }[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 186 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.SortDirection", + "type": "Type", + "tags": [], + "label": "SortDirection", + "description": [], + "signature": [ + "\"none\" | \"asc\" | \"desc\" | ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Direction", + "text": "Direction" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", + "lineNumber": 34 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TemplateTimelineTypeLiteral", + "type": "Type", + "tags": [], + "label": "TemplateTimelineTypeLiteral", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TemplateTimelineType", + "text": "TemplateTimelineType" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 251 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TemplateTimelineTypeLiteralWithNull", + "type": "Type", + "tags": [], + "label": "TemplateTimelineTypeLiteralWithNull", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TemplateTimelineType", + "text": "TemplateTimelineType" + }, + " | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 252 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineErrorResponse", + "type": "Type", + "tags": [], + "label": "TimelineErrorResponse", + "description": [], + "signature": [ + "{ status_code: number; message: string; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 399 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineEventsType", + "type": "Type", + "tags": [], + "label": "TimelineEventsType", + "description": [], + "signature": [ + "\"all\" | \"custom\" | \"raw\" | \"alert\" | \"eql\" | \"signal\"" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 457 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineExpandedDetail", + "type": "Type", + "tags": [], + "label": "TimelineExpandedDetail", + "description": [], + "signature": [ + "{ query?: Record | { panelView?: \"eventDetail\" | undefined; params?: { eventId: string; indexName: string; } | undefined; } | { panelView?: \"hostDetail\" | undefined; params?: { hostName: string; } | undefined; } | { panelView?: \"networkDetail\" | undefined; params?: { ip: string; flowTarget: FlowTarget; } | undefined; } | undefined; graph?: Record | { panelView?: \"eventDetail\" | undefined; params?: { eventId: string; indexName: string; } | undefined; } | { panelView?: \"hostDetail\" | undefined; params?: { hostName: string; } | undefined; } | { panelView?: \"networkDetail\" | undefined; params?: { ip: string; flowTarget: FlowTarget; } | undefined; } | undefined; notes?: Record | { panelView?: \"eventDetail\" | undefined; params?: { eventId: string; indexName: string; } | undefined; } | { panelView?: \"hostDetail\" | undefined; params?: { hostName: string; } | undefined; } | { panelView?: \"networkDetail\" | undefined; params?: { ip: string; flowTarget: FlowTarget; } | undefined; } | undefined; pinned?: Record | { panelView?: \"eventDetail\" | undefined; params?: { eventId: string; indexName: string; } | undefined; } | { panelView?: \"hostDetail\" | undefined; params?: { hostName: string; } | undefined; } | { panelView?: \"networkDetail\" | undefined; params?: { ip: string; flowTarget: FlowTarget; } | undefined; } | undefined; eql?: Record | { panelView?: \"eventDetail\" | undefined; params?: { eventId: string; indexName: string; } | undefined; } | { panelView?: \"hostDetail\" | undefined; params?: { hostName: string; } | undefined; } | { panelView?: \"networkDetail\" | undefined; params?: { ip: string; flowTarget: FlowTarget; } | undefined; } | undefined; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 511 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineExpandedDetailType", + "type": "Type", + "tags": [], + "label": "TimelineExpandedDetailType", + "description": [], + "signature": [ + "Record | { panelView?: \"eventDetail\" | undefined; params?: { eventId: string; indexName: string; } | undefined; } | { panelView?: \"hostDetail\" | undefined; params?: { hostName: string; } | undefined; } | { panelView?: \"networkDetail\" | undefined; params?: { ip: string; flowTarget: FlowTarget; } | undefined; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 506 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineExpandedEventType", + "type": "Type", + "tags": [], + "label": "TimelineExpandedEventType", + "description": [], + "signature": [ + "Record | { panelView?: \"eventDetail\" | undefined; params?: { eventId: string; indexName: string; } | undefined; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 470 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineExpandedHostType", + "type": "Type", + "tags": [], + "label": "TimelineExpandedHostType", + "description": [], + "signature": [ + "Record | { panelView?: \"hostDetail\" | undefined; params?: { hostName: string; } | undefined; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 480 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineExpandedNetworkType", + "type": "Type", + "tags": [], + "label": "TimelineExpandedNetworkType", + "description": [], + "signature": [ + "Record | { panelView?: \"networkDetail\" | undefined; params?: { ip: string; flowTarget: FlowTarget; } | undefined; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 496 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineFactoryQueryTypes", + "type": "Type", + "tags": [], + "label": "TimelineFactoryQueryTypes", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsQueries", + "text": "TimelineEventsQueries" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 36 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineIdLiteral", + "type": "Type", + "tags": [], + "label": "TimelineIdLiteral", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineId", + "text": "TimelineId" + }, + ".hostsPageEvents | ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineId", + "text": "TimelineId" + }, + ".hostsPageExternalAlerts | ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineId", + "text": "TimelineId" + }, + ".detectionsRulesDetailsPage | ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineId", + "text": "TimelineId" + }, + ".detectionsPage | ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineId", + "text": "TimelineId" + }, + ".networkPageExternalAlerts | ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineId", + "text": "TimelineId" + }, + ".active | ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineId", + "text": "TimelineId" + }, + ".test" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 333 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineResponse", + "type": "Type", + "tags": [], + "label": "TimelineResponse", + "description": [], + "signature": [ + "{ data: { persistTimeline: { code?: number | null | undefined; message?: string | null | undefined; } & { timeline: { columns?: { aggregatable?: boolean | null | undefined; category?: string | null | undefined; columnHeaderType?: string | null | undefined; description?: string | null | undefined; example?: string | null | undefined; indexes?: string[] | null | undefined; id?: string | null | undefined; name?: string | null | undefined; placeholder?: string | null | undefined; searchable?: boolean | null | undefined; type?: string | null | undefined; }[] | null | undefined; dataProviders?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; and?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; }[] | null | undefined; type?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + " | null | undefined; }[] | null | undefined; description?: string | null | undefined; eqlOptions?: { eventCategoryField?: string | null | undefined; query?: string | null | undefined; tiebreakerField?: string | null | undefined; timestampField?: string | null | undefined; size?: string | number | null | undefined; } | null | undefined; eventType?: string | null | undefined; excludedRowRendererIds?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + "[] | null | undefined; favorite?: { keySearch?: string | null | undefined; favoriteDate?: number | null | undefined; fullName?: string | null | undefined; userName?: string | null | undefined; }[] | null | undefined; filters?: { exists?: string | null | undefined; meta?: { alias?: string | null | undefined; controlledBy?: string | null | undefined; disabled?: boolean | null | undefined; field?: string | null | undefined; formattedValue?: string | null | undefined; index?: string | null | undefined; key?: string | null | undefined; negate?: boolean | null | undefined; params?: string | null | undefined; type?: string | null | undefined; value?: string | null | undefined; } | null | undefined; match_all?: string | null | undefined; missing?: string | null | undefined; query?: string | null | undefined; range?: string | null | undefined; script?: string | null | undefined; }[] | null | undefined; indexNames?: string[] | null | undefined; kqlMode?: string | null | undefined; kqlQuery?: { filterQuery?: { kuery?: { kind?: string | null | undefined; expression?: string | null | undefined; } | null | undefined; serializedQuery?: string | null | undefined; } | null | undefined; } | null | undefined; title?: string | null | undefined; templateTimelineId?: string | null | undefined; templateTimelineVersion?: number | null | undefined; timelineType?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + " | null | undefined; dateRange?: { start?: string | number | null | undefined; end?: string | number | null | undefined; } | null | undefined; savedQueryId?: string | null | undefined; sort?: { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; } | { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; }[] | null | undefined; status?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + " | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { savedObjectId: string; version: string; } & { eventIdToNoteIds?: ({ timelineId: string | null; } & { eventId?: string | null | undefined; note?: string | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { noteId: string; version: string; } & { timelineVersion?: string | null | undefined; })[] | undefined; noteIds?: string[] | undefined; notes?: ({ timelineId: string | null; } & { eventId?: string | null | undefined; note?: string | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { noteId: string; version: string; } & { timelineVersion?: string | null | undefined; })[] | undefined; pinnedEventIds?: string[] | undefined; pinnedEventsSaveObject?: ({ pinnedEventId: string; version: string; } & { timelineId: string; eventId: string; } & { created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { timelineVersion?: string | null | undefined; })[] | undefined; }; }; }; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 400 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineSavedObject", + "type": "Type", + "tags": [], + "label": "TimelineSavedObject", + "description": [], + "signature": [ + "{ columns?: { aggregatable?: boolean | null | undefined; category?: string | null | undefined; columnHeaderType?: string | null | undefined; description?: string | null | undefined; example?: string | null | undefined; indexes?: string[] | null | undefined; id?: string | null | undefined; name?: string | null | undefined; placeholder?: string | null | undefined; searchable?: boolean | null | undefined; type?: string | null | undefined; }[] | null | undefined; dataProviders?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; and?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; }[] | null | undefined; type?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + " | null | undefined; }[] | null | undefined; description?: string | null | undefined; eqlOptions?: { eventCategoryField?: string | null | undefined; query?: string | null | undefined; tiebreakerField?: string | null | undefined; timestampField?: string | null | undefined; size?: string | number | null | undefined; } | null | undefined; eventType?: string | null | undefined; excludedRowRendererIds?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + "[] | null | undefined; favorite?: { keySearch?: string | null | undefined; favoriteDate?: number | null | undefined; fullName?: string | null | undefined; userName?: string | null | undefined; }[] | null | undefined; filters?: { exists?: string | null | undefined; meta?: { alias?: string | null | undefined; controlledBy?: string | null | undefined; disabled?: boolean | null | undefined; field?: string | null | undefined; formattedValue?: string | null | undefined; index?: string | null | undefined; key?: string | null | undefined; negate?: boolean | null | undefined; params?: string | null | undefined; type?: string | null | undefined; value?: string | null | undefined; } | null | undefined; match_all?: string | null | undefined; missing?: string | null | undefined; query?: string | null | undefined; range?: string | null | undefined; script?: string | null | undefined; }[] | null | undefined; indexNames?: string[] | null | undefined; kqlMode?: string | null | undefined; kqlQuery?: { filterQuery?: { kuery?: { kind?: string | null | undefined; expression?: string | null | undefined; } | null | undefined; serializedQuery?: string | null | undefined; } | null | undefined; } | null | undefined; title?: string | null | undefined; templateTimelineId?: string | null | undefined; templateTimelineVersion?: number | null | undefined; timelineType?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + " | null | undefined; dateRange?: { start?: string | number | null | undefined; end?: string | number | null | undefined; } | null | undefined; savedQueryId?: string | null | undefined; sort?: { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; } | { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; }[] | null | undefined; status?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + " | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { savedObjectId: string; version: string; } & { eventIdToNoteIds?: ({ timelineId: string | null; } & { eventId?: string | null | undefined; note?: string | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { noteId: string; version: string; } & { timelineVersion?: string | null | undefined; })[] | undefined; noteIds?: string[] | undefined; notes?: ({ timelineId: string | null; } & { eventId?: string | null | undefined; note?: string | null | undefined; created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { noteId: string; version: string; } & { timelineVersion?: string | null | undefined; })[] | undefined; pinnedEventIds?: string[] | undefined; pinnedEventsSaveObject?: ({ pinnedEventId: string; version: string; } & { timelineId: string; eventId: string; } & { created?: number | null | undefined; createdBy?: string | null | undefined; updated?: number | null | undefined; updatedBy?: string | null | undefined; } & { timelineVersion?: string | null | undefined; })[] | undefined; }" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 365 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineStatusLiteral", + "type": "Type", + "tags": [], + "label": "TimelineStatusLiteral", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 206 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineStatusLiteralWithNull", + "type": "Type", + "tags": [], + "label": "TimelineStatusLiteralWithNull", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + " | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 207 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineStrategyRequestType", + "type": "Type", + "tags": [], + "label": "TimelineStrategyRequestType", + "description": [], + "signature": [ + "T extends ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsQueries", + "text": "TimelineEventsQueries" + }, + ".all ? ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsAllRequestOptions", + "text": "TimelineEventsAllRequestOptions" + }, + " : T extends ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsQueries", + "text": "TimelineEventsQueries" + }, + ".details ? ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsDetailsRequestOptions", + "text": "TimelineEventsDetailsRequestOptions" + }, + " : T extends ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsQueries", + "text": "TimelineEventsQueries" + }, + ".kpi ? ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineRequestBasicOptions", + "text": "TimelineRequestBasicOptions" + }, + " : T extends ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsQueries", + "text": "TimelineEventsQueries" + }, + ".lastEventTime ? ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsLastEventTimeRequestOptions", + "text": "TimelineEventsLastEventTimeRequestOptions" + }, + " : never" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 68 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineStrategyResponseType", + "type": "Type", + "tags": [], + "label": "TimelineStrategyResponseType", + "description": [], + "signature": [ + "T extends ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsQueries", + "text": "TimelineEventsQueries" + }, + ".all ? ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsAllStrategyResponse", + "text": "TimelineEventsAllStrategyResponse" + }, + " : T extends ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsQueries", + "text": "TimelineEventsQueries" + }, + ".details ? ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsDetailsStrategyResponse", + "text": "TimelineEventsDetailsStrategyResponse" + }, + " : T extends ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsQueries", + "text": "TimelineEventsQueries" + }, + ".kpi ? ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineKpiStrategyResponse", + "text": "TimelineKpiStrategyResponse" + }, + " : T extends ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsQueries", + "text": "TimelineEventsQueries" + }, + ".lastEventTime ? ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineEventsLastEventTimeStrategyResponse", + "text": "TimelineEventsLastEventTimeStrategyResponse" + }, + " : never" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/timeline/index.ts", + "lineNumber": 56 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineTypeLiteral", + "type": "Type", + "tags": [], + "label": "TimelineTypeLiteral", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + } + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 274 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineTypeLiteralWithNull", + "type": "Type", + "tags": [], + "label": "TimelineTypeLiteralWithNull", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + " | null" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 275 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.ToggleDetailPanel", + "type": "Type", + "tags": [], + "label": "ToggleDetailPanel", + "description": [], + "signature": [ + "(Record & { tabType?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineTabs", + "text": "TimelineTabs" + }, + " | undefined; timelineId: string; }) | ({ panelView?: \"eventDetail\" | undefined; params?: { eventId: string; indexName: string; } | undefined; } & { tabType?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineTabs", + "text": "TimelineTabs" + }, + " | undefined; timelineId: string; }) | ({ panelView?: \"hostDetail\" | undefined; params?: { hostName: string; } | undefined; } & { tabType?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineTabs", + "text": "TimelineTabs" + }, + " | undefined; timelineId: string; }) | ({ panelView?: \"networkDetail\" | undefined; params?: { ip: string; flowTarget: FlowTarget; } | undefined; } & { tabType?: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineTabs", + "text": "TimelineTabs" + }, + " | undefined; timelineId: string; })" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 515 + }, + "deprecated": false, + "initialIsOpen": false + } + ], + "objects": [ + { + "parentPluginId": "timelines", + "id": "def-common.AllTimelineSavedObjectRuntimeType", + "type": "Object", + "tags": [], + "label": "AllTimelineSavedObjectRuntimeType", + "description": [ + "\nAll Timeline Saved object type with metadata" + ], + "signature": [ + "TypeC", + "<{ total: ", + "NumberC", + "; data: ", + "IntersectionC", + "<[", + "PartialC", + "<{ columns: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ aggregatable: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; category: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnHeaderType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; description: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; example: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; indexes: ", + "UnionC", + "<[", + "ArrayC", + "<", + "StringC", + ">, ", + "NullC", + "]>; id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; placeholder: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; searchable: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; dataProviders: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; enabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; excluded: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; queryMatch: ", + "UnionC", + "<[", + "PartialC", + "<{ field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; operator: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; and: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; enabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; excluded: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; queryMatch: ", + "UnionC", + "<[", + "PartialC", + "<{ field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; operator: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + ".default>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + ".template>]>, ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; description: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; eqlOptions: ", + "UnionC", + "<[", + "PartialC", + "<{ eventCategoryField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; query: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; tiebreakerField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; timestampField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; size: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; eventType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; excludedRowRendererIds: ", + "UnionC", + "<[", + "ArrayC", + "<", + "Type", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + ", string, unknown>>, ", + "NullC", + "]>; favorite: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ keySearch: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; favoriteDate: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; fullName: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; userName: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; filters: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ exists: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; meta: ", + "UnionC", + "<[", + "PartialC", + "<{ alias: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; controlledBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; disabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; formattedValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; index: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; key: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; negate: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; params: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; match_all: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; missing: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; query: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; range: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; script: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; indexNames: ", + "UnionC", + "<[", + "ArrayC", + "<", + "StringC", + ">, ", + "NullC", + "]>; kqlMode: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "PartialC", + "<{ filterQuery: ", + "UnionC", + "<[", + "PartialC", + "<{ kuery: ", + "UnionC", + "<[", + "PartialC", + "<{ kind: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; expression: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; serializedQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; title: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; templateTimelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; templateTimelineVersion: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; timelineType: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".template>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".default>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".test>]>, ", + "NullC", + "]>; dateRange: ", + "UnionC", + "<[", + "PartialC", + "<{ start: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; end: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; savedQueryId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sort: ", + "UnionC", + "<[", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ columnId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sortDirection: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "PartialC", + "<{ columnId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sortDirection: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "NullC", + "]>; status: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".active>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".draft>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".immutable>]>, ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "TypeC", + "<{ savedObjectId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "PartialC", + "<{ eventIdToNoteIds: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "IntersectionC", + "<[", + "TypeC", + "<{ timelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "PartialC", + "<{ eventId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; note: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "TypeC", + "<{ noteId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "PartialC", + "<{ timelineVersion: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>>; noteIds: ", + "ArrayC", + "<", + "StringC", + ">; notes: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "IntersectionC", + "<[", + "TypeC", + "<{ timelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "PartialC", + "<{ eventId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; note: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "TypeC", + "<{ noteId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "PartialC", + "<{ timelineVersion: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>>; pinnedEventIds: ", + "ArrayC", + "<", + "StringC", + ">; pinnedEventsSaveObject: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "TypeC", + "<{ pinnedEventId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "IntersectionC", + "<[", + "TypeC", + "<{ timelineId: ", + "StringC", + "; eventId: ", + "StringC", + "; }>, ", + "PartialC", + "<{ created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "PartialC", + "<{ timelineVersion: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>>; }>]>; }>" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 406 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.allTimelinesResponse", + "type": "Object", + "tags": [], + "label": "allTimelinesResponse", + "description": [], + "signature": [ + "IntersectionC", + "<[", + "TypeC", + "<{ timeline: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "PartialC", + "<{ columns: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ aggregatable: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; category: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnHeaderType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; description: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; example: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; indexes: ", + "UnionC", + "<[", + "ArrayC", + "<", + "StringC", + ">, ", + "NullC", + "]>; id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; placeholder: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; searchable: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; dataProviders: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; enabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; excluded: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; queryMatch: ", + "UnionC", + "<[", + "PartialC", + "<{ field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; operator: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; and: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; enabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; excluded: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; queryMatch: ", + "UnionC", + "<[", + "PartialC", + "<{ field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; operator: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + ".default>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + ".template>]>, ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; description: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; eqlOptions: ", + "UnionC", + "<[", + "PartialC", + "<{ eventCategoryField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; query: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; tiebreakerField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; timestampField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; size: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; eventType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; excludedRowRendererIds: ", + "UnionC", + "<[", + "ArrayC", + "<", + "Type", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + ", string, unknown>>, ", + "NullC", + "]>; favorite: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ keySearch: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; favoriteDate: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; fullName: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; userName: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; filters: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ exists: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; meta: ", + "UnionC", + "<[", + "PartialC", + "<{ alias: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; controlledBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; disabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; formattedValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; index: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; key: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; negate: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; params: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; match_all: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; missing: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; query: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; range: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; script: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; indexNames: ", + "UnionC", + "<[", + "ArrayC", + "<", + "StringC", + ">, ", + "NullC", + "]>; kqlMode: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "PartialC", + "<{ filterQuery: ", + "UnionC", + "<[", + "PartialC", + "<{ kuery: ", + "UnionC", + "<[", + "PartialC", + "<{ kind: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; expression: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; serializedQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; title: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; templateTimelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; templateTimelineVersion: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; timelineType: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".template>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".default>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".test>]>, ", + "NullC", + "]>; dateRange: ", + "UnionC", + "<[", + "PartialC", + "<{ start: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; end: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; savedQueryId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sort: ", + "UnionC", + "<[", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ columnId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sortDirection: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "PartialC", + "<{ columnId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sortDirection: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "NullC", + "]>; status: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".active>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".draft>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".immutable>]>, ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "TypeC", + "<{ savedObjectId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "PartialC", + "<{ eventIdToNoteIds: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "IntersectionC", + "<[", + "TypeC", + "<{ timelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "PartialC", + "<{ eventId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; note: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "TypeC", + "<{ noteId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "PartialC", + "<{ timelineVersion: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>>; noteIds: ", + "ArrayC", + "<", + "StringC", + ">; notes: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "IntersectionC", + "<[", + "TypeC", + "<{ timelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "PartialC", + "<{ eventId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; note: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "TypeC", + "<{ noteId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "PartialC", + "<{ timelineVersion: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>>; pinnedEventIds: ", + "ArrayC", + "<", + "StringC", + ">; pinnedEventsSaveObject: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "TypeC", + "<{ pinnedEventId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "IntersectionC", + "<[", + "TypeC", + "<{ timelineId: ", + "StringC", + "; eventId: ", + "StringC", + "; }>, ", + "PartialC", + "<{ created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "PartialC", + "<{ timelineVersion: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>>; }>]>>; totalCount: ", + "NumberC", + "; }>, ", + "TypeC", + "<{ defaultTimelineCount: ", + "NumberC", + "; templateTimelineCount: ", + "NumberC", + "; elasticTemplateTimelineCount: ", + "NumberC", + "; customTemplateTimelineCount: ", + "NumberC", + "; favoriteCount: ", + "NumberC", + "; }>]>" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 588 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.DataProviderTypeLiteralRt", + "type": "Object", + "tags": [], + "label": "DataProviderTypeLiteralRt", + "description": [], + "signature": [ + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + ".default>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + ".template>]>" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 79 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.direction", + "type": "Object", + "tags": [], + "label": "direction", + "description": [], + "signature": [ + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Direction", + "text": "Direction" + }, + ".asc>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Direction", + "text": "Direction" + }, + ".desc>]>" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 539 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.EMPTY_BROWSER_FIELDS", + "type": "Object", + "tags": [], + "label": "EMPTY_BROWSER_FIELDS", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 84 + }, + "deprecated": false, + "children": [], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.EMPTY_INDEX_PATTERN", + "type": "Object", + "tags": [], + "label": "EMPTY_INDEX_PATTERN", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 86 + }, + "deprecated": false, + "children": [ + { + "parentPluginId": "timelines", + "id": "def-common.EMPTY_INDEX_PATTERN.fields", + "type": "Array", + "tags": [], + "label": "fields", + "description": [], + "signature": [ + "never[]" + ], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 87 + }, + "deprecated": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.EMPTY_INDEX_PATTERN.title", + "type": "string", + "tags": [], + "label": "title", + "description": [], + "source": { + "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", + "lineNumber": 88 + }, + "deprecated": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.getTimelinesArgs", + "type": "Object", + "tags": [], + "label": "getTimelinesArgs", + "description": [], + "signature": [ + "PartialC", + "<{ onlyUserFavorite: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; pageInfo: ", + "UnionC", + "<[", + "TypeC", + "<{ pageIndex: ", + "NumberC", + "; pageSize: ", + "NumberC", + "; }>, ", + "NullC", + "]>; search: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sort: ", + "UnionC", + "<[", + "TypeC", + "<{ sortField: ", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SortFieldTimeline", + "text": "SortFieldTimeline" + }, + ".title>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SortFieldTimeline", + "text": "SortFieldTimeline" + }, + ".description>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SortFieldTimeline", + "text": "SortFieldTimeline" + }, + ".updated>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SortFieldTimeline", + "text": "SortFieldTimeline" + }, + ".created>]>; sortOrder: ", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Direction", + "text": "Direction" + }, + ".asc>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Direction", + "text": "Direction" + }, + ".desc>]>; }>, ", + "NullC", + "]>; status: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".active>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".draft>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".immutable>]>, ", + "NullC", + "]>; timelineType: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".template>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".default>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".test>]>, ", + "NullC", + "]>; }>" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 570 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.importTimelineResultSchema", + "type": "Object", + "tags": [], + "label": "importTimelineResultSchema", + "description": [], + "signature": [ + "ExactC", + "<", + "TypeC", + "<{ success: ", + "BooleanC", + "; success_count: ", + "NumberC", + "; timelines_installed: ", + "NumberC", + "; timelines_updated: ", + "NumberC", + "; errors: ", + "ArrayC", + "<", + "ExactC", + "<", + "TypeC", + "<{ error: ", + "TypeC", + "<{ status_code: ", + "NumberC", + "; message: ", + "StringC", + "; }>; }>>>; }>>" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 445 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.pageInfoTimeline", + "type": "Object", + "tags": [], + "label": "pageInfoTimeline", + "description": [], + "signature": [ + "TypeC", + "<{ pageIndex: ", + "NumberC", + "; pageSize: ", + "NumberC", + "; }>" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 520 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.responseFavoriteTimeline", + "type": "Object", + "tags": [], + "label": "responseFavoriteTimeline", + "description": [], + "signature": [ + "PartialC", + "<{ savedObjectId: ", + "StringC", + "; version: ", + "StringC", + "; code: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; message: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; templateTimelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; templateTimelineVersion: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; timelineType: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".template>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".default>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".test>]>, ", + "NullC", + "]>; favorite: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ fullName: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; userName: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; favoriteDate: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; }>" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 557 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.RowRendererIdRuntimeType", + "type": "Object", + "tags": [], + "label": "RowRendererIdRuntimeType", + "description": [], + "signature": [ + "Type", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + ", string, unknown>" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 231 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.SavedTimelineRuntimeType", + "type": "Object", + "tags": [], + "label": "SavedTimelineRuntimeType", + "description": [], + "signature": [ + "PartialC", + "<{ columns: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ aggregatable: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; category: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnHeaderType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; description: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; example: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; indexes: ", + "UnionC", + "<[", + "ArrayC", + "<", + "StringC", + ">, ", + "NullC", + "]>; id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; placeholder: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; searchable: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; dataProviders: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; enabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; excluded: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; queryMatch: ", + "UnionC", + "<[", + "PartialC", + "<{ field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; operator: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; and: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; enabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; excluded: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; queryMatch: ", + "UnionC", + "<[", + "PartialC", + "<{ field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; operator: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + ".default>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + ".template>]>, ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; description: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; eqlOptions: ", + "UnionC", + "<[", + "PartialC", + "<{ eventCategoryField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; query: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; tiebreakerField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; timestampField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; size: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; eventType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; excludedRowRendererIds: ", + "UnionC", + "<[", + "ArrayC", + "<", + "Type", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + ", string, unknown>>, ", + "NullC", + "]>; favorite: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ keySearch: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; favoriteDate: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; fullName: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; userName: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; filters: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ exists: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; meta: ", + "UnionC", + "<[", + "PartialC", + "<{ alias: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; controlledBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; disabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; formattedValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; index: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; key: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; negate: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; params: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; match_all: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; missing: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; query: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; range: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; script: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; indexNames: ", + "UnionC", + "<[", + "ArrayC", + "<", + "StringC", + ">, ", + "NullC", + "]>; kqlMode: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "PartialC", + "<{ filterQuery: ", + "UnionC", + "<[", + "PartialC", + "<{ kuery: ", + "UnionC", + "<[", + "PartialC", + "<{ kind: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; expression: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; serializedQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; title: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; templateTimelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; templateTimelineVersion: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; timelineType: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".template>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".default>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".test>]>, ", + "NullC", + "]>; dateRange: ", + "UnionC", + "<[", + "PartialC", + "<{ start: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; end: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; savedQueryId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sort: ", + "UnionC", + "<[", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ columnId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sortDirection: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "PartialC", + "<{ columnId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sortDirection: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "NullC", + "]>; status: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".active>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".draft>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".immutable>]>, ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 277 + }, + "deprecated": false, + "initialIsOpen": false }, - "deprecated": false, - "children": [ - { - "parentPluginId": "timelines", - "id": "def-public.TimelinesPluginSetup.getTimeline", - "type": "Function", - "tags": [], - "label": "getTimeline", - "description": [], - "signature": [ - "((props: ", - "TimelineProps", - ") => React.ReactElement<", - "TimelineProps", - ", string | ((props: any) => React.ReactElement React.Component)> | null) | (new (props: any) => React.Component)>) | undefined" - ], - "source": { - "path": "x-pack/plugins/timelines/public/types.ts", - "lineNumber": 11 + { + "parentPluginId": "timelines", + "id": "def-common.SingleTimelineResponseType", + "type": "Object", + "tags": [], + "label": "SingleTimelineResponseType", + "description": [], + "signature": [ + "TypeC", + "<{ data: ", + "TypeC", + "<{ getOneTimeline: ", + "IntersectionC", + "<[", + "PartialC", + "<{ columns: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ aggregatable: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; category: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnHeaderType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; description: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; example: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; indexes: ", + "UnionC", + "<[", + "ArrayC", + "<", + "StringC", + ">, ", + "NullC", + "]>; id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; placeholder: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; searchable: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; dataProviders: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; enabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; excluded: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; queryMatch: ", + "UnionC", + "<[", + "PartialC", + "<{ field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; operator: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; and: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; enabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; excluded: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; queryMatch: ", + "UnionC", + "<[", + "PartialC", + "<{ field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; operator: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" }, - "deprecated": false - } - ], - "lifecycle": "setup", - "initialIsOpen": true - } - }, - "server": { - "classes": [], - "functions": [], - "interfaces": [], - "enums": [], - "misc": [], - "objects": [], - "setup": { - "parentPluginId": "timelines", - "id": "def-server.TimelinesPluginSetup", - "type": "Interface", - "tags": [], - "label": "TimelinesPluginSetup", - "description": [], - "source": { - "path": "x-pack/plugins/timelines/server/types.ts", - "lineNumber": 9 + ".default>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + ".template>]>, ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; description: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; eqlOptions: ", + "UnionC", + "<[", + "PartialC", + "<{ eventCategoryField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; query: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; tiebreakerField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; timestampField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; size: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; eventType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; excludedRowRendererIds: ", + "UnionC", + "<[", + "ArrayC", + "<", + "Type", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + ", string, unknown>>, ", + "NullC", + "]>; favorite: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ keySearch: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; favoriteDate: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; fullName: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; userName: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; filters: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ exists: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; meta: ", + "UnionC", + "<[", + "PartialC", + "<{ alias: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; controlledBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; disabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; formattedValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; index: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; key: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; negate: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; params: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; match_all: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; missing: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; query: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; range: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; script: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; indexNames: ", + "UnionC", + "<[", + "ArrayC", + "<", + "StringC", + ">, ", + "NullC", + "]>; kqlMode: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "PartialC", + "<{ filterQuery: ", + "UnionC", + "<[", + "PartialC", + "<{ kuery: ", + "UnionC", + "<[", + "PartialC", + "<{ kind: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; expression: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; serializedQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; title: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; templateTimelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; templateTimelineVersion: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; timelineType: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".template>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".default>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".test>]>, ", + "NullC", + "]>; dateRange: ", + "UnionC", + "<[", + "PartialC", + "<{ start: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; end: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; savedQueryId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sort: ", + "UnionC", + "<[", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ columnId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sortDirection: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "PartialC", + "<{ columnId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sortDirection: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "NullC", + "]>; status: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".active>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".draft>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".immutable>]>, ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "TypeC", + "<{ savedObjectId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "PartialC", + "<{ eventIdToNoteIds: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "IntersectionC", + "<[", + "TypeC", + "<{ timelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "PartialC", + "<{ eventId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; note: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "TypeC", + "<{ noteId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "PartialC", + "<{ timelineVersion: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>>; noteIds: ", + "ArrayC", + "<", + "StringC", + ">; notes: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "IntersectionC", + "<[", + "TypeC", + "<{ timelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "PartialC", + "<{ eventId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; note: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "TypeC", + "<{ noteId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "PartialC", + "<{ timelineVersion: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>>; pinnedEventIds: ", + "ArrayC", + "<", + "StringC", + ">; pinnedEventsSaveObject: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "TypeC", + "<{ pinnedEventId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "IntersectionC", + "<[", + "TypeC", + "<{ timelineId: ", + "StringC", + "; eventId: ", + "StringC", + "; }>, ", + "PartialC", + "<{ created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "PartialC", + "<{ timelineVersion: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>>; }>]>; }>; }>" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 369 + }, + "deprecated": false, + "initialIsOpen": false }, - "deprecated": false, - "children": [], - "lifecycle": "setup", - "initialIsOpen": true - }, - "start": { - "parentPluginId": "timelines", - "id": "def-server.TimelinesPluginStart", - "type": "Interface", - "tags": [], - "label": "TimelinesPluginStart", - "description": [], - "source": { - "path": "x-pack/plugins/timelines/server/types.ts", - "lineNumber": 11 + { + "parentPluginId": "timelines", + "id": "def-common.sortFieldTimeline", + "type": "Object", + "tags": [], + "label": "sortFieldTimeline", + "description": [], + "signature": [ + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SortFieldTimeline", + "text": "SortFieldTimeline" + }, + ".title>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SortFieldTimeline", + "text": "SortFieldTimeline" + }, + ".description>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SortFieldTimeline", + "text": "SortFieldTimeline" + }, + ".updated>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SortFieldTimeline", + "text": "SortFieldTimeline" + }, + ".created>]>" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 532 + }, + "deprecated": false, + "initialIsOpen": false }, - "deprecated": false, - "children": [], - "lifecycle": "start", - "initialIsOpen": true - } - }, - "common": { - "classes": [], - "functions": [], - "interfaces": [], - "enums": [], - "misc": [ { "parentPluginId": "timelines", - "id": "def-common.PLUGIN_ID", - "type": "string", + "id": "def-common.sortTimeline", + "type": "Object", "tags": [], - "label": "PLUGIN_ID", + "label": "sortTimeline", "description": [], "signature": [ - "\"timelines\"" + "TypeC", + "<{ sortField: ", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SortFieldTimeline", + "text": "SortFieldTimeline" + }, + ".title>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SortFieldTimeline", + "text": "SortFieldTimeline" + }, + ".description>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SortFieldTimeline", + "text": "SortFieldTimeline" + }, + ".updated>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.SortFieldTimeline", + "text": "SortFieldTimeline" + }, + ".created>]>; sortOrder: ", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Direction", + "text": "Direction" + }, + ".asc>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Direction", + "text": "Direction" + }, + ".desc>]>; }>" ], "source": { - "path": "x-pack/plugins/timelines/common/index.ts", - "lineNumber": 8 + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 544 }, "deprecated": false, "initialIsOpen": false }, { "parentPluginId": "timelines", - "id": "def-common.PLUGIN_NAME", - "type": "string", + "id": "def-common.TemplateTimelineTypeLiteralRt", + "type": "Object", "tags": [], - "label": "PLUGIN_NAME", + "label": "TemplateTimelineTypeLiteralRt", "description": [], "signature": [ - "\"timelines\"" + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TemplateTimelineType", + "text": "TemplateTimelineType" + }, + ".elastic>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TemplateTimelineType", + "text": "TemplateTimelineType" + }, + ".custom>]>" ], "source": { - "path": "x-pack/plugins/timelines/common/index.ts", - "lineNumber": 9 + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 242 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TemplateTimelineTypeLiteralWithNullRt", + "type": "Object", + "tags": [], + "label": "TemplateTimelineTypeLiteralWithNullRt", + "description": [], + "signature": [ + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TemplateTimelineType", + "text": "TemplateTimelineType" + }, + ".elastic>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TemplateTimelineType", + "text": "TemplateTimelineType" + }, + ".custom>]>, ", + "NullC", + "]>" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 247 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineErrorResponseType", + "type": "Object", + "tags": [], + "label": "TimelineErrorResponseType", + "description": [], + "signature": [ + "TypeC", + "<{ status_code: ", + "NumberC", + "; message: ", + "StringC", + "; }>" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 394 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineIdLiteralRt", + "type": "Object", + "tags": [], + "label": "TimelineIdLiteralRt", + "description": [], + "signature": [ + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineId", + "text": "TimelineId" + }, + ".hostsPageEvents>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineId", + "text": "TimelineId" + }, + ".hostsPageExternalAlerts>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineId", + "text": "TimelineId" + }, + ".detectionsRulesDetailsPage>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineId", + "text": "TimelineId" + }, + ".detectionsPage>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineId", + "text": "TimelineId" + }, + ".networkPageExternalAlerts>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineId", + "text": "TimelineId" + }, + ".active>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineId", + "text": "TimelineId" + }, + ".test>]>" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 323 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineResponseType", + "type": "Object", + "tags": [], + "label": "TimelineResponseType", + "description": [ + "\nAll Timeline Saved object type with metadata" + ], + "signature": [ + "TypeC", + "<{ data: ", + "TypeC", + "<{ persistTimeline: ", + "IntersectionC", + "<[", + "PartialC", + "<{ code: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; message: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "TypeC", + "<{ timeline: ", + "IntersectionC", + "<[", + "PartialC", + "<{ columns: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ aggregatable: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; category: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnHeaderType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; description: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; example: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; indexes: ", + "UnionC", + "<[", + "ArrayC", + "<", + "StringC", + ">, ", + "NullC", + "]>; id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; placeholder: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; searchable: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; dataProviders: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; enabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; excluded: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; queryMatch: ", + "UnionC", + "<[", + "PartialC", + "<{ field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; operator: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; and: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; enabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; excluded: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; queryMatch: ", + "UnionC", + "<[", + "PartialC", + "<{ field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; operator: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + ".default>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + ".template>]>, ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; description: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; eqlOptions: ", + "UnionC", + "<[", + "PartialC", + "<{ eventCategoryField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; query: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; tiebreakerField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; timestampField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; size: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; eventType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; excludedRowRendererIds: ", + "UnionC", + "<[", + "ArrayC", + "<", + "Type", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + ", string, unknown>>, ", + "NullC", + "]>; favorite: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ keySearch: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; favoriteDate: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; fullName: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; userName: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; filters: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ exists: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; meta: ", + "UnionC", + "<[", + "PartialC", + "<{ alias: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; controlledBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; disabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; formattedValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; index: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; key: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; negate: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; params: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; match_all: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; missing: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; query: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; range: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; script: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; indexNames: ", + "UnionC", + "<[", + "ArrayC", + "<", + "StringC", + ">, ", + "NullC", + "]>; kqlMode: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "PartialC", + "<{ filterQuery: ", + "UnionC", + "<[", + "PartialC", + "<{ kuery: ", + "UnionC", + "<[", + "PartialC", + "<{ kind: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; expression: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; serializedQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; title: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; templateTimelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; templateTimelineVersion: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; timelineType: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".template>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".default>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".test>]>, ", + "NullC", + "]>; dateRange: ", + "UnionC", + "<[", + "PartialC", + "<{ start: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; end: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; savedQueryId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sort: ", + "UnionC", + "<[", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ columnId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sortDirection: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "PartialC", + "<{ columnId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sortDirection: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "NullC", + "]>; status: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".active>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".draft>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".immutable>]>, ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "TypeC", + "<{ savedObjectId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "PartialC", + "<{ eventIdToNoteIds: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "IntersectionC", + "<[", + "TypeC", + "<{ timelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "PartialC", + "<{ eventId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; note: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "TypeC", + "<{ noteId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "PartialC", + "<{ timelineVersion: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>>; noteIds: ", + "ArrayC", + "<", + "StringC", + ">; notes: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "IntersectionC", + "<[", + "TypeC", + "<{ timelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "PartialC", + "<{ eventId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; note: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "TypeC", + "<{ noteId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "PartialC", + "<{ timelineVersion: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>>; pinnedEventIds: ", + "ArrayC", + "<", + "StringC", + ">; pinnedEventsSaveObject: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "TypeC", + "<{ pinnedEventId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "IntersectionC", + "<[", + "TypeC", + "<{ timelineId: ", + "StringC", + "; eventId: ", + "StringC", + "; }>, ", + "PartialC", + "<{ created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "PartialC", + "<{ timelineVersion: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>>; }>]>; }>]>; }>; }>" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 380 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineSavedObjectRuntimeType", + "type": "Object", + "tags": [], + "label": "TimelineSavedObjectRuntimeType", + "description": [ + "\nTimeline Saved object type with metadata" + ], + "signature": [ + "IntersectionC", + "<[", + "TypeC", + "<{ id: ", + "StringC", + "; attributes: ", + "PartialC", + "<{ columns: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ aggregatable: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; category: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnHeaderType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; description: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; example: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; indexes: ", + "UnionC", + "<[", + "ArrayC", + "<", + "StringC", + ">, ", + "NullC", + "]>; id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; placeholder: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; searchable: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; dataProviders: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; enabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; excluded: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; queryMatch: ", + "UnionC", + "<[", + "PartialC", + "<{ field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; operator: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; and: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; enabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; excluded: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; queryMatch: ", + "UnionC", + "<[", + "PartialC", + "<{ field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; operator: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + ".default>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + ".template>]>, ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; description: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; eqlOptions: ", + "UnionC", + "<[", + "PartialC", + "<{ eventCategoryField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; query: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; tiebreakerField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; timestampField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; size: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; eventType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; excludedRowRendererIds: ", + "UnionC", + "<[", + "ArrayC", + "<", + "Type", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + ", string, unknown>>, ", + "NullC", + "]>; favorite: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ keySearch: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; favoriteDate: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; fullName: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; userName: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; filters: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ exists: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; meta: ", + "UnionC", + "<[", + "PartialC", + "<{ alias: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; controlledBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; disabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; formattedValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; index: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; key: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; negate: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; params: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; match_all: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; missing: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; query: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; range: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; script: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; indexNames: ", + "UnionC", + "<[", + "ArrayC", + "<", + "StringC", + ">, ", + "NullC", + "]>; kqlMode: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "PartialC", + "<{ filterQuery: ", + "UnionC", + "<[", + "PartialC", + "<{ kuery: ", + "UnionC", + "<[", + "PartialC", + "<{ kind: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; expression: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; serializedQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; title: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; templateTimelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; templateTimelineVersion: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; timelineType: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".template>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".default>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".test>]>, ", + "NullC", + "]>; dateRange: ", + "UnionC", + "<[", + "PartialC", + "<{ start: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; end: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; savedQueryId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sort: ", + "UnionC", + "<[", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ columnId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sortDirection: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "PartialC", + "<{ columnId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sortDirection: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "NullC", + "]>; status: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".active>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".draft>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".immutable>]>, ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>; version: ", + "StringC", + "; }>, ", + "PartialC", + "<{ savedObjectId: ", + "StringC", + "; }>]>" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 339 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineSavedToReturnObjectRuntimeType", + "type": "Object", + "tags": [], + "label": "TimelineSavedToReturnObjectRuntimeType", + "description": [], + "signature": [ + "IntersectionC", + "<[", + "PartialC", + "<{ columns: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ aggregatable: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; category: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnHeaderType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; description: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; example: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; indexes: ", + "UnionC", + "<[", + "ArrayC", + "<", + "StringC", + ">, ", + "NullC", + "]>; id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; placeholder: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; searchable: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; dataProviders: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; enabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; excluded: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; queryMatch: ", + "UnionC", + "<[", + "PartialC", + "<{ field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; operator: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; and: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ id: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; name: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; enabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; excluded: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; queryMatch: ", + "UnionC", + "<[", + "PartialC", + "<{ field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; displayValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; operator: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + ".default>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.DataProviderType", + "text": "DataProviderType" + }, + ".template>]>, ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; description: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; eqlOptions: ", + "UnionC", + "<[", + "PartialC", + "<{ eventCategoryField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; query: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; tiebreakerField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; timestampField: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; size: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; eventType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; excludedRowRendererIds: ", + "UnionC", + "<[", + "ArrayC", + "<", + "Type", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.RowRendererId", + "text": "RowRendererId" + }, + ", string, unknown>>, ", + "NullC", + "]>; favorite: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ keySearch: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; favoriteDate: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; fullName: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; userName: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; filters: ", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ exists: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; meta: ", + "UnionC", + "<[", + "PartialC", + "<{ alias: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; controlledBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; disabled: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; field: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; formattedValue: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; index: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; key: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; negate: ", + "UnionC", + "<[", + "BooleanC", + ", ", + "NullC", + "]>; params: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; type: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; value: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; match_all: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; missing: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; query: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; range: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; script: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "NullC", + "]>; indexNames: ", + "UnionC", + "<[", + "ArrayC", + "<", + "StringC", + ">, ", + "NullC", + "]>; kqlMode: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; kqlQuery: ", + "UnionC", + "<[", + "PartialC", + "<{ filterQuery: ", + "UnionC", + "<[", + "PartialC", + "<{ kuery: ", + "UnionC", + "<[", + "PartialC", + "<{ kind: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; expression: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; serializedQuery: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; title: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; templateTimelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; templateTimelineVersion: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; timelineType: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".template>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".default>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".test>]>, ", + "NullC", + "]>; dateRange: ", + "UnionC", + "<[", + "PartialC", + "<{ start: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; end: ", + "UnionC", + "<[", + "UnionC", + "<[", + "StringC", + ", ", + "NumberC", + "]>, ", + "NullC", + "]>; }>, ", + "NullC", + "]>; savedQueryId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sort: ", + "UnionC", + "<[", + "UnionC", + "<[", + "ArrayC", + "<", + "PartialC", + "<{ columnId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sortDirection: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>>, ", + "PartialC", + "<{ columnId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; columnType: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; sortDirection: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "NullC", + "]>; status: ", + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".active>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".draft>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".immutable>]>, ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "TypeC", + "<{ savedObjectId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "PartialC", + "<{ eventIdToNoteIds: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "IntersectionC", + "<[", + "TypeC", + "<{ timelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "PartialC", + "<{ eventId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; note: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "TypeC", + "<{ noteId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "PartialC", + "<{ timelineVersion: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>>; noteIds: ", + "ArrayC", + "<", + "StringC", + ">; notes: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "IntersectionC", + "<[", + "TypeC", + "<{ timelineId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>, ", + "PartialC", + "<{ eventId: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; note: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "TypeC", + "<{ noteId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "PartialC", + "<{ timelineVersion: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>>; pinnedEventIds: ", + "ArrayC", + "<", + "StringC", + ">; pinnedEventsSaveObject: ", + "ArrayC", + "<", + "IntersectionC", + "<[", + "TypeC", + "<{ pinnedEventId: ", + "StringC", + "; version: ", + "StringC", + "; }>, ", + "IntersectionC", + "<[", + "TypeC", + "<{ timelineId: ", + "StringC", + "; eventId: ", + "StringC", + "; }>, ", + "PartialC", + "<{ created: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; createdBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; updated: ", + "UnionC", + "<[", + "NumberC", + ", ", + "NullC", + "]>; updatedBy: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>, ", + "PartialC", + "<{ timelineVersion: ", + "UnionC", + "<[", + "StringC", + ", ", + "NullC", + "]>; }>]>>; }>]>" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 350 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineStatusLiteralRt", + "type": "Object", + "tags": [], + "label": "TimelineStatusLiteralRt", + "description": [], + "signature": [ + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".active>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".draft>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineStatus", + "text": "TimelineStatus" + }, + ".immutable>]>" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 198 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineTypeLiteralRt", + "type": "Object", + "tags": [], + "label": "TimelineTypeLiteralRt", + "description": [], + "signature": [ + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".template>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".default>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".test>]>" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 266 + }, + "deprecated": false, + "initialIsOpen": false + }, + { + "parentPluginId": "timelines", + "id": "def-common.TimelineTypeLiteralWithNullRt", + "type": "Object", + "tags": [], + "label": "TimelineTypeLiteralWithNullRt", + "description": [], + "signature": [ + "UnionC", + "<[", + "UnionC", + "<[", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".template>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".default>, ", + "LiteralC", + "<", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineType", + "text": "TimelineType" + }, + ".test>]>, ", + "NullC", + "]>" + ], + "source": { + "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", + "lineNumber": 272 }, "deprecated": false, "initialIsOpen": false } - ], - "objects": [] + ] } } \ No newline at end of file diff --git a/api_docs/timelines.mdx b/api_docs/timelines.mdx index e9d4a75e39991..d1bfb86877898 100644 --- a/api_docs/timelines.mdx +++ b/api_docs/timelines.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'timelines'] warning: 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. --- - import timelinesObj from './timelines.json'; @@ -19,12 +18,27 @@ import timelinesObj from './timelines.json'; | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 6 | 0 | 6 | 1 | +| 877 | 6 | 758 | 22 | ## Client -### Setup - +### Start + + +### Objects + + +### Functions + + +### Interfaces + + +### Enums + + +### Consts, variables and types + ## Server @@ -36,6 +50,18 @@ import timelinesObj from './timelines.json'; ## Common +### Objects + + +### Functions + + +### Interfaces + + +### Enums + + ### Consts, variables and types diff --git a/api_docs/triggers_actions_ui.mdx b/api_docs/triggers_actions_ui.mdx index 91327ad1f990f..e682f3872becf 100644 --- a/api_docs/triggers_actions_ui.mdx +++ b/api_docs/triggers_actions_ui.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'triggersActionsUi'] warning: 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. --- - import triggersActionsUiObj from './triggers_actions_ui.json'; diff --git a/api_docs/ui_actions.json b/api_docs/ui_actions.json index cb35cacedf7ba..c10c800abb054 100644 --- a/api_docs/ui_actions.json +++ b/api_docs/ui_actions.json @@ -774,22 +774,22 @@ { "plugin": "discover", "link": { - "path": "src/plugins/discover/public/application/embeddable/search_embeddable.ts", - "lineNumber": 115 + "path": "src/plugins/discover/public/application/embeddable/saved_search_embeddable.tsx", + "lineNumber": 101 } }, { "plugin": "discover", "link": { "path": "src/plugins/discover/public/application/embeddable/search_embeddable_factory.ts", - "lineNumber": 25 + "lineNumber": 26 } }, { "plugin": "discover", "link": { "path": "src/plugins/discover/public/plugin.tsx", - "lineNumber": 387 + "lineNumber": 462 } } ], diff --git a/api_docs/ui_actions.mdx b/api_docs/ui_actions.mdx index 9045dc736bb2f..e0bacc4204bda 100644 --- a/api_docs/ui_actions.mdx +++ b/api_docs/ui_actions.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'uiActions'] warning: 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. --- - import uiActionsObj from './ui_actions.json'; diff --git a/api_docs/ui_actions_enhanced.mdx b/api_docs/ui_actions_enhanced.mdx index 3e9c924753229..57c3e1876a555 100644 --- a/api_docs/ui_actions_enhanced.mdx +++ b/api_docs/ui_actions_enhanced.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'uiActionsEnhanced'] warning: 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. --- - import uiActionsEnhancedObj from './ui_actions_enhanced.json'; diff --git a/api_docs/uptime.json b/api_docs/uptime.json deleted file mode 100644 index f132703c525db..0000000000000 --- a/api_docs/uptime.json +++ /dev/null @@ -1,151 +0,0 @@ -{ - "id": "uptime", - "client": { - "classes": [], - "functions": [], - "interfaces": [], - "enums": [], - "misc": [], - "objects": [] - }, - "server": { - "classes": [], - "functions": [ - { - "parentPluginId": "uptime", - "id": "def-server.initServerWithKibana", - "type": "Function", - "tags": [], - "label": "initServerWithKibana", - "description": [], - "signature": [ - "(server: ", - "UptimeCoreSetup", - ", plugins: ", - "UptimeCorePlugins", - ") => void" - ], - "source": { - "path": "x-pack/plugins/uptime/server/kibana.index.ts", - "lineNumber": 28 - }, - "deprecated": false, - "children": [ - { - "parentPluginId": "uptime", - "id": "def-server.initServerWithKibana.$1", - "type": "Object", - "tags": [], - "label": "server", - "description": [], - "signature": [ - "UptimeCoreSetup" - ], - "source": { - "path": "x-pack/plugins/uptime/server/kibana.index.ts", - "lineNumber": 28 - }, - "deprecated": false, - "isRequired": true - }, - { - "parentPluginId": "uptime", - "id": "def-server.initServerWithKibana.$2", - "type": "Object", - "tags": [], - "label": "plugins", - "description": [], - "signature": [ - "UptimeCorePlugins" - ], - "source": { - "path": "x-pack/plugins/uptime/server/kibana.index.ts", - "lineNumber": 28 - }, - "deprecated": false, - "isRequired": true - } - ], - "returnComment": [], - "initialIsOpen": false - } - ], - "interfaces": [ - { - "parentPluginId": "uptime", - "id": "def-server.KibanaServer", - "type": "Interface", - "tags": [], - "label": "KibanaServer", - "description": [], - "signature": [ - { - "pluginId": "uptime", - "scope": "server", - "docId": "kibUptimePluginApi", - "section": "def-server.KibanaServer", - "text": "KibanaServer" - }, - " extends ", - "Server" - ], - "source": { - "path": "x-pack/plugins/uptime/server/kibana.index.ts", - "lineNumber": 24 - }, - "deprecated": false, - "children": [ - { - "parentPluginId": "uptime", - "id": "def-server.KibanaServer.route", - "type": "Function", - "tags": [], - "label": "route", - "description": [], - "signature": [ - "(options: ", - "KibanaRouteOptions", - ") => void" - ], - "source": { - "path": "x-pack/plugins/uptime/server/kibana.index.ts", - "lineNumber": 25 - }, - "deprecated": false, - "returnComment": [], - "children": [ - { - "parentPluginId": "uptime", - "id": "def-server.options", - "type": "Object", - "tags": [], - "label": "options", - "description": [], - "signature": [ - "KibanaRouteOptions" - ], - "source": { - "path": "x-pack/plugins/uptime/server/kibana.index.ts", - "lineNumber": 25 - }, - "deprecated": false - } - ] - } - ], - "initialIsOpen": false - } - ], - "enums": [], - "misc": [], - "objects": [] - }, - "common": { - "classes": [], - "functions": [], - "interfaces": [], - "enums": [], - "misc": [], - "objects": [] - } -} \ No newline at end of file diff --git a/api_docs/uptime.mdx b/api_docs/uptime.mdx deleted file mode 100644 index ceb7d854a8fec..0000000000000 --- a/api_docs/uptime.mdx +++ /dev/null @@ -1,31 +0,0 @@ ---- -id: kibUptimePluginApi -slug: /kibana-dev-docs/uptimePluginApi -title: uptime -image: https://source.unsplash.com/400x175/?github -summary: API docs for the uptime plugin -date: 2020-11-16 -tags: ['contributor', 'dev', 'apidocs', 'kibana', 'uptime'] -warning: 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. ---- - -import uptimeObj from './uptime.json'; - - - - - -**Code health stats** - -| Public API count | Any count | Items lacking comments | Missing exports | -|-------------------|-----------|------------------------|-----------------| -| 6 | 0 | 6 | 3 | - -## Server - -### Functions - - -### Interfaces - - diff --git a/api_docs/url_forwarding.mdx b/api_docs/url_forwarding.mdx index b457ca9eb331f..f76c8b4015cf2 100644 --- a/api_docs/url_forwarding.mdx +++ b/api_docs/url_forwarding.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'urlForwarding'] warning: 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. --- - import urlForwardingObj from './url_forwarding.json'; diff --git a/api_docs/usage_collection.mdx b/api_docs/usage_collection.mdx index 197cfc72f17af..6070c24c62003 100644 --- a/api_docs/usage_collection.mdx +++ b/api_docs/usage_collection.mdx @@ -8,7 +8,6 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'usageCollection'] warning: 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. --- - import usageCollectionObj from './usage_collection.json'; diff --git a/api_docs/vis_type_timeseries.mdx b/api_docs/vis_type_timeseries.mdx index a904e00ef0efc..645c5e6e841bc 100644 --- a/api_docs/vis_type_timeseries.mdx +++ b/api_docs/vis_type_timeseries.mdx @@ -8,12 +8,11 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeTimeseries'] warning: 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. --- - import visTypeTimeseriesObj from './vis_type_timeseries.json'; +Registers the TSVB visualization. TSVB has its one editor, works with index patterns and index strings and contains 6 types of charts: timeseries, topN, table. markdown, metric and gauge. - - +Contact [Kibana App](https://github.com/orgs/elastic/teams/kibana-app) for questions regarding this plugin. **Code health stats** diff --git a/api_docs/visualizations.json b/api_docs/visualizations.json index 83f9436420dcd..eb8db4feff9ad 100644 --- a/api_docs/visualizations.json +++ b/api_docs/visualizations.json @@ -3067,7 +3067,7 @@ "description": [], "source": { "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "lineNumber": 34 + "lineNumber": 36 }, "deprecated": false, "children": [ @@ -3080,7 +3080,7 @@ "description": [], "source": { "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "lineNumber": 35 + "lineNumber": 37 }, "deprecated": false }, @@ -3093,7 +3093,7 @@ "description": [], "source": { "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "lineNumber": 36 + "lineNumber": 38 }, "deprecated": false }, @@ -3106,7 +3106,7 @@ "description": [], "source": { "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "lineNumber": 37 + "lineNumber": 39 }, "deprecated": false }, @@ -3119,7 +3119,7 @@ "description": [], "source": { "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "lineNumber": 38 + "lineNumber": 40 }, "deprecated": false }, @@ -3132,7 +3132,7 @@ "description": [], "source": { "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "lineNumber": 39 + "lineNumber": 41 }, "deprecated": false }, @@ -3148,7 +3148,7 @@ ], "source": { "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "lineNumber": 40 + "lineNumber": 42 }, "deprecated": false }, @@ -3161,7 +3161,7 @@ "description": [], "source": { "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "lineNumber": 41 + "lineNumber": 43 }, "deprecated": false }, @@ -3177,7 +3177,7 @@ ], "source": { "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "lineNumber": 42 + "lineNumber": 44 }, "deprecated": false }, @@ -3193,7 +3193,7 @@ ], "source": { "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "lineNumber": 43 + "lineNumber": 45 }, "deprecated": false }, @@ -3209,7 +3209,7 @@ ], "source": { "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "lineNumber": 44 + "lineNumber": 46 }, "deprecated": false }, @@ -3227,7 +3227,7 @@ ], "source": { "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "lineNumber": 46 + "lineNumber": 48 }, "deprecated": false } @@ -3821,7 +3821,7 @@ "description": [], "source": { "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "lineNumber": 13 + "lineNumber": 14 }, "deprecated": false, "children": [ @@ -3834,7 +3834,7 @@ "description": [], "source": { "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "lineNumber": 14 + "lineNumber": 15 }, "deprecated": false }, @@ -3850,7 +3850,7 @@ ], "source": { "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "lineNumber": 15 + "lineNumber": 16 }, "deprecated": false }, @@ -3866,7 +3866,7 @@ ], "source": { "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "lineNumber": 16 + "lineNumber": 17 }, "deprecated": false }, @@ -3879,7 +3879,7 @@ "description": [], "source": { "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "lineNumber": 17 + "lineNumber": 18 }, "deprecated": false }, @@ -3892,7 +3892,7 @@ "description": [], "source": { "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "lineNumber": 18 + "lineNumber": 19 }, "deprecated": false }, @@ -3908,7 +3908,7 @@ ], "source": { "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "lineNumber": 19 + "lineNumber": 20 }, "deprecated": false }, @@ -3921,7 +3921,7 @@ "description": [], "source": { "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "lineNumber": 20 + "lineNumber": 21 }, "deprecated": false }, @@ -3934,7 +3934,7 @@ "description": [], "source": { "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "lineNumber": 21 + "lineNumber": 22 }, "deprecated": false }, @@ -3950,7 +3950,7 @@ ], "source": { "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "lineNumber": 22 + "lineNumber": 23 }, "deprecated": false }, @@ -3966,7 +3966,7 @@ ], "source": { "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "lineNumber": 23 + "lineNumber": 24 }, "deprecated": false }, @@ -3979,7 +3979,7 @@ "description": [], "source": { "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "lineNumber": 24 + "lineNumber": 25 }, "deprecated": false }, @@ -3995,7 +3995,39 @@ ], "source": { "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "lineNumber": 25 + "lineNumber": 26 + }, + "deprecated": false + }, + { + "parentPluginId": "visualizations", + "id": "def-public.VisualizationListItem.type", + "type": "CompoundType", + "tags": [], + "label": "type", + "description": [], + "signature": [ + "string | ", + { + "pluginId": "visualizations", + "scope": "public", + "docId": "kibVisualizationsPluginApi", + "section": "def-public.BaseVisType", + "text": "BaseVisType" + }, + "<", + { + "pluginId": "visualizations", + "scope": "common", + "docId": "kibVisualizationsPluginApi", + "section": "def-common.VisParams", + "text": "VisParams" + }, + "> | undefined" + ], + "source": { + "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", + "lineNumber": 27 }, "deprecated": false } @@ -4271,7 +4303,7 @@ ], "source": { "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "lineNumber": 11 + "lineNumber": 12 }, "deprecated": false, "initialIsOpen": false diff --git a/api_docs/visualizations.mdx b/api_docs/visualizations.mdx index c6d9bdc741d4a..a7dab0c029cc8 100644 --- a/api_docs/visualizations.mdx +++ b/api_docs/visualizations.mdx @@ -8,18 +8,17 @@ date: 2020-11-16 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visualizations'] warning: 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. --- - import visualizationsObj from './visualizations.json'; +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. - - +Contact [Kibana App](https://github.com/orgs/elastic/teams/kibana-app) for questions regarding this plugin. **Code health stats** | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 246 | 13 | 228 | 12 | +| 247 | 13 | 229 | 12 | ## Client diff --git a/docs/canvas/canvas-share-workpad.asciidoc b/docs/canvas/canvas-share-workpad.asciidoc deleted file mode 100644 index 348d15f39ad76..0000000000000 --- a/docs/canvas/canvas-share-workpad.asciidoc +++ /dev/null @@ -1,42 +0,0 @@ -[role="xpack"] -[[workpad-share-options]] -== Share your workpad - -When you've finished your workpad, you can share it outside of {kib}. - -For information on how to create PDFs and POST URLs, refer to <>. - -[float] -[[export-single-workpad]] -=== Export workpads - -Create a JSON file of your workpad that you can export outside of {kib}. - -To begin, click *Share > Download as JSON*. - -[role="screenshot"] -image::images/canvas-export-workpad.png[Export single workpad through JSON, from Share dropdown] - -Want to export multiple workpads? Go to the *Canvas* home page, select the workpads you want to export, then click *Export*. - -[float] -[[add-workpad-website]] -=== Share the workpad on a website - -beta[] *Canvas* allows you to create _shareables_, which are workpads that you download and securely share on any website. -To customize the behavior of the workpad on your website, you can choose to autoplay the pages or hide the workpad toolbar. - -. Click *Share > Share on a website*. - -. Follow the *Share on a website* instructions. - -. To customize the workpad behavior to autoplay the pages or hide the toolbar, use the inline parameters. -+ -To make sure that your data remains secure, the data in the JSON file is not connected to {kib}. *Canvas* does not display elements that manipulate the data on the workpad. -+ -[role="screenshot"] -image::canvas/images/canvas-embed_workpad.gif[Image showing how to share the workpad on a website] -+ -NOTE: Shareable workpads encode the current state of the workpad in a JSON file. When you make changes to the workpad, the changes do not appear in the shareable workpad on your website. - -. To change the settings, click the settings icon, then choose the settings you want to use. diff --git a/docs/user/reporting/development/csv-integration.asciidoc b/docs/developer/architecture/development/csv-integration.asciidoc similarity index 100% rename from docs/user/reporting/development/csv-integration.asciidoc rename to docs/developer/architecture/development/csv-integration.asciidoc diff --git a/docs/user/reporting/development/index.asciidoc b/docs/developer/architecture/development/index.asciidoc similarity index 100% rename from docs/user/reporting/development/index.asciidoc rename to docs/developer/architecture/development/index.asciidoc diff --git a/docs/user/reporting/development/pdf-integration.asciidoc b/docs/developer/architecture/development/pdf-integration.asciidoc similarity index 100% rename from docs/user/reporting/development/pdf-integration.asciidoc rename to docs/developer/architecture/development/pdf-integration.asciidoc diff --git a/docs/developer/architecture/index.asciidoc b/docs/developer/architecture/index.asciidoc index 1a0e7bab2f8f8..90a0972d65f2f 100644 --- a/docs/developer/architecture/index.asciidoc +++ b/docs/developer/architecture/index.asciidoc @@ -24,6 +24,7 @@ A few notable services are called out below. * <> * <> * <> +* <> include::kibana-platform-plugin-api.asciidoc[leveloffset=+1] @@ -52,3 +53,5 @@ include::security/index.asciidoc[leveloffset=+1] include::add-data-tutorials.asciidoc[leveloffset=+1] include::development-visualize-index.asciidoc[leveloffset=+1] + +include::development/index.asciidoc[leveloffset=+1] diff --git a/docs/developer/contributing/development-package-tests.asciidoc b/docs/developer/contributing/development-package-tests.asciidoc index 10c09d6cae8c0..7883ce2d83209 100644 --- a/docs/developer/contributing/development-package-tests.asciidoc +++ b/docs/developer/contributing/development-package-tests.asciidoc @@ -36,7 +36,7 @@ pip3 install --user ansible ``` # Build distributions -node scripts/build --all-platforms --debug --no-oss +node scripts/build --all-platforms --debug cd test/package diff --git a/docs/developer/getting-started/monorepo-packages.asciidoc b/docs/developer/getting-started/monorepo-packages.asciidoc index 0ee4c09192896..b656405b173d8 100644 --- a/docs/developer/getting-started/monorepo-packages.asciidoc +++ b/docs/developer/getting-started/monorepo-packages.asciidoc @@ -77,6 +77,7 @@ yarn kbn watch-bazel - @kbn/dev-utils - @kbn/docs-utils - @kbn/es +- @kbn/es-archiver - @kbn/eslint-import-resolver-kibana - @kbn/eslint-plugin-eslint - @kbn/expect @@ -107,6 +108,8 @@ yarn kbn watch-bazel - @kbn/std - @kbn/storybook - @kbn/telemetry-utils +- @kbn/test +- @kbn/test-subj-selector - @kbn/tinymath - @kbn/ui-framework - @kbn/ui-shared-deps diff --git a/docs/developer/plugin-list.asciidoc b/docs/developer/plugin-list.asciidoc index 231e089950a28..b4be27eee5ed2 100644 --- a/docs/developer/plugin-list.asciidoc +++ b/docs/developer/plugin-list.asciidoc @@ -72,6 +72,10 @@ This API doesn't support angular, for registering angular dev tools, bootstrap a |This plugin contains reusable code in the form of self-contained modules (or libraries). Each of these modules exports a set of functionality relevant to the domain of the module. +|{kib-repo}blob/{branch}/src/plugins/expression_reveal_image/README.md[expressionRevealImage] +|Expression Reveal Image plugin adds a revealImage function to the expression plugin and an associated renderer. The renderer will display the given percentage of a given image. + + |<> |Expression pipeline is a chain of functions that *pipe* its output to the input of the next function. Functions can be configured using arguments provided diff --git a/docs/development/core/public/kibana-plugin-core-public.doclinksstart.links.md b/docs/development/core/public/kibana-plugin-core-public.doclinksstart.links.md index 63d791db452d0..3650fe970d8fc 100644 --- a/docs/development/core/public/kibana-plugin-core-public.doclinksstart.links.md +++ b/docs/development/core/public/kibana-plugin-core-public.doclinksstart.links.md @@ -28,9 +28,13 @@ readonly links: { readonly elasticsearchModule: string; readonly startup: string; readonly exportedFields: string; + readonly suricataModule: string; + readonly zeekModule: string; }; readonly auditbeat: { readonly base: string; + readonly auditdModule: string; + readonly systemModule: string; }; readonly metricbeat: { readonly base: string; @@ -47,6 +51,9 @@ readonly links: { readonly heartbeat: { readonly base: string; }; + readonly libbeat: { + readonly getStarted: string; + }; readonly logstash: { readonly base: string; }; @@ -123,6 +130,10 @@ readonly links: { readonly siem: { readonly guide: string; readonly gettingStarted: string; + readonly ml: string; + readonly ruleChangeLog: string; + readonly detectionsReq: string; + readonly networkMap: string; }; readonly query: { readonly eql: string; @@ -201,5 +212,8 @@ readonly links: { upgradeElasticAgent: string; upgradeElasticAgent712lower: string; }>; + readonly ecs: { + readonly guide: string; + }; }; ``` diff --git a/docs/development/core/public/kibana-plugin-core-public.doclinksstart.md b/docs/development/core/public/kibana-plugin-core-public.doclinksstart.md index 947eece498130..4f66cc9a2c10f 100644 --- a/docs/development/core/public/kibana-plugin-core-public.doclinksstart.md +++ b/docs/development/core/public/kibana-plugin-core-public.doclinksstart.md @@ -17,5 +17,5 @@ export interface DocLinksStart | --- | --- | --- | | [DOC\_LINK\_VERSION](./kibana-plugin-core-public.doclinksstart.doc_link_version.md) | string | | | [ELASTIC\_WEBSITE\_URL](./kibana-plugin-core-public.doclinksstart.elastic_website_url.md) | string | | -| [links](./kibana-plugin-core-public.doclinksstart.links.md) | {
readonly settings: string;
readonly canvas: {
readonly guide: string;
};
readonly dashboard: {
readonly guide: string;
readonly drilldowns: string;
readonly drilldownsTriggerPicker: string;
readonly urlDrilldownTemplateSyntax: string;
readonly urlDrilldownVariables: string;
};
readonly discover: Record<string, string>;
readonly filebeat: {
readonly base: string;
readonly installation: string;
readonly configuration: string;
readonly elasticsearchOutput: string;
readonly elasticsearchModule: string;
readonly startup: string;
readonly exportedFields: string;
};
readonly auditbeat: {
readonly base: string;
};
readonly metricbeat: {
readonly base: string;
readonly configure: string;
readonly httpEndpoint: string;
readonly install: string;
readonly start: string;
};
readonly enterpriseSearch: {
readonly base: string;
readonly appSearchBase: string;
readonly workplaceSearchBase: string;
};
readonly heartbeat: {
readonly base: string;
};
readonly logstash: {
readonly base: string;
};
readonly functionbeat: {
readonly base: string;
};
readonly winlogbeat: {
readonly base: string;
};
readonly aggs: {
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 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;
};
readonly runtimeFields: {
readonly overview: string;
readonly mapping: string;
};
readonly scriptedFields: {
readonly scriptFields: string;
readonly scriptAggs: string;
readonly painless: string;
readonly painlessApi: string;
readonly painlessLangSpec: string;
readonly painlessSyntax: string;
readonly painlessWalkthrough: string;
readonly luceneExpressions: string;
};
readonly search: {
readonly sessions: string;
readonly sessionLimits: string;
};
readonly indexPatterns: {
readonly introduction: string;
readonly fieldFormattersNumber: string;
readonly fieldFormattersString: string;
readonly runtimeFields: string;
};
readonly addData: string;
readonly kibana: string;
readonly upgradeAssistant: string;
readonly rollupJobs: string;
readonly elasticsearch: Record<string, string>;
readonly siem: {
readonly guide: string;
readonly gettingStarted: string;
};
readonly query: {
readonly eql: string;
readonly kueryQuerySyntax: string;
readonly luceneQuerySyntax: string;
readonly percolate: string;
readonly queryDsl: string;
};
readonly date: {
readonly dateMath: string;
readonly dateMathIndexNames: string;
};
readonly management: Record<string, string>;
readonly ml: Record<string, string>;
readonly transforms: Record<string, string>;
readonly visualize: Record<string, string>;
readonly apis: Readonly<{
bulkIndexAlias: string;
byteSizeUnits: string;
createAutoFollowPattern: string;
createFollower: string;
createIndex: string;
createSnapshotLifecyclePolicy: string;
createRoleMapping: string;
createRoleMappingTemplates: string;
createRollupJobsRequest: string;
createApiKey: string;
createPipeline: string;
createTransformRequest: string;
cronExpressions: string;
executeWatchActionModes: string;
indexExists: string;
openIndex: string;
putComponentTemplate: string;
painlessExecute: string;
painlessExecuteAPIContexts: string;
putComponentTemplateMetadata: string;
putSnapshotLifecyclePolicy: string;
putIndexTemplateV1: string;
putWatch: string;
simulatePipeline: string;
timeUnits: string;
updateTransform: string;
}>;
readonly observability: Record<string, string>;
readonly alerting: Record<string, string>;
readonly maps: Record<string, string>;
readonly monitoring: Record<string, string>;
readonly security: Readonly<{
apiKeyServiceSettings: string;
clusterPrivileges: string;
elasticsearchSettings: string;
elasticsearchEnableSecurity: string;
indicesPrivileges: string;
kibanaTLS: string;
kibanaPrivileges: string;
mappingRoles: string;
mappingRolesFieldRules: string;
runAsPrivilege: string;
}>;
readonly watcher: Record<string, string>;
readonly ccs: Record<string, string>;
readonly plugins: Record<string, string>;
readonly snapshotRestore: Record<string, string>;
readonly ingest: Record<string, string>;
readonly fleet: Readonly<{
guide: string;
fleetServer: string;
fleetServerAddFleetServer: string;
settings: string;
settingsFleetServerHostSettings: string;
troubleshooting: string;
elasticAgent: string;
datastreams: string;
datastreamsNamingScheme: string;
upgradeElasticAgent: string;
upgradeElasticAgent712lower: string;
}>;
} | | +| [links](./kibana-plugin-core-public.doclinksstart.links.md) | {
readonly settings: string;
readonly canvas: {
readonly guide: string;
};
readonly dashboard: {
readonly guide: string;
readonly drilldowns: string;
readonly drilldownsTriggerPicker: string;
readonly urlDrilldownTemplateSyntax: string;
readonly urlDrilldownVariables: string;
};
readonly discover: Record<string, string>;
readonly filebeat: {
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;
};
readonly auditbeat: {
readonly base: string;
readonly auditdModule: string;
readonly systemModule: string;
};
readonly metricbeat: {
readonly base: string;
readonly configure: string;
readonly httpEndpoint: string;
readonly install: string;
readonly start: string;
};
readonly enterpriseSearch: {
readonly base: string;
readonly appSearchBase: string;
readonly workplaceSearchBase: string;
};
readonly heartbeat: {
readonly base: string;
};
readonly libbeat: {
readonly getStarted: string;
};
readonly logstash: {
readonly base: string;
};
readonly functionbeat: {
readonly base: string;
};
readonly winlogbeat: {
readonly base: string;
};
readonly aggs: {
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 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;
};
readonly runtimeFields: {
readonly overview: string;
readonly mapping: string;
};
readonly scriptedFields: {
readonly scriptFields: string;
readonly scriptAggs: string;
readonly painless: string;
readonly painlessApi: string;
readonly painlessLangSpec: string;
readonly painlessSyntax: string;
readonly painlessWalkthrough: string;
readonly luceneExpressions: string;
};
readonly search: {
readonly sessions: string;
readonly sessionLimits: string;
};
readonly indexPatterns: {
readonly introduction: string;
readonly fieldFormattersNumber: string;
readonly fieldFormattersString: string;
readonly runtimeFields: string;
};
readonly addData: string;
readonly kibana: string;
readonly upgradeAssistant: string;
readonly rollupJobs: string;
readonly elasticsearch: Record<string, string>;
readonly siem: {
readonly guide: string;
readonly gettingStarted: string;
readonly ml: string;
readonly ruleChangeLog: string;
readonly detectionsReq: string;
readonly networkMap: string;
};
readonly query: {
readonly eql: string;
readonly kueryQuerySyntax: string;
readonly luceneQuerySyntax: string;
readonly percolate: string;
readonly queryDsl: string;
};
readonly date: {
readonly dateMath: string;
readonly dateMathIndexNames: string;
};
readonly management: Record<string, string>;
readonly ml: Record<string, string>;
readonly transforms: Record<string, string>;
readonly visualize: Record<string, string>;
readonly apis: Readonly<{
bulkIndexAlias: string;
byteSizeUnits: string;
createAutoFollowPattern: string;
createFollower: string;
createIndex: string;
createSnapshotLifecyclePolicy: string;
createRoleMapping: string;
createRoleMappingTemplates: string;
createRollupJobsRequest: string;
createApiKey: string;
createPipeline: string;
createTransformRequest: string;
cronExpressions: string;
executeWatchActionModes: string;
indexExists: string;
openIndex: string;
putComponentTemplate: string;
painlessExecute: string;
painlessExecuteAPIContexts: string;
putComponentTemplateMetadata: string;
putSnapshotLifecyclePolicy: string;
putIndexTemplateV1: string;
putWatch: string;
simulatePipeline: string;
timeUnits: string;
updateTransform: string;
}>;
readonly observability: Record<string, string>;
readonly alerting: Record<string, string>;
readonly maps: Record<string, string>;
readonly monitoring: Record<string, string>;
readonly security: Readonly<{
apiKeyServiceSettings: string;
clusterPrivileges: string;
elasticsearchSettings: string;
elasticsearchEnableSecurity: string;
indicesPrivileges: string;
kibanaTLS: string;
kibanaPrivileges: string;
mappingRoles: string;
mappingRolesFieldRules: string;
runAsPrivilege: string;
}>;
readonly watcher: Record<string, string>;
readonly ccs: Record<string, string>;
readonly plugins: Record<string, string>;
readonly snapshotRestore: Record<string, string>;
readonly ingest: Record<string, string>;
readonly fleet: Readonly<{
guide: string;
fleetServer: string;
fleetServerAddFleetServer: string;
settings: string;
settingsFleetServerHostSettings: string;
troubleshooting: string;
elasticAgent: string;
datastreams: string;
datastreamsNamingScheme: string;
upgradeElasticAgent: string;
upgradeElasticAgent712lower: string;
}>;
readonly ecs: {
readonly guide: string;
};
} | | diff --git a/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.esfilters.md b/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.esfilters.md index 80c321ce6b320..d06ce1b2ef2bc 100644 --- a/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.esfilters.md +++ b/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.esfilters.md @@ -13,11 +13,11 @@ esFilters: { FILTERS: typeof FILTERS; FilterStateStore: typeof FilterStateStore; buildEmptyFilter: (isPinned: boolean, index?: string | undefined) => import("../common").Filter; - buildPhrasesFilter: (field: import("../common").IFieldType, params: any[], indexPattern: import("../common").IndexPatternBase) => import("../common").PhrasesFilter; - buildExistsFilter: (field: import("../common").IFieldType, indexPattern: import("../common").IndexPatternBase) => import("../common").ExistsFilter; - buildPhraseFilter: (field: import("../common").IFieldType, value: any, indexPattern: import("../common").IndexPatternBase) => import("../common").PhraseFilter; + buildPhrasesFilter: (field: import("../common").IndexPatternFieldBase, params: any[], indexPattern: import("../common").IndexPatternBase) => import("../common").PhrasesFilter; + buildExistsFilter: (field: import("../common").IndexPatternFieldBase, indexPattern: import("../common").IndexPatternBase) => import("../common").ExistsFilter; + buildPhraseFilter: (field: import("../common").IndexPatternFieldBase, value: any, indexPattern: import("../common").IndexPatternBase) => import("../common").PhraseFilter; buildQueryFilter: (query: any, index: string, alias: string) => import("../common").QueryStringFilter; - buildRangeFilter: (field: import("../common").IFieldType, params: import("../common").RangeFilterParams, indexPattern: import("../common").IndexPatternBase, formattedValue?: string | undefined) => import("../common").RangeFilter; + buildRangeFilter: (field: import("../common").IndexPatternFieldBase, params: import("../common").RangeFilterParams, indexPattern: import("../common").IndexPatternBase, formattedValue?: string | undefined) => import("../common").RangeFilter; isPhraseFilter: (filter: any) => filter is import("../common").PhraseFilter; isExistsFilter: (filter: any) => filter is import("../common").ExistsFilter; isPhrasesFilter: (filter: any) => filter is import("../common").PhrasesFilter; diff --git a/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.ifieldtype.lang.md b/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.ifieldtype.lang.md deleted file mode 100644 index f99e7ba8b967e..0000000000000 --- a/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.ifieldtype.lang.md +++ /dev/null @@ -1,11 +0,0 @@ - - -[Home](./index.md) > [kibana-plugin-plugins-data-public](./kibana-plugin-plugins-data-public.md) > [IFieldType](./kibana-plugin-plugins-data-public.ifieldtype.md) > [lang](./kibana-plugin-plugins-data-public.ifieldtype.lang.md) - -## IFieldType.lang property - -Signature: - -```typescript -lang?: estypes.ScriptLanguage; -``` diff --git a/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.ifieldtype.md b/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.ifieldtype.md index 29377ff8fd392..e1acea53ea5e0 100644 --- a/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.ifieldtype.md +++ b/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.ifieldtype.md @@ -12,7 +12,7 @@ Signature: ```typescript -export interface IFieldType +export interface IFieldType extends IndexPatternFieldBase ``` ## Properties @@ -26,15 +26,9 @@ export interface IFieldType | [esTypes](./kibana-plugin-plugins-data-public.ifieldtype.estypes.md) | string[] | | | [filterable](./kibana-plugin-plugins-data-public.ifieldtype.filterable.md) | boolean | | | [format](./kibana-plugin-plugins-data-public.ifieldtype.format.md) | any | | -| [lang](./kibana-plugin-plugins-data-public.ifieldtype.lang.md) | estypes.ScriptLanguage | | -| [name](./kibana-plugin-plugins-data-public.ifieldtype.name.md) | string | | | [readFromDocValues](./kibana-plugin-plugins-data-public.ifieldtype.readfromdocvalues.md) | boolean | | -| [script](./kibana-plugin-plugins-data-public.ifieldtype.script.md) | string | | -| [scripted](./kibana-plugin-plugins-data-public.ifieldtype.scripted.md) | boolean | | | [searchable](./kibana-plugin-plugins-data-public.ifieldtype.searchable.md) | boolean | | | [sortable](./kibana-plugin-plugins-data-public.ifieldtype.sortable.md) | boolean | | -| [subType](./kibana-plugin-plugins-data-public.ifieldtype.subtype.md) | IFieldSubType | | | [toSpec](./kibana-plugin-plugins-data-public.ifieldtype.tospec.md) | (options?: {
getFormatterForField?: IndexPattern['getFormatterForField'];
}) => FieldSpec | | -| [type](./kibana-plugin-plugins-data-public.ifieldtype.type.md) | string | | | [visualizable](./kibana-plugin-plugins-data-public.ifieldtype.visualizable.md) | boolean | | diff --git a/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.ifieldtype.name.md b/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.ifieldtype.name.md deleted file mode 100644 index 1c01484372fd3..0000000000000 --- a/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.ifieldtype.name.md +++ /dev/null @@ -1,11 +0,0 @@ - - -[Home](./index.md) > [kibana-plugin-plugins-data-public](./kibana-plugin-plugins-data-public.md) > [IFieldType](./kibana-plugin-plugins-data-public.ifieldtype.md) > [name](./kibana-plugin-plugins-data-public.ifieldtype.name.md) - -## IFieldType.name property - -Signature: - -```typescript -name: string; -``` diff --git a/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.ifieldtype.script.md b/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.ifieldtype.script.md deleted file mode 100644 index 252c2c3822046..0000000000000 --- a/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.ifieldtype.script.md +++ /dev/null @@ -1,11 +0,0 @@ - - -[Home](./index.md) > [kibana-plugin-plugins-data-public](./kibana-plugin-plugins-data-public.md) > [IFieldType](./kibana-plugin-plugins-data-public.ifieldtype.md) > [script](./kibana-plugin-plugins-data-public.ifieldtype.script.md) - -## IFieldType.script property - -Signature: - -```typescript -script?: string; -``` diff --git a/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.ifieldtype.scripted.md b/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.ifieldtype.scripted.md deleted file mode 100644 index 33bbd0c2c20cb..0000000000000 --- a/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.ifieldtype.scripted.md +++ /dev/null @@ -1,11 +0,0 @@ - - -[Home](./index.md) > [kibana-plugin-plugins-data-public](./kibana-plugin-plugins-data-public.md) > [IFieldType](./kibana-plugin-plugins-data-public.ifieldtype.md) > [scripted](./kibana-plugin-plugins-data-public.ifieldtype.scripted.md) - -## IFieldType.scripted property - -Signature: - -```typescript -scripted?: boolean; -``` diff --git a/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.ifieldtype.subtype.md b/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.ifieldtype.subtype.md deleted file mode 100644 index d0c26186da085..0000000000000 --- a/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.ifieldtype.subtype.md +++ /dev/null @@ -1,11 +0,0 @@ - - -[Home](./index.md) > [kibana-plugin-plugins-data-public](./kibana-plugin-plugins-data-public.md) > [IFieldType](./kibana-plugin-plugins-data-public.ifieldtype.md) > [subType](./kibana-plugin-plugins-data-public.ifieldtype.subtype.md) - -## IFieldType.subType property - -Signature: - -```typescript -subType?: IFieldSubType; -``` diff --git a/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.ifieldtype.type.md b/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.ifieldtype.type.md deleted file mode 100644 index 26228cbe4bfdb..0000000000000 --- a/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.ifieldtype.type.md +++ /dev/null @@ -1,11 +0,0 @@ - - -[Home](./index.md) > [kibana-plugin-plugins-data-public](./kibana-plugin-plugins-data-public.md) > [IFieldType](./kibana-plugin-plugins-data-public.ifieldtype.md) > [type](./kibana-plugin-plugins-data-public.ifieldtype.type.md) - -## IFieldType.type property - -Signature: - -```typescript -type: string; -``` diff --git a/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.iindexpattern.fields.md b/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.iindexpattern.fields.md new file mode 100644 index 0000000000000..792bee44f96a8 --- /dev/null +++ b/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.iindexpattern.fields.md @@ -0,0 +1,11 @@ + + +[Home](./index.md) > [kibana-plugin-plugins-data-public](./kibana-plugin-plugins-data-public.md) > [IIndexPattern](./kibana-plugin-plugins-data-public.iindexpattern.md) > [fields](./kibana-plugin-plugins-data-public.iindexpattern.fields.md) + +## IIndexPattern.fields property + +Signature: + +```typescript +fields: IFieldType[]; +``` diff --git a/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.iindexpattern.md b/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.iindexpattern.md index ec29ef81a6e69..c441073781169 100644 --- a/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.iindexpattern.md +++ b/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.iindexpattern.md @@ -20,6 +20,7 @@ export interface IIndexPattern extends IndexPatternBase | Property | Type | Description | | --- | --- | --- | | [fieldFormatMap](./kibana-plugin-plugins-data-public.iindexpattern.fieldformatmap.md) | Record<string, SerializedFieldFormat<unknown> | undefined> | | +| [fields](./kibana-plugin-plugins-data-public.iindexpattern.fields.md) | IFieldType[] | | | [getFormatterForField](./kibana-plugin-plugins-data-public.iindexpattern.getformatterforfield.md) | (field: IndexPatternField | IndexPatternField['spec'] | IFieldType) => FieldFormat | Look up a formatter for a given field | | [timeFieldName](./kibana-plugin-plugins-data-public.iindexpattern.timefieldname.md) | string | | | [title](./kibana-plugin-plugins-data-public.iindexpattern.title.md) | string | | diff --git a/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.indexpattern.getaggregationrestrictions.md b/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.indexpattern.getaggregationrestrictions.md index e42980bb53af4..1bbe0b594ecf0 100644 --- a/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.indexpattern.getaggregationrestrictions.md +++ b/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.indexpattern.getaggregationrestrictions.md @@ -9,7 +9,9 @@ ```typescript getAggregationRestrictions(): Recordboolean | | | [sortable](./kibana-plugin-plugins-data-public.indexpatternfield.sortable.md) | | boolean | | | [spec](./kibana-plugin-plugins-data-public.indexpatternfield.spec.md) | | FieldSpec | | -| [subType](./kibana-plugin-plugins-data-public.indexpatternfield.subtype.md) | | import("../types").IFieldSubType | undefined | | +| [subType](./kibana-plugin-plugins-data-public.indexpatternfield.subtype.md) | | import("../..").IFieldSubType | undefined | | | [type](./kibana-plugin-plugins-data-public.indexpatternfield.type.md) | | string | | | [visualizable](./kibana-plugin-plugins-data-public.indexpatternfield.visualizable.md) | | boolean | | diff --git a/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.indexpatternfield.subtype.md b/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.indexpatternfield.subtype.md index 5c3c4d54ad099..6cd5247291602 100644 --- a/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.indexpatternfield.subtype.md +++ b/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.indexpatternfield.subtype.md @@ -7,5 +7,5 @@ Signature: ```typescript -get subType(): import("../types").IFieldSubType | undefined; +get subType(): import("../..").IFieldSubType | undefined; ``` diff --git a/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.indexpatternfield.tojson.md b/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.indexpatternfield.tojson.md index 8882fa05ce0c2..b77f3d1f374fb 100644 --- a/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.indexpatternfield.tojson.md +++ b/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.indexpatternfield.tojson.md @@ -19,7 +19,7 @@ toJSON(): { searchable: boolean; aggregatable: boolean; readFromDocValues: boolean; - subType: import("../types").IFieldSubType | undefined; + subType: import("../..").IFieldSubType | undefined; customLabel: string | undefined; }; ``` @@ -37,7 +37,7 @@ toJSON(): { searchable: boolean; aggregatable: boolean; readFromDocValues: boolean; - subType: import("../types").IFieldSubType | undefined; + subType: import("../..").IFieldSubType | undefined; customLabel: string | undefined; }` diff --git a/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.esfilters.md b/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.esfilters.md index d009cad9ec601..594afcf9ee0dd 100644 --- a/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.esfilters.md +++ b/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.esfilters.md @@ -11,11 +11,11 @@ esFilters: { buildQueryFilter: (query: any, index: string, alias: string) => import("../common").QueryStringFilter; buildCustomFilter: typeof buildCustomFilter; buildEmptyFilter: (isPinned: boolean, index?: string | undefined) => import("../common").Filter; - buildExistsFilter: (field: import("../common").IFieldType, indexPattern: import("../common").IndexPatternBase) => import("../common").ExistsFilter; + buildExistsFilter: (field: import("../common").IndexPatternFieldBase, indexPattern: import("../common").IndexPatternBase) => import("../common").ExistsFilter; buildFilter: typeof buildFilter; - buildPhraseFilter: (field: import("../common").IFieldType, value: any, indexPattern: import("../common").IndexPatternBase) => import("../common").PhraseFilter; - buildPhrasesFilter: (field: import("../common").IFieldType, params: any[], indexPattern: import("../common").IndexPatternBase) => import("../common").PhrasesFilter; - buildRangeFilter: (field: import("../common").IFieldType, params: import("../common").RangeFilterParams, indexPattern: import("../common").IndexPatternBase, formattedValue?: string | undefined) => import("../common").RangeFilter; + buildPhraseFilter: (field: import("../common").IndexPatternFieldBase, value: any, indexPattern: import("../common").IndexPatternBase) => import("../common").PhraseFilter; + buildPhrasesFilter: (field: import("../common").IndexPatternFieldBase, params: any[], indexPattern: import("../common").IndexPatternBase) => import("../common").PhrasesFilter; + buildRangeFilter: (field: import("../common").IndexPatternFieldBase, params: import("../common").RangeFilterParams, indexPattern: import("../common").IndexPatternBase, formattedValue?: string | undefined) => import("../common").RangeFilter; isFilterDisabled: (filter: import("../common").Filter) => boolean; } ``` diff --git a/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.ifieldtype.lang.md b/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.ifieldtype.lang.md deleted file mode 100644 index 3d5a757cb8f18..0000000000000 --- a/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.ifieldtype.lang.md +++ /dev/null @@ -1,11 +0,0 @@ - - -[Home](./index.md) > [kibana-plugin-plugins-data-server](./kibana-plugin-plugins-data-server.md) > [IFieldType](./kibana-plugin-plugins-data-server.ifieldtype.md) > [lang](./kibana-plugin-plugins-data-server.ifieldtype.lang.md) - -## IFieldType.lang property - -Signature: - -```typescript -lang?: estypes.ScriptLanguage; -``` diff --git a/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.ifieldtype.md b/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.ifieldtype.md index bbc4cc2135d40..9f14bedf92008 100644 --- a/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.ifieldtype.md +++ b/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.ifieldtype.md @@ -12,7 +12,7 @@ Signature: ```typescript -export interface IFieldType +export interface IFieldType extends IndexPatternFieldBase ``` ## Properties @@ -26,15 +26,9 @@ export interface IFieldType | [esTypes](./kibana-plugin-plugins-data-server.ifieldtype.estypes.md) | string[] | | | [filterable](./kibana-plugin-plugins-data-server.ifieldtype.filterable.md) | boolean | | | [format](./kibana-plugin-plugins-data-server.ifieldtype.format.md) | any | | -| [lang](./kibana-plugin-plugins-data-server.ifieldtype.lang.md) | estypes.ScriptLanguage | | -| [name](./kibana-plugin-plugins-data-server.ifieldtype.name.md) | string | | | [readFromDocValues](./kibana-plugin-plugins-data-server.ifieldtype.readfromdocvalues.md) | boolean | | -| [script](./kibana-plugin-plugins-data-server.ifieldtype.script.md) | string | | -| [scripted](./kibana-plugin-plugins-data-server.ifieldtype.scripted.md) | boolean | | | [searchable](./kibana-plugin-plugins-data-server.ifieldtype.searchable.md) | boolean | | | [sortable](./kibana-plugin-plugins-data-server.ifieldtype.sortable.md) | boolean | | -| [subType](./kibana-plugin-plugins-data-server.ifieldtype.subtype.md) | IFieldSubType | | | [toSpec](./kibana-plugin-plugins-data-server.ifieldtype.tospec.md) | (options?: {
getFormatterForField?: IndexPattern['getFormatterForField'];
}) => FieldSpec | | -| [type](./kibana-plugin-plugins-data-server.ifieldtype.type.md) | string | | | [visualizable](./kibana-plugin-plugins-data-server.ifieldtype.visualizable.md) | boolean | | diff --git a/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.ifieldtype.name.md b/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.ifieldtype.name.md deleted file mode 100644 index 8be33a3f56d97..0000000000000 --- a/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.ifieldtype.name.md +++ /dev/null @@ -1,11 +0,0 @@ - - -[Home](./index.md) > [kibana-plugin-plugins-data-server](./kibana-plugin-plugins-data-server.md) > [IFieldType](./kibana-plugin-plugins-data-server.ifieldtype.md) > [name](./kibana-plugin-plugins-data-server.ifieldtype.name.md) - -## IFieldType.name property - -Signature: - -```typescript -name: string; -``` diff --git a/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.ifieldtype.script.md b/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.ifieldtype.script.md deleted file mode 100644 index b54a952a11253..0000000000000 --- a/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.ifieldtype.script.md +++ /dev/null @@ -1,11 +0,0 @@ - - -[Home](./index.md) > [kibana-plugin-plugins-data-server](./kibana-plugin-plugins-data-server.md) > [IFieldType](./kibana-plugin-plugins-data-server.ifieldtype.md) > [script](./kibana-plugin-plugins-data-server.ifieldtype.script.md) - -## IFieldType.script property - -Signature: - -```typescript -script?: string; -``` diff --git a/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.ifieldtype.scripted.md b/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.ifieldtype.scripted.md deleted file mode 100644 index f7a8ed9aee0df..0000000000000 --- a/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.ifieldtype.scripted.md +++ /dev/null @@ -1,11 +0,0 @@ - - -[Home](./index.md) > [kibana-plugin-plugins-data-server](./kibana-plugin-plugins-data-server.md) > [IFieldType](./kibana-plugin-plugins-data-server.ifieldtype.md) > [scripted](./kibana-plugin-plugins-data-server.ifieldtype.scripted.md) - -## IFieldType.scripted property - -Signature: - -```typescript -scripted?: boolean; -``` diff --git a/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.ifieldtype.subtype.md b/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.ifieldtype.subtype.md deleted file mode 100644 index fa78b23a2b558..0000000000000 --- a/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.ifieldtype.subtype.md +++ /dev/null @@ -1,11 +0,0 @@ - - -[Home](./index.md) > [kibana-plugin-plugins-data-server](./kibana-plugin-plugins-data-server.md) > [IFieldType](./kibana-plugin-plugins-data-server.ifieldtype.md) > [subType](./kibana-plugin-plugins-data-server.ifieldtype.subtype.md) - -## IFieldType.subType property - -Signature: - -```typescript -subType?: IFieldSubType; -``` diff --git a/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.ifieldtype.type.md b/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.ifieldtype.type.md deleted file mode 100644 index ef6a4dcc167c5..0000000000000 --- a/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.ifieldtype.type.md +++ /dev/null @@ -1,11 +0,0 @@ - - -[Home](./index.md) > [kibana-plugin-plugins-data-server](./kibana-plugin-plugins-data-server.md) > [IFieldType](./kibana-plugin-plugins-data-server.ifieldtype.md) > [type](./kibana-plugin-plugins-data-server.ifieldtype.type.md) - -## IFieldType.type property - -Signature: - -```typescript -type: string; -``` diff --git a/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.indexpattern.getaggregationrestrictions.md b/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.indexpattern.getaggregationrestrictions.md index b655e779e4fa4..70a3da86e9fbd 100644 --- a/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.indexpattern.getaggregationrestrictions.md +++ b/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.indexpattern.getaggregationrestrictions.md @@ -9,7 +9,9 @@ ```typescript getAggregationRestrictions(): Record> file to proxy EMS requests through the Kibana server. -. Update your firewall rules to allow connections from your Kibana server to the EMS domains. - -NOTE: Coordinate map and region map visualizations do not support `map.proxyElasticMapsServiceInMaps` and will not proxy EMS requests through the Kibana server. - - [float] === Disable Elastic Maps Service diff --git a/docs/redirects.asciidoc b/docs/redirects.asciidoc index a14bda2bf5a98..eb3130ba6fdb5 100644 --- a/docs/redirects.asciidoc +++ b/docs/redirects.asciidoc @@ -308,3 +308,12 @@ This content has moved. Refer to <>. This content has moved. Refer to <>. +[role="exclude",id="embedding"] +== Embed {kib} content in a web page + +This content has moved. Refer to <> and <>. + +[role="exclude",id="reporting-troubleshooting-system-dependencies"] +== System dependencies + +This content has moved. Refer to <>. \ No newline at end of file diff --git a/docs/settings/reporting-settings.asciidoc b/docs/settings/reporting-settings.asciidoc index 70f3e272fa5a9..b339daf3d36f7 100644 --- a/docs/settings/reporting-settings.asciidoc +++ b/docs/settings/reporting-settings.asciidoc @@ -4,29 +4,75 @@ ++++ Reporting settings ++++ +:keywords: administrator, reference, setup, reporting +:description: A reference of the reporting settings administrators configure in kibana.yml. You can configure `xpack.reporting` settings in your `kibana.yml` to: +* <> +* <> +* <> * <> * <> * <> +* <> * <> [float] [[general-reporting-settings]] -==== General reporting settings +==== Enable reporting -[cols="2*<"] -|=== -| [[xpack-enable-reporting]]`xpack.reporting.enabled` {ess-icon} - | Set to `false` to disable the {report-features}. +[[xpack-enable-reporting]]`xpack.reporting.enabled` {ess-icon}:: +When `true`, enables the {report-features}. The {report-features} are automatically enabled in {kib}. The default is `true`. -|[[xpack-reporting-encryptionKey]] `xpack.reporting.encryptionKey` {ess-icon} - | Set to an alphanumeric, at least 32 characters long text string. By default, {kib} will generate a random key when it - starts, which will cause pending reports to fail after restart. Configure this - setting to preserve the same key across multiple restarts and multiple instances of {kib}. +[float] +[[encryption-keys]] +==== Encryption key setting + +By default, an encryption key is generated for the {report-features} each +time you start {kib}. If a static encryption key is not persisted in +the {kib} configuration, any pending reports fail when you restart {kib}. + +If you are load balancing across multiple {kib} instances, each instance needs to have +the same reporting encryption key. Otherwise, report generation fails if a +report is queued through one instance, and another instance picks up the job +from the report queue. The instance that picks up the job is unable to decrypt the +reporting job metadata. + +[[xpack-reporting-encryptionKey]] `xpack.reporting.encryptionKey` {ess-icon}:: +The static encryption key for reporting. Use an alphanumeric text string that is at least 32 characters. By default, {kib} generates a random key when it starts, which causes pending reports to fail after restart. Configure `xpack.reporting.encryptionKey` to preserve the same key across multiple restarts and multiple {kib} instances. -|=== +[source,yaml] +-------------------------------------------------------------------------------- +xpack.reporting.encryptionKey: "something_secret" +-------------------------------------------------------------------------------- + +[float] +[[report-indices]] +==== Reporting index setting + + + +`xpack.reporting.index`:: +deprecated:[7.11.0,This setting will be removed in 8.0.0.] Multitenancy by changing `kibana.index` is unsupported starting in 8.0.0. For more details, refer to https://ela.st/kbn-remove-legacy-multitenancy[8.0 Breaking Changes]. When you divide workspaces in an Elastic cluster using multiple {kib} instances with a different `kibana.index` setting per instance, you must set a unique `xpack.reporting.index` setting per `kibana.index`. Otherwise, report generation periodically fails if a report is queued through an instance with one `kibana.index` setting, and an instance with a different `kibana.index` attempts to claim the job. Reporting uses a weekly index in {es} to store the reporting job and the report content. The index is automatically created if it does not already exist. Configure a unique value for `xpack.reporting.index`, beginning with `.reporting-`, for every {kib} instance that has a unique <> setting. Defaults to `.reporting`. + +{kib} instance A: +[source,yaml] +-------------------------------------------------------------------------------- +kibana.index: ".kibana-a" +xpack.reporting.index: ".reporting-a" +xpack.reporting.encryptionKey: "something_secret" +-------------------------------------------------------------------------------- + +{kib} instance B: +[source,yaml] +-------------------------------------------------------------------------------- +kibana.index: ".kibana-b" +xpack.reporting.index: ".reporting-b" +xpack.reporting.encryptionKey: "something_secret" +-------------------------------------------------------------------------------- + +NOTE: If security is enabled, the `xpack.reporting.index` setting should begin with `.reporting-` for the `kibana_system` role to have the necessary privileges over the index. [float] [[reporting-kibana-server-settings]] @@ -34,44 +80,37 @@ You can configure `xpack.reporting` settings in your `kibana.yml` to: Reporting opens the {kib} web interface in a server process to generate screenshots of {kib} visualizations. In most cases, the default settings -will work and you don't need to configure Reporting to communicate with {kib}. -However, if your client connections must go through a reverse-proxy -to access {kib}, Reporting configuration must have the proxy port, protocol, -and hostname set in the `xpack.reporting.kibanaServer.*` settings. +work and you don't need to configure the {report-features} to communicate with {kib}. + +If your {kib} instance requires a reverse proxy (such as NGINX, Apache, etc.) for +access, because of rewrite rules or special headers being added by the proxy, +you must configure the `xpack.reporting.kibanaServer` settings to make +the headless browser process connect to the proxy. [NOTE] -==== -If a reverse-proxy carries encrypted traffic from end-user +============ +If a reverse proxy carries encrypted traffic from user clients back to a {kib} server, the proxy port, protocol, and hostname -in Reporting settings must be valid for the encryption that the Reporting -browser will receive. Encrypted communications will fail if there are +in `xpack.reporting.kibanaServer` must be valid for the encryption that the Reporting +browser receives. Encrypted communications fail if there are mismatches in the host information between the request and the certificate on the server. Configuring the `xpack.reporting.kibanaServer` settings to point to a proxy host requires that the {kib} server has network access to the proxy. -==== - -[cols="2*<"] -|=== -| `xpack.reporting.kibanaServer.port` - | The port for accessing {kib}, if different from the <> value. +============ -| `xpack.reporting.kibanaServer.protocol` - | The protocol for accessing {kib}, typically `http` or `https`. +`xpack.reporting.kibanaServer.port`:: The port for accessing {kib}, if different from the <> value. -|[[xpack-kibanaServer-hostname]] `xpack.reporting.kibanaServer.hostname` - | The hostname for accessing {kib}, if different from the <> value. +`xpack.reporting.kibanaServer.protocol`:: +The protocol for accessing {kib}, typically `http` or `https`. -|=== +[[xpack-kibanaServer-hostname]] `xpack.reporting.kibanaServer.hostname`:: +The hostname for accessing {kib}, if different from the <> value. -[NOTE] -============ -Reporting authenticates requests on the {kib} page only when the hostname matches the -<> setting. Therefore Reporting would fail if the +NOTE: Reporting authenticates requests on the {kib} page only when the hostname matches the +<> setting. Therefore Reporting fails if the set value redirects to another server. For that reason, `"0"` is an invalid setting because, in the Reporting browser, it becomes an automatic redirect to `"0.0.0.0"`. -============ - [float] [[reporting-job-queue-settings]] @@ -81,98 +120,50 @@ Reporting generates reports in the background and jobs are coordinated using doc in {es}. Depending on how often you generate reports and the overall number of reports, you might need to change the following settings. -[cols="2*<"] -|=== -| `xpack.reporting.queue.indexInterval` - | How often the index that stores reporting jobs rolls over to a new index. - Valid values are `year`, `month`, `week`, `day`, and `hour`. Defaults to `week`. - -| `xpack.reporting.queue.pollEnabled` {ess-icon} - | Set to `true` (default) to enable the {kib} instance to poll the index for - pending jobs and claim them for execution. Setting this to `false` allows the - {kib} instance to only add new jobs to the reporting queue, list jobs, and - provide the downloads to completed report through the UI. +`xpack.reporting.queue.indexInterval`:: +How often the index that stores reporting jobs rolls over to a new index. Valid values are `year`, `month`, `week`, `day`, and `hour`. Defaults to `week`. -|=== +`xpack.reporting.queue.pollEnabled` {ess-icon}:: +Set to `true` (default) to enable the {kib} instance to poll the index for pending jobs and claim them for execution. Setting this to `false` allows the {kib} instance to only add new jobs to the reporting queue, list jobs, and provide the downloads to completed report through the UI. -[NOTE] -============ -Running multiple instances of {kib} in a cluster for load balancing of +NOTE: Running multiple instances of {kib} in a cluster for load balancing of reporting requires identical values for <> and, if security is enabled, <>. -============ -[cols="2*<"] -|=== -| `xpack.reporting.queue.pollInterval` - | Specify the {ref}/common-options.html#time-units[time] that the reporting poller waits between polling the index for any - pending Reporting jobs. Can be specified as number of milliseconds. Defaults to `3s`. +`xpack.reporting.queue.pollInterval`:: +Specifies the {time-units}[time] that the reporting poller waits between polling the index for any pending Reporting jobs. Can be specified as number of milliseconds. Defaults to `3s`. -| [[xpack-reporting-q-timeout]] `xpack.reporting.queue.timeout` {ess-icon} - | {ref}/common-options.html#time-units[How long] each worker has to produce a report. If your machine is slow or under heavy - load, you might need to increase this timeout. If a Reporting job execution goes over this time limit, the job is marked as a - failure and no download will be available. Can be specified as number of milliseconds. - Defaults to `2m`. - -|=== +[[xpack-reporting-q-timeout]] `xpack.reporting.queue.timeout` {ess-icon}:: +{time-units}[How long] each worker has to produce a report. If your machine is slow or under heavy load, you might need to increase this timeout. If a Reporting job execution goes over this time limit, the job is marked as a failure and no download will be available. Can be specified as number of milliseconds. Defaults to `2m`. [float] [[reporting-capture-settings]] ==== Capture settings -Reporting works by capturing screenshots from {kib}. The following settings -control the capturing process. - -[cols="2*<"] -|=== -a| `xpack.reporting.capture.timeouts` -`.openUrl` {ess-icon} - | Specify the {ref}/common-options.html#time-units[time] to allow the Reporting browser to wait for the "Loading..." screen - to dismiss and find the initial data for the page. If the time is exceeded, a screenshot is captured showing the current - page, and the download link shows a warning message. Can be specified as number of milliseconds. - Defaults to `1m`. - -a| `xpack.reporting.capture.timeouts` -`.waitForElements` {ess-icon} - | Specify the {ref}/common-options.html#time-units[time] to allow the Reporting browser to wait for all visualization panels - to load on the page. If the time is exceeded, a screenshot is captured showing the current page, and the download link shows - a warning message. Can be specified as number of milliseconds. - Defaults to `30s`. - -a| `xpack.reporting.capture.timeouts` -`.renderComplete` {ess-icon} - | Specify the {ref}/common-options.html#time-units[time] to allow the Reporting browser to wait for all visualizations to - fetch and render the data. If the time is exceeded, a screenshot is captured showing the current page, and the download link shows a - warning message. Can be specified as number of milliseconds. - Defaults to `30s`. - -|=== +Reporting works by capturing screenshots from {kib}. The following settings control the capturing process. -[NOTE] -============ -If any timeouts from `xpack.reporting.capture.timeouts.*` settings occur when +`xpack.reporting.capture.timeouts.openUrl` {ess-icon}:: +Specify the {time-units}[time] to allow the Reporting browser to wait for the "Loading..." screen to dismiss and find the initial data for the page. If the time is exceeded, a screenshot is captured showing the current page, and the download link shows a warning message. Can be specified as number of milliseconds. Defaults to `1m`. + +`xpack.reporting.capture.timeouts.waitForElements` {ess-icon}:: + Specify the {time-units}[time] to allow the Reporting browser to wait for all visualization panels to load on the page. If the time is exceeded, a screenshot is captured showing the current page, and the download link shows a warning message. Can be specified as number of milliseconds. Defaults to `30s`. + +`xpack.reporting.capture.timeouts.renderComplete` {ess-icon}:: + Specify the {time-units}[time] to allow the Reporting browser to wait for all visualizations to fetch and render the data. If the time is exceeded, a screenshot is captured showing the current page, and the download link shows a warning message. Can be specified as number of milliseconds. Defaults to `30s`. + +NOTE: If any timeouts from `xpack.reporting.capture.timeouts.*` settings occur when running a report job, Reporting will log the error and try to continue capturing the page with a screenshot. As a result, a download will be available, but there will likely be errors in the visualizations in the report. -============ -[cols="2*<"] -|=== -| `xpack.reporting.capture.maxAttempts` {ess-icon} - | If capturing a report fails for any reason, {kib} will re-attempt other reporting - job, as many times as this setting. Defaults to `3`. +`xpack.reporting.capture.maxAttempts` {ess-icon}:: +If capturing a report fails for any reason, {kib} will re-attempt other reporting job, as many times as this setting. Defaults to `3`. -| `xpack.reporting.capture.loadDelay` - | Specify the {ref}/common-options.html#time-units[amount of time] before taking a screenshot when visualizations are not evented. - All visualizations that ship with {kib} are evented, so this setting should not have much effect. If you are seeing empty images - instead of visualizations, try increasing this value. - Defaults to `3s`. +`xpack.reporting.capture.loadDelay`:: +Specify the {time-units}[amount of time] before taking a screenshot when visualizations are not evented. All visualizations that ship with {kib} are evented, so this setting should not have much effect. If you are seeing empty images instead of visualizations, try increasing this value. Defaults to `3s`. -| [[xpack-reporting-browser]] `xpack.reporting.capture.browser.type` {ess-icon} - | Specifies the browser to use to capture screenshots. This setting exists for - backward compatibility. The only valid option is `chromium`. - -|=== +[[xpack-reporting-browser]] `xpack.reporting.capture.browser.type` {ess-icon}:: +Specifies the browser to use to capture screenshots. This setting exists for backward compatibility. The only valid option is `chromium`. [float] [[reporting-chromium-settings]] @@ -180,42 +171,85 @@ available, but there will likely be errors in the visualizations in the report. When <> is set to `chromium` (default) you can also specify the following settings. -[cols="2*<"] -|=== -a| `xpack.reporting.capture.browser` -`.chromium.disableSandbox` - | It is recommended that you research the feasibility of enabling unprivileged user namespaces. - See Chromium Sandbox for additional information. Defaults to false for all operating systems except Debian, - Red Hat Linux, and CentOS which use true. +`xpack.reporting.capture.browser.chromium.disableSandbox`:: +It is recommended that you research the feasibility of enabling unprivileged user namespaces. An exception is if you are running {kib} in Docker because the container runs in a user namespace with the built-in seccomp/bpf filters. For more information, refer to <>. Defaults to `false` for all operating systems except Debian, Red Hat Linux, and CentOS, which use `true`. + +`xpack.reporting.capture.browser.chromium.proxy.enabled`:: +Enables the proxy for Chromium to use. When set to `true`, you must also specify the `xpack.reporting.capture.browser.chromium.proxy.server` setting. Defaults to `false`. + +`xpack.reporting.capture.browser.chromium.proxy.server`:: +The uri for the proxy server. Providing the username and password for the proxy server via the uri is not supported. + +`xpack.reporting.capture.browser.chromium.proxy.bypass`:: +An array of hosts that should not go through the proxy server and should use a direct connection instead. Examples of valid entries are "elastic.co", "*.elastic.co", ".elastic.co", ".elastic.co:5601". + +[float] +[[reporting-network-policy]] +=== Network policy settings + +To generate PDF reports, *Reporting* uses the Chromium browser to fully load the {kib} page on the server. This potentially involves sending requests to external hosts. For example, a request might go to an external image server to show a field formatted as an image, or to show an image in a Markdown visualization. + +If the Chromium browser is asked to send a request that violates the network policy, *Reporting* stops processing the page before the request goes out, and the report is marked as a failure. Additional information about the event is in the {kib} server logs. + +NOTE: {kib} installations are not designed to be publicly accessible over the internet. The Reporting network policy and other capabilities of the Elastic Stack security features do not change this condition. + +`xpack.reporting.capture.networkPolicy`:: +Capturing a screenshot from a {kib} page involves sending out requests for all the linked web assets. For example, a Markdown visualization can show an image from a remote server. + +`xpack.reporting.capture.networkPolicy.enabled`:: +When `false`, disables the *Reporting* network policy. Defaults to `true`. + +`xpack.reporting.capture.networkPolicy.rules`:: +A policy is specified as an array of objects that describe what to allow or deny based on a host or protocol. If a host or protocol is not specified, the rule matches any host or protocol. -a| `xpack.reporting.capture.browser` -`.chromium.proxy.enabled` - | Enables the proxy for Chromium to use. When set to `true`, you must also specify the - `xpack.reporting.capture.browser.chromium.proxy.server` setting. - Defaults to `false`. +The rule objects are evaluated sequentially from the beginning to the end of the array, and continue until there is a matching rule. If no rules allow a request, the request is denied. -a| `xpack.reporting.capture.browser` -`.chromium.proxy.server` - | The uri for the proxy server. Providing the username and password for the proxy server via the uri is not supported. +[source,yaml] +------------------------------------------------------- +# Only allow requests to placeholder.com +xpack.reporting.capture.networkPolicy: + rules: [ { allow: true, host: "placeholder.com" } ] +------------------------------------------------------- -a| `xpack.reporting.capture.browser` -`.chromium.proxy.bypass` - | An array of hosts that should not go through the proxy server and should use a direct connection instead. - Examples of valid entries are "elastic.co", "*.elastic.co", ".elastic.co", ".elastic.co:5601". +[source,yaml] +------------------------------------------------------- +# Only allow requests to https://placeholder.com +xpack.reporting.capture.networkPolicy: + rules: [ { allow: true, host: "placeholder.com", protocol: "https:" } ] +------------------------------------------------------- -|=== +A final `allow` rule with no host or protocol allows all requests that are not explicitly denied: + +[source,yaml] +------------------------------------------------------- +# Denies requests from http://placeholder.com, but anything else is allowed. +xpack.reporting.capture.networkPolicy: + rules: [{ allow: false, host: "placeholder.com", protocol: "http:" }, { allow: true }]; +------------------------------------------------------- + +A network policy can be composed of multiple rules: + +[source,yaml] +------------------------------------------------------- +# Allow any request to http://placeholder.com but for any other host, https is required +xpack.reporting.capture.networkPolicy + rules: [ + { allow: true, host: "placeholder.com", protocol: "http:" }, + { allow: true, protocol: "https:" }, + ] +------------------------------------------------------- + +[NOTE] +============ +The `file:` protocol is always denied, even if no network policy is configured. +============ [float] [[reporting-csv-settings]] ==== CSV settings -[cols="2*<"] -|=== -| [[xpack-reporting-csv]] `xpack.reporting.csv.maxSizeBytes` {ess-icon} - | The maximum {ref}/common-options.html#byte-units[byte size] of a CSV file before being truncated. This setting exists to - prevent large exports from causing performance and storage issues. Can be specified as number of bytes. - Defaults to `10mb`. -|=== +[[xpack-reporting-csv]] `xpack.reporting.csv.maxSizeBytes` {ess-icon}:: +The maximum {byte-units}[byte size] of a CSV file before being truncated. This setting exists to prevent large exports from causing performance and storage issues. Can be specified as number of bytes. Defaults to `10mb`. [NOTE] ============ @@ -230,69 +264,33 @@ on multiple factors: For information about {kib} memory limits, see <>. ============ -[cols="2*<"] -|=== +`xpack.reporting.csv.scroll.size`:: +Number of documents retrieved from {es} for each scroll iteration during a CSV export. Defaults to `500`. -| `xpack.reporting.csv.scroll.size` - | Number of documents retrieved from {es} for each scroll iteration during a CSV - export. - Defaults to `500`. +`xpack.reporting.csv.scroll.duration`:: + Amount of {time-units}[time] allowed before {kib} cleans the scroll context during a CSV export. Defaults to `30s`. -| `xpack.reporting.csv.scroll.duration` - | Amount of {ref}/common-options.html#time-units[time] allowed before {kib} cleans the scroll context during a CSV export. - Defaults to `30s`. +`xpack.reporting.csv.checkForFormulas`:: +Enables a check that warns you when there's a potential formula involved in the output (=, -, +, and @ chars). See OWASP: https://www.owasp.org/index.php/CSV_Injection. Defaults to `true`. -| `xpack.reporting.csv.checkForFormulas` - | Enables a check that warns you when there's a potential formula involved in the output (=, -, +, and @ chars). - See OWASP: https://www.owasp.org/index.php/CSV_Injection - Defaults to `true`. - -| `xpack.reporting.csv` `.enablePanelActionDownload` - | Enables CSV export from a saved search on a dashboard. This action is available in the dashboard panel menu for the saved search. - *Note:* This setting exists for backwards compatibility, but is unused and hardcoded to `true`. CSV export from a saved search on a dashboard - is enabled when Reporting is enabled. - -|=== +`xpack.reporting.csv` `.enablePanelActionDownload`:: +Enables CSV export from a saved search on a dashboard. This action is available in the dashboard panel menu for the saved search. +NOTE: This setting exists for backwards compatibility, but is unused and hardcoded to `true`. CSV export from a saved search on a dashboard is enabled when Reporting is enabled. [float] [[reporting-advanced-settings]] -==== Advanced settings - -[cols="2*<"] -|=== -| `xpack.reporting.capture.networkPolicy` - | Capturing a screenshot from a {kib} page involves sending out requests for all the linked web assets. For example, a Markdown - visualization can show an image from a remote server. You can configure what type of requests to allow or filter by setting a - <> for Reporting. - -| `xpack.reporting.index` - | deprecated:[7.11.0,This setting will be removed in 8.0.] Multitenancy by - changing `kibana.index` will not be supported starting in 8.0. See - https://ela.st/kbn-remove-legacy-multitenancy[8.0 Breaking Changes] for more - details. Reporting uses a weekly index in {es} to store the reporting job and - the report content. The index is automatically created if it does not already - exist. Configure this to a unique value, beginning with `.reporting-`, for - every {kib} instance that has a unique <> - setting. Defaults to `.reporting`. - -| [[xpack-reporting-roles-enabled]] `xpack.reporting.roles.enabled` - | deprecated:[7.14.0,This setting must be set to `false` in 8.0.] When `true`, grants users - access to the {report-features} by assigning reporting roles, specified by `xpack.reporting.roles.allow`. - Granting access to users this way is deprecated. Set to `false` and use - {kibana-ref}/kibana-privileges.html[{kib} privileges] instead. - Defaults to `true`. - -| `xpack.reporting.roles.allow` - | deprecated:[7.14.0,This setting will be removed in 8.0.] Specifies the roles, - in addition to superusers, that can generate reports, using the {ref}/security-api.html#security-role-apis[{es} role management APIs]. - Requires `xpack.reporting.roles.enabled` to be `true`. - Granting access to users this way is deprecated. Use - {kibana-ref}/kibana-privileges.html[{kib} privileges] instead. - Defaults to `[ "reporting_user" ]`. - -|=== +==== Security settings + +[[xpack-reporting-roles-enabled]] `xpack.reporting.roles.enabled`:: +deprecated:[7.14.0,This setting must be set to `false` in 8.0.] When `true`, grants users access to the {report-features} by assigning reporting roles, specified by `xpack.reporting.roles.allow`. Granting access to users this way is deprecated. Set to `false` and use {kibana-ref}/kibana-privileges.html[{kib} privileges] instead. Defaults to `true`. [NOTE] -============ -Each user has access to only their own reports. -============ +============================================================================ +In 7.x, the default value of `xpack.reporting.roles.enabled` is `true`. To migrate users to the +new method of securing access to *Reporting*, you must set `xpack.reporting.roles.enabled: false`. In the next major version of {kib}, `false` will be the only valid configuration. +============================================================================ + +`xpack.reporting.roles.allow`:: +deprecated:[7.14.0,This setting will be removed in 8.0.] Specifies the roles, in addition to superusers, that can generate reports, using the {ref}/security-api.html#security-role-apis[{es} role management APIs]. Requires `xpack.reporting.roles.enabled` to be `true`. Granting access to users this way is deprecated. Use {kibana-ref}/kibana-privileges.html[{kib} privileges] instead. Defaults to `[ "reporting_user" ]`. + +NOTE: Each user has access to only their own reports. diff --git a/docs/setup/configuring-reporting.asciidoc b/docs/setup/configuring-reporting.asciidoc new file mode 100644 index 0000000000000..af4fc14448ac5 --- /dev/null +++ b/docs/setup/configuring-reporting.asciidoc @@ -0,0 +1,235 @@ +[role="xpack"] +[[secure-reporting]] +== Configure reporting in {kib} + +++++ +Configure reporting +++++ + +To enable users to manually and automatically generate reports, install the reporting packages, grant users access to the {report-features}, and secure the reporting endpoints. + +[float] +[[install-reporting-packages]] +=== Install the reporting packages + +Make sure the {kib} server operating system has the appropriate packages installed for the distribution. + +If you are using CentOS/RHEL systems, install the following packages: + +* `ipa-gothic-fonts` +* `xorg-x11-fonts-100dpi` +* `xorg-x11-fonts-75dpi` +* `xorg-x11-utils` +* `xorg-x11-fonts-cyrillic` +* `xorg-x11-fonts-Type1` +* `xorg-x11-fonts-misc` +* `fontconfig` +* `freetype` + +If you are using Ubuntu/Debian systems, install the following packages: + +* `fonts-liberation` +* `libfontconfig1` + +If the system is missing dependencies, *Reporting* fails in a non-deterministic way. {kib} runs a self-test at server startup, and +if it encounters errors, logs them in the Console. The error message does not include +information about why Chromium failed to run. The most common error message is `Error: connect ECONNREFUSED`, which indicates +that {kib} could not connect to the Chromium process. + +To troubleshoot the problem, start the {kib} server with environment variables that tell Chromium to print verbose logs. For more information, refer to <>. + +[float] +[[grant-user-access]] +=== Grant users access to reporting + +When security is enabled, access to the {report-features} is controlled by roles and privileges. + +[[reporting-app-users]] +In 7.12.0 and earlier, you grant access to the {report-features} by assigning users the `reporting_user` role in {es}. + +In 7.14.0 and later, you configure *Reporting* to use <>. By using {kib} privileges, you can define custom roles that grant *Reporting* privileges as sub-features of {kib} applications. + +To grant users permission to generate reports and view their reports in *Reporting*, create and assign the reporting role. + +. Create the reporting role. + +.. Open the main menu, then click *Stack Management*. + +.. Click *Roles > Create role*. + +. Specify the role settings. + +.. Enter the *Role name*. For example, `custom_reporting_user`. + +.. Specify the *Indices* and *Privileges*. ++ +Access to data is an index-level privilege. For each index that contains the data you want to include in reports, add a line, then give each index `read` and `view_index_metadata` privileges. ++ +For more information, refer to {ref}/security-privileges.html[Security privileges]. ++ +[role="screenshot"] +image::user/security/images/reporting-privileges-example.png["Reporting privileges"] + +. Add the {kib} privileges. + +.. Click *Add Kibana privilege*. + +.. Select one or more *Spaces* that you want to grant reporting privileges to. + +.. Click *Customize*, then click *Analytics*. + +.. Next to each application you want to grant reporting privileges to, click *All*. ++ +[role="screenshot"] +image::user/security/images/reporting-custom-role.png["Reporting custom role"] + +.. Click *Add {kib} privilege*. + +. Click *Create role*. + +. Assign the reporting role to a user. + +.. Open the main menu, then click *Stack Management*. + +.. Click *Users*, then click the user you want to assign the reporting role to. + +.. From the *Roles* dropdown, select *custom_reporting_user*. + +.. Click *Update user*. + +[float] +[[reporting-roles-user-api]] +==== Grant access with the role API +You can also use the {ref}/security-api-put-role.html[role API] to grant access to the reporting features. Grant the reporting role to users in combination with other roles that grant read access to the data in {es}, and at least read access in the applications where users can generate reports. + +[source, sh] +--------------------------------------------------------------- +POST /_security/role/custom_reporting_user +{ + metadata: {}, + elasticsearch: { cluster: [], indices: [], run_as: [] }, + kibana: [ + { + base: [], + feature: { + dashboard: [ + 'generate_report', <1> + 'download_csv_report' <2> + ], + discover: ['generate_report'], <3> + canvas: ['generate_report'], <4> + visualize: ['generate_report'], <5> + }, + spaces: ['*'], + } + ] +} +--------------------------------------------------------------- +// CONSOLE + +<1> Grants access to generate PNG and PDF reports in *Dashboard*. +<2> Grants access to download CSV files from saved search panels in *Dashboard*. +<3> Grants access to generate CSV reports from saved searches in *Discover*. +<4> Grants access to generate PDF reports in *Canvas*. +<5> Grants access to generate PNG and PDF reports in *Visualize Library*. + +[float] +==== Grant access using an external provider + +If you are using an external identity provider, such as LDAP or Active Directory, you can assign roles to individual users or groups of users. Role mappings are configured in {ref}/mapping-roles.html[`config/role_mapping.yml`]. + +For example, assign the `kibana_admin` and `reporting_user` roles to the Bill Murray user: + +[source,yaml] +-------------------------------------------------------------------------------- +kibana_admin: + - "cn=Bill Murray,dc=example,dc=com" +reporting_user: + - "cn=Bill Murray,dc=example,dc=com" +-------------------------------------------------------------------------------- + +[float] +==== Grant access with a custom index + +If you are using a custom index, the `xpack.reporting.index` setting must begin with `.reporting-*`. The default {kib} system user has `all` privileges against the `.reporting-*` pattern of indices. + +If you use a different pattern for the `xpack.reporting.index` setting, you must create a custom `kibana_system` user with appropriate access to the index. + +NOTE: In the next major version of Kibana, granting access with a custom index is unsupported. + +. Create the reporting role. + +.. Open the main menu, then click *Stack Management*. + +.. Click *Roles > Create role*. + +. Specify the role settings. + +.. Enter the *Role name*. For example, `custom-reporting-user`. + +.. From the *Indices* dropdown, select the custom index. + +.. From the *Privileges* dropdown, select *all*. + +.. Click *Add Kibana privilege*. + +.. Select one or more *Spaces* that you want to grant reporting privileges to. + +.. Click *Customize*, then click *Analytics*. + +.. Next to each application you want to grant reporting privileges to, click *All*. + +.. Click *Add {kib} privilege*, then click *Create role*. + +. Assign the reporting role to a user. + +.. Open the main menu, then click *Stack Management*. + +.. Click *Users*, then click the user you want to assign the reporting role to. + +.. From the *Roles* dropdown, select *kibana_system* and *custom-reporting-user*. + +.. Click *Update user*. + +. Configure {kib} to use the new account. ++ +[source,js] +-------------------------------------------------------------------------------- +elasticsearch.username: 'custom_kibana_system' +-------------------------------------------------------------------------------- + +[float] +[[securing-reporting]] +=== Secure the reporting endpoints + +To automatically generate reports with {watcher}, you must configure {watcher} to trust the {kib} server certificate. + +. Enable {stack-security-features} on your {es} cluster. For more information, see {ref}/security-getting-started.html[Getting started with security]. + +. Configure TLS/SSL encryption for the {kib} server. For more information, see <>. + +. Specify the {kib} server CA certificate chain in `elasticsearch.yml`: ++ +-- +If you are using your own CA to sign the {kib} server certificate, then you need to specify the CA certificate chain in {es} to properly establish trust in TLS connections between {watcher} and {kib}. If your CA certificate chain is contained in a PKCS #12 trust store, specify it like so: + +[source,yaml] +-------------------------------------------------------------------------------- +xpack.http.ssl.truststore.path: "/path/to/your/truststore.p12" +xpack.http.ssl.truststore.type: "PKCS12" +xpack.http.ssl.truststore.password: "optional decryption password" +-------------------------------------------------------------------------------- + +Otherwise, if your CA certificate chain is in PEM format, specify it like so: + +[source,yaml] +-------------------------------------------------------------------------------- +xpack.http.ssl.certificate_authorities: ["/path/to/your/cacert1.pem", "/path/to/your/cacert2.pem"] +-------------------------------------------------------------------------------- + +For more information, see {ref}/notification-settings.html#ssl-notification-settings[the {watcher} HTTP TLS/SSL Settings]. +-- + +. Add one or more users who have access to the {report-features}. ++ +Once you've enabled SSL for {kib}, all requests to the reporting endpoints must include valid credentials. diff --git a/docs/setup/embedding.asciidoc b/docs/setup/embedding.asciidoc deleted file mode 100644 index 0c48aeefc9557..0000000000000 --- a/docs/setup/embedding.asciidoc +++ /dev/null @@ -1,63 +0,0 @@ -[[embedding]] -== Embed {kib} content in a web page - -Once you create a dashboard or a visualization, you might want to share it with your colleagues or friends. The easiest way to do this is to share a direct link to your dashboard or visualization. However, some users might not have access to your {kib}. - -With the {kib} embedding functionality, you can display the content you created in {kib} to an internal company website or a personal web page. - -. Open the main menu, then click *Dashboard* or *Visualize Library*. - -. Open the dashboard or visualization you want to embed. - -. To generate the HTML code snippet, open the *Share* menu, then click *Embed code > Copy iFrame code*. -+ -You can embed this snippet in your web page, and then add analysis, images, and links to give more context to the object you're sharing. -+ -image::images/embed-kibana.png[Generate an HTML snippet to embed {kib}, align=center] -+ -NOTE: Embedding of any other part of {kib} is also generally possible, but you might need to craft the proper HTML code manually. - -[float] -[[embedding-security]] -=== Configure security - -Embedding content through iframes requires careful consideration to minimize security risks. By default, modern web browsers enforce the -https://developer.mozilla.org/en-US/docs/Web/Security/Same-origin_policy[same-origin policy] to restrict the behavior of framed pages. When -{stack-security-features} are enabled on your cluster, you must relax this constraint for cookies as described in <> for {kib} to function -in an iframe. Refer to https://developer.mozilla.org/en-US/docs/Web/HTML/Element/iframe[iframe] and -https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite[SameSite cookies] for more information. - -[float] -==== Authentication -If you're embedding {kib} in a website that supports Single Sign-On with SAML, OpenID Connect, Kerberos, or PKI, it's highly advisable to configure {kib} as a part of the Single Sign-On setup. Operating in a single and properly configured security domain provides you with the most secure and seamless user experience. You can read more at <>. - -If you want users to access embedded {kib} by skipping the login step, and Single Sign-On isn't an option for you, consider configuring <>. It is already natively integrated into the workflow for embedding dashboards and visualizations. - -If you have multiple authentication providers enabled, and you want to automatically log in anonymous users when embedding anything other than dashboards and visualizations, then you will need to add the `auth_provider_hint=` query string parameter to the {kib} URL that you're embedding. - -For example, if you craft the iframe code to embed {kib}, it might look like this: - -```html - -``` - -To make this iframe leverage anonymous access automatically, you will need to modify a link to {kib} in the `src` iframe attribute to look like this: - -```html - -``` - -Note that the `auth_provider_hint` query string parameter goes *before* the hash URL fragment. - -[float] -[[embedding-cookies]] -==== Cookies - -Regardless of the authentication type that you're using for the embedded {kib}, you must make sure that the browsers can transmit session cookies to a {kib} server. The setting you need to be aware of is <>. To support modern browsers, you must set it to `None`: - -[source,yaml] --- -xpack.security.sameSiteCookies: "None" --- - -For more information about possible values and implications, go to <>. \ No newline at end of file diff --git a/docs/setup/settings.asciidoc b/docs/setup/settings.asciidoc index 696b2f042057d..d9a48835553cf 100644 --- a/docs/setup/settings.asciidoc +++ b/docs/setup/settings.asciidoc @@ -36,7 +36,7 @@ Set to `false` to disable Console. *Default: `true`* <>. | `csp.rules:` - | deprecated:[7.14.0,"In 8.0 and later, this setting will no longer be supported."] + | deprecated:[7.14.0,"In 8.0 and later, this setting will no longer be supported."] A https://w3c.github.io/webappsec-csp/[Content Security Policy] template that disables certain unnecessary and potentially insecure capabilities in the browser. It is strongly recommended that you keep the default CSP rules @@ -73,8 +73,8 @@ that ship with {kib}. [NOTE] ============ -The `frame-ancestors` directive can also be configured by using -<>. In that case, that takes precedence and any values in `csp.frame_ancestors` +The `frame-ancestors` directive can also be configured by using +<>. In that case, that takes precedence and any values in `csp.frame_ancestors` are ignored. ============ @@ -374,7 +374,8 @@ When `includeElasticMapsService` is turned off, only tile layer configured by << | Specifies the URL of a self hosted <> | `map.proxyElasticMapsServiceInMaps:` - | Set to `true` to proxy all <> Elastic Maps Service + | deprecated:[7.14.0,"In 8.0 and later, this setting will no longer be supported."] + Set to `true` to proxy all <> Elastic Maps Service requests through the {kib} server. *Default: `false`* | [[regionmap-settings]] `map.regionmap:` {ess-icon} @@ -777,10 +778,14 @@ out through *Advanced Settings*. *Default: `true`* | Set this value to true to allow Vega to use any URL to access external data sources and images. When false, Vega can only get data from {es}. *Default: `false`* -| `xpack.discoverEnhanced.actions.exploreDataInContextMenu.enabled` +a| +`xpack.discoverEnhanced.actions.` +`exploreDataInContextMenu.enabled` | Enables the *Explore underlying data* option that allows you to open *Discover* from a dashboard panel and view the panel data. *Default: `false`* - | `xpack.discoverEnhanced.actions.exploreDataInChart.enabled` +a| +`xpack.discoverEnhanced.actions.` +`exploreDataInChart.enabled` | Enables you to view the underlying documents in a data series from a dashboard panel. *Default: `false`* | `xpack.license_management.enabled` diff --git a/docs/setup/upgrade.asciidoc b/docs/setup/upgrade.asciidoc index 92cd6e9ead5a1..bd93517a7a82f 100644 --- a/docs/setup/upgrade.asciidoc +++ b/docs/setup/upgrade.asciidoc @@ -1,8 +1,54 @@ [[upgrade]] == Upgrade {kib} -Depending on the {kib} version you're upgrading from, the upgrade process to 7.0 -varies. +Depending on the {kib} version you're upgrading from, the upgrade process to {version} +varies. The following upgrades are supported: + +* Between minor versions +* From 5.6 to 6.8 +* From 6.8 to {prev-major-version} +* From {prev-major-version} to {version} +ifeval::[ "{version}" != "{minor-version}.0" ] +* From any version since {minor-version}.0 to {version} +endif::[] + +The following table shows the recommended upgrade paths to {version}. + +[cols="<1,3",options="header",] +|==== +|Upgrade from +|Recommended upgrade path to {version} + +ifeval::[ "{version}" != "{minor-version}.0" ] +|A previous {minor-version} version (e.g., {minor-version}.0) +|Upgrade to {version} +endif::[] + +|{prev-major-version} +|Upgrade to {version} + +|7.0–7.7 +a| +. Upgrade to {prev-major-version} +. Upgrade to {version} + +|6.8 +a| +. Upgrade to {prev-major-version} +. Upgrade to {version} + +|6.0–6.7 +a| + +. Upgrade to 6.8 +. Upgrade to {prev-major-version} +. Upgrade to {version} +|==== + +[WARNING] +==== +The upgrade path from 6.8 to 7.0 is *not* supported. +==== [float] [[upgrade-before-you-begin]] diff --git a/docs/user/alerting/alerting-getting-started.asciidoc b/docs/user/alerting/alerting-getting-started.asciidoc index b699c56ebd944..0b4104ec1f31b 100644 --- a/docs/user/alerting/alerting-getting-started.asciidoc +++ b/docs/user/alerting/alerting-getting-started.asciidoc @@ -24,13 +24,16 @@ 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. It consists of three main parts: +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 domain rules that are registered by Kibana apps. Refer to <> for more information. + +A rule consists of three main parts: * *Conditions*: what needs to be detected? * *Schedule*: when/how often should detection checks run? * *Actions*: what happens when a condition is detected? -For example, when monitoring a set of servers, a rule might: +For example, when monitoring a set of servers, a rule might: + * Check for average CPU usage > 0.9 on each server for the last two minutes (condition). * Check every minute (schedule). * Send a warning email message via SMTP with subject `CPU on {{server}} is high` (action). @@ -136,4 +139,4 @@ Functionally, {kib} alerting differs in that: At a higher level, {kib} 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}. --- \ No newline at end of file +-- diff --git a/docs/user/alerting/create-and-manage-rules.asciidoc b/docs/user/alerting/create-and-manage-rules.asciidoc index cc91ebcd99be2..2dd9a41205121 100644 --- a/docs/user/alerting/create-and-manage-rules.asciidoc +++ b/docs/user/alerting/create-and-manage-rules.asciidoc @@ -152,6 +152,17 @@ You can perform these operations in bulk by multi-selecting rules, and then clic [role="screenshot"] image:images/bulk-mute-disable.png[The Manage rules button lets you mute/unmute, enable/disable, and delete in bulk,width=75%] +[float] +=== Rule status + +A rule can have one of the following statuses: + +`active`:: The conditions for the rule have been met, and the associated actions should be invoked. +`ok`:: The conditions for the rule were previously met, but no longer. Changed to `recovered` in the 7.14 release. +`error`:: An error was encountered during rule execution. +`pending`:: The rule has not yet executed. The rule was either just created, or enabled after being disabled. +`unknown`:: A problem occurred when calculating the status. Most likely, something went wrong with the alerting code. + [float] [[importing-and-exporting-rules]] === Import and export rules diff --git a/docs/user/alerting/troubleshooting/testing-connectors.asciidoc b/docs/user/alerting/troubleshooting/testing-connectors.asciidoc index c99ac243f0ad3..f90a7ebc35614 100644 --- a/docs/user/alerting/troubleshooting/testing-connectors.asciidoc +++ b/docs/user/alerting/troubleshooting/testing-connectors.asciidoc @@ -19,7 +19,7 @@ image::user/alerting/images/teams-connector-test.png[Five clauses define the con Executing an Email action via https://github.com/pmuellr/kbn-action[kbn-action]. In this example, is using a cloud deployment of the stack: -[source] +[source, txt] -------------------------------------------------- $ npm -g install pmuellr/kbn-action @@ -45,7 +45,7 @@ $ kbn-action ls -------------------------------------------------- and then execute this: -[source] +[source, txt] -------------------------------------------------- $ kbn-action execute a692dc89-15b9-4a3c-9e47-9fb6872e49ce '{subject: "hallo", message: "hallo!", to:["test@yahoo.com"]}' { diff --git a/docs/user/canvas.asciidoc b/docs/user/canvas.asciidoc index 1face015f1f76..08462e0f0ed24 100644 --- a/docs/user/canvas.asciidoc +++ b/docs/user/canvas.asciidoc @@ -194,14 +194,24 @@ Organize and separate your ideas by adding more pages. [role="screenshot"] image::images/canvas-add-pages.gif[Add pages] +[float] +[[workpad-share-options]] +== Share your workpad + +To share workpads with a larger audience, click *Share* in the toolbar. For detailed information about the sharing options, refer to <>. + +[float] +[[export-single-workpad]] +== Export workpads + +Want to export multiple workpads? Go to the *Canvas* home page, select the workpads you want to export, then click *Export*. + -- include::{kib-repo-dir}/canvas/canvas-edit-workpads.asciidoc[] include::{kib-repo-dir}/canvas/canvas-present-workpad.asciidoc[] -include::{kib-repo-dir}/canvas/canvas-share-workpad.asciidoc[] - include::{kib-repo-dir}/canvas/canvas-tutorial.asciidoc[] include::{kib-repo-dir}/canvas/canvas-expression-lifecycle.asciidoc[] diff --git a/docs/user/dashboard/dashboard.asciidoc b/docs/user/dashboard/dashboard.asciidoc index 8226e9c6ed073..af67b3016454b 100644 --- a/docs/user/dashboard/dashboard.asciidoc +++ b/docs/user/dashboard/dashboard.asciidoc @@ -301,7 +301,7 @@ image:images/Dashboard_inspect.png[Inspect in dashboard] [[share-the-dashboard]] == Share dashboards -To share the dashboard with a larger audience, click *Share* in the toolbar. For detailed information, refer to <>. +To share the dashboard with a larger audience, click *Share* in the toolbar. For detailed information about the sharing options, refer to <>. [float] [[import-dashboards]] diff --git a/docs/user/dashboard/images/tsvb_index_pattern_selection_mode.png b/docs/user/dashboard/images/tsvb_index_pattern_selection_mode.png new file mode 100644 index 0000000000000..ef72f291850e4 Binary files /dev/null and b/docs/user/dashboard/images/tsvb_index_pattern_selection_mode.png differ diff --git a/docs/user/dashboard/tsvb.asciidoc b/docs/user/dashboard/tsvb.asciidoc index 93ee3627bd8a0..9320b062a8ba9 100644 --- a/docs/user/dashboard/tsvb.asciidoc +++ b/docs/user/dashboard/tsvb.asciidoc @@ -30,6 +30,29 @@ By default, *TSVB* drops the last bucket because the time filter intersects the .. In the *Panel filter* field, enter <> to view specific documents. +[float] +[[tsvb-index-pattern-mode]] +==== Index pattern mode +Create *TSVB* visualizations with {kib} index patterns. + +IMPORTANT: Creating *TSVB* visualizations with an {es} index string is deprecated and will be removed in a future release. +It is the default one for new visualizations but it can also be switched for the old implementations: + +. Click *Panel options*, then click the gear icon to open the *Index pattern selection mode* options. +. Select *Use only Kibana index patterns*. +. Reselect the index pattern from the dropdown, then select the *Time field*. + +image::images/tsvb_index_pattern_selection_mode.png[Change index pattern selection mode action] + +The index pattern mode unlocks many new features, such as: +* Runtime fields + +* URL drilldowns + +* Interactive filters for time series visualizations + +* Better performance + [float] [[configure-the-data-series]] ==== Configure the series @@ -177,4 +200,4 @@ To group with multiple fields, create runtime fields in the index pattern you ar [role="screenshot"] image::images/tsvb_group_by_multiple_fields.png[Group by multiple fields] -. Create a new TSVB visualization and group by this field. \ No newline at end of file +. Create a new TSVB visualization and group by this field. diff --git a/docs/user/discover.asciidoc b/docs/user/discover.asciidoc index 82a7dd300f028..f0029f8925b3c 100644 --- a/docs/user/discover.asciidoc +++ b/docs/user/discover.asciidoc @@ -272,6 +272,12 @@ your data appears in a map. [role="screenshot"] image:images/discover-maps.png[Map containing documents] +[float] +[[share-your-findings]] +=== Share your findings + +To share your findings with a larger audience, click *Share* in the toolbar. For detailed information about the sharing options, refer to <>. + [float] === What’s next? diff --git a/docs/user/index.asciidoc b/docs/user/index.asciidoc index 47d86004fdc66..29dd5e49a668b 100644 --- a/docs/user/index.asciidoc +++ b/docs/user/index.asciidoc @@ -8,13 +8,6 @@ include::{kib-repo-dir}/getting-started/quick-start-guide.asciidoc[] include::setup.asciidoc[] -include::monitoring/configuring-monitoring.asciidoc[leveloffset=+1] -include::monitoring/monitoring-metricbeat.asciidoc[leveloffset=+2] -include::monitoring/viewing-metrics.asciidoc[leveloffset=+2] -include::monitoring/monitoring-kibana.asciidoc[leveloffset=+2] - -include::security/securing-kibana.asciidoc[] - include::production-considerations/index.asciidoc[] include::discover.asciidoc[] @@ -25,6 +18,8 @@ include::canvas.asciidoc[] include::{kib-repo-dir}/maps/index.asciidoc[] +include::reporting/index.asciidoc[] + include::ml/index.asciidoc[] include::graph/index.asciidoc[] @@ -45,8 +40,6 @@ include::management.asciidoc[] include::{kib-repo-dir}/fleet/fleet.asciidoc[] -include::reporting/index.asciidoc[] - include::api.asciidoc[] include::plugins.asciidoc[] diff --git a/docs/user/monitoring/kibana-alerts.asciidoc b/docs/user/monitoring/kibana-alerts.asciidoc index ccd023f180c99..67e4520f5c70c 100644 --- a/docs/user/monitoring/kibana-alerts.asciidoc +++ b/docs/user/monitoring/kibana-alerts.asciidoc @@ -11,8 +11,8 @@ specific needs. [role="screenshot"] image::user/monitoring/images/monitoring-kibana-alerting-notification.png["{kib} alerting notifications in {stack-monitor-app}"] -When you open *{stack-monitor-app}*, the preconfigured rules are created -automatically. They are initially configured to detect and notify on various +When you open *{stack-monitor-app}*, you will be ask to create these rules +They are initially configured to detect and notify on various conditions across your monitored clusters. You can view notifications for: *Cluster health*, *Resource utilization*, and *Errors and exceptions* for {es} in real time. @@ -131,6 +131,14 @@ soon the expiration date is: The 60-day and 30-day thresholds are skipped for Trial licenses, which are only valid for 30 days. +[discrete] +== Alerts and rules +[discrete] +=== Create default rules +This option can be used to create default rules in this kibana spaces. This is +useful for scenarios when you didn't choose to create these default rules initially +or anytime later if the rules were accidentally deleted. + NOTE: Some action types are subscription features, while others are free. For a comparison of the Elastic subscription levels, see the alerting section of the {subscriptions}[Subscriptions page]. diff --git a/docs/user/production-considerations/index.asciidoc b/docs/user/production-considerations/index.asciidoc index c52aade575968..198e8324af3e6 100644 --- a/docs/user/production-considerations/index.asciidoc +++ b/docs/user/production-considerations/index.asciidoc @@ -1,5 +1,6 @@ include::production.asciidoc[] include::alerting-production-considerations.asciidoc[] +include::reporting-production-considerations.asciidoc[] include::task-manager-production-considerations.asciidoc[] include::task-manager-health-monitoring.asciidoc[] include::task-manager-troubleshooting.asciidoc[] diff --git a/docs/user/production-considerations/reporting-production-considerations.asciidoc b/docs/user/production-considerations/reporting-production-considerations.asciidoc new file mode 100644 index 0000000000000..32752cbe69ab8 --- /dev/null +++ b/docs/user/production-considerations/reporting-production-considerations.asciidoc @@ -0,0 +1,36 @@ +[role="xpack"] +[[reporting-production-considerations]] +== Reporting production considerations + +++++ +Reporting +++++ +:keywords: administrator, analyst, concept, setup, reporting +:description: Consider the production components that are used to generate reports. + +To generate reports, {kib} uses a custom build of the Chromium web browser, which runs on the {kib} server in headless mode to load {kib} and capture the rendered {kib} visualizations as images. Chromium is an open-source project not related to Elastic, but the Chromium binary for {kib} has been custom-built by Elastic to make sure it works with minimal setup. The operating system that the {kib} server uses can require additional dependencies for Chromium. + +[float] +[[reporting-chromium-sandbox]] +=== Chromium sandbox +For an additional layer of security, use the sandbox. The Chromium sandbox uses operating system-provided mechanisms to ensure that code execution cannot make persistent changes to the computer or access confidential information. The specific sandboxing techniques differ for each operating system. + +[float] +[[reporting-linux-sandbox]] +==== Linux sandbox +The Linux sandbox depends on user namespaces, which were introduced with the 3.8 Linux kernel. However, many +distributions don't have user namespaces enabled by default, or they require the CAP_SYS_ADMIN capability. The {report-features} +automatically disable the sandbox when it is running on Debian and CentOS, as additional steps are required to enable +unprivileged usernamespaces. In these situations, you'll see the following message in your {kib} startup logs: +`Chromium sandbox provides an additional layer of protection, but is not supported for your OS. +Automatically setting 'xpack.reporting.capture.browser.chromium.disableSandbox: true'.` + +Reporting automatically enables the Chromium sandbox at startup when a supported OS is detected. However, if your kernel is 3.8 or newer, it's +recommended to set `xpack.reporting.capture.browser.chromium.disableSandbox: false` in your `kibana.yml` to explicitly enable usernamespaces. + +[float] +[[reporting-docker-sandbox]] +==== Docker +When running {kib} in a Docker container, all container processes are run within a usernamespace with seccomp-bpf and +AppArmor profiles that prevent the Chromium sandbox from being used. In these situations, disabling the sandbox is recommended, +as the container implements similar security mechanisms. \ No newline at end of file diff --git a/docs/user/reporting/automating-report-generation.asciidoc b/docs/user/reporting/automating-report-generation.asciidoc index 6c86da8e214c1..3ddb4a3694994 100644 --- a/docs/user/reporting/automating-report-generation.asciidoc +++ b/docs/user/reporting/automating-report-generation.asciidoc @@ -1,69 +1,62 @@ [role="xpack"] [[automating-report-generation]] -== Automating report generation -Automatically generate PDF and CSV reports by submitting HTTP `POST` requests using {watcher} or a script. +== Automatically generate reports -include::report-intervals.asciidoc[] +To automatically generate PDF and CSV reports, generate a POST URL, then submit the HTTP `POST` request using {watcher} or a script. [float] +[[create-a-post-url]] === Create a POST URL Create the POST URL that triggers a report to generate PDF and CSV reports. To create the POST URL for PDF reports: -. Open the  dashboard, visualization, or **Canvas** workpad. +. Open the main menu, then click *Dashboard, *Visualize Library*, or *Canvas*. -. From the {kib} toolbar, click *Share*, then select *PDF Reports*. +. Open the dashboard, visualization, or **Canvas** workpad you want to view as a report. -. If you are using **Canvas**, click *Advanced options*. +. From the toolbar, click *Share > PDF Reports*, then choose an option: -. Click *Copy POST URL*. -+ -[role="screenshot"] -image::images/report-automate-pdf.png[Automatically generate *Dashboard* and *Visualize Library* reports] +* If you are using *Dashboard* or *Visulize Library*, click *Copy POST URL*. +* If you are using *Canvas*, click *Advanced options > Copy POST URL*. To create the POST URL for CSV reports: -. In *Discover*, open the saved search. +. Open the main menu, then click *Discover*. -. From the {kib} toolbar, click *Share*, then select *CSV Reports*. +. Open the saved search you want to share. -. Click *Copy POST URL*. -+ -[role="screenshot"] -image::images/report-automate-csv.png[Generate Discover reports] +. In the toolbar, click *Share > CSV Reports > Copy POST URL*. [float] +[[use-watcher]] === Use Watcher include::watch-example.asciidoc[] [float] +[[use-a-script]] === Use a script include::script-example.asciidoc[] [float] +[[reporting-response-codes]] === HTTP response codes include::response-codes.asciidoc[] [float] +[[deprecated-report-urls]] === Deprecated report URLs -The following POST URL paths are deprecated. If there are -any problems with using these paths after you upgrade {kib}, use -{kib} to regenerate the POST URL for a particular report. +If you experience issues with the deprecated report URLs after you upgrade {kib}, regenerate the POST URL for your reports. -* Dashboard reports: `/api/reporting/generate/dashboard/` -* Visualize reports: `/api/reporting/generate/visualization/` -* Saved Search reports: `/api/reporting/generate/search/` +* *Dashboard* reports: `/api/reporting/generate/dashboard/` +* *Visualize Library* reports: `/api/reporting/generate/visualization/` +* *Discover* saved search reports: `/api/reporting/generate/search/` -[IMPORTANT] -=================== -Previously there was a `&sync` parameter appended to generation URLs which would hold -the request open until the document was fully generated. This feature has been removed. -Existing use of the `&sync` parameter, in Watcher for example, will need to be updated. -=================== +IMPORTANT: +In earlier {kib} versions, you could use the `&sync` parameter to append to report URLs that held the request open until the document was fully generated. The `&sync` parameter is now unsupported. If you use the `&sync` parameter in Watcher, you must update the parameter. diff --git a/docs/user/reporting/chromium-sandbox.asciidoc b/docs/user/reporting/chromium-sandbox.asciidoc deleted file mode 100644 index dcb421261c067..0000000000000 --- a/docs/user/reporting/chromium-sandbox.asciidoc +++ /dev/null @@ -1,26 +0,0 @@ -[role="xpack"] -[[reporting-chromium-sandbox]] -=== Chromium sandbox - -When {report-features} uses the Chromium browser for generating PDF reports, -it's recommended to use the sandbox for an additional layer of security. The -Chromium sandbox uses operating system provided mechanisms to ensure that -code execution cannot make persistent changes to the computer or access -confidential information. The specific sandboxing techniques differ for each -operating system. - -==== Linux sandbox -The Linux sandbox depends on user namespaces, which were introduced with the 3.8 Linux kernel. However, many -distributions don't have user namespaces enabled by default, or they require the CAP_SYS_ADMIN capability. The {report-features} -will automatically disable the sandbox when it is running on Debian and CentOS as additional steps are required to enable -unprivileged usernamespaces. In these situations, you'll see the following message in your {kib} startup logs: -`Chromium sandbox provides an additional layer of protection, but is not supported for your OS. -Automatically setting 'xpack.reporting.capture.browser.chromium.disableSandbox: true'.` - -Reporting will automatically enable the Chromium sandbox at startup when a supported OS is detected. However, if your kernel is 3.8 or newer, it's -recommended to set `xpack.reporting.capture.browser.chromium.disableSandbox: false` in your `kibana.yml` to explicitly enable usernamespaces. - -==== Docker -When running {kib} in a Docker container, all container processes are run within a usernamespace with seccomp-bpf and -AppArmor profiles that prevent the Chromium sandbox from being used. In these situations, disabling the sandbox is recommended, -as the container implements similar security mechanisms. \ No newline at end of file diff --git a/docs/user/reporting/configuring-reporting.asciidoc b/docs/user/reporting/configuring-reporting.asciidoc deleted file mode 100644 index a8b76f36b9a84..0000000000000 --- a/docs/user/reporting/configuring-reporting.asciidoc +++ /dev/null @@ -1,78 +0,0 @@ -[role="xpack"] -[[configuring-reporting]] -== Reporting configuration - -You can configure settings in `kibana.yml` to control how the {report-features} -communicate with the {kib} server, manages background jobs, and captures -screenshots. See <> for the complete -list of settings. - -[float] -[[encryption-keys]] -=== Encryption keys for multiple {kib} instances - -By default, a new encryption key is generated for the {report-features} each -time you start {kib}. This means if a static encryption key is not persisted in -the {kib} configuration, any pending reports will fail when you restart {kib}. - -If you are load balancing across multiple {kib} instances, they need to have -the same reporting encryption key. Otherwise, report generation will fail if a -report is queued through one instance and another instance picks up the job -from the report queue. The other instance will not be able to decrypt the -reporting job metadata. - -To set a static encryption key for reporting, set the -`xpack.reporting.encryptionKey` property in the `kibana.yml` -configuration file. You can use any alphanumeric, at least 32 characters long text string as the encryption key. - -[source,yaml] --------------------------------------------------------------------------------- -xpack.reporting.encryptionKey: "something_secret" --------------------------------------------------------------------------------- - -[float] -[[report-indices]] -=== Report indices for multiple {kib} workspaces - -If you divide workspaces in an Elastic cluster using multiple {kib} instances -with a different `kibana.index` setting per instance, you must set a unique `xpack.reporting.index` -setting per `kibana.index`. Otherwise, report generation will periodically fail -if a report is queued through an instance with one `kibana.index` setting, and -an instance with a different `kibana.index` attempts to claim the job. - -Kibana instance A: -[source,yaml] --------------------------------------------------------------------------------- -kibana.index: ".kibana-a" -xpack.reporting.index: ".reporting-a" -xpack.reporting.encryptionKey: "something_secret" --------------------------------------------------------------------------------- - -Kibana instance B: -[source,yaml] --------------------------------------------------------------------------------- -kibana.index: ".kibana-b" -xpack.reporting.index: ".reporting-b" -xpack.reporting.encryptionKey: "something_secret" --------------------------------------------------------------------------------- - -NOTE: If security is enabled, the `xpack.reporting.index` setting should begin -with `.reporting-` in order for the `kibana_system` role to have the necessary -privileges over the index. - -[float] -[[using-reverse-proxies]] -=== Use reverse proxies - -If your {kib} instance requires a reverse proxy (NGINX, Apache, etc.) for -access, because of rewrite rules or special headers being added by the proxy, -then you need to configure the `xpack.reporting.kibanaServer` settings to make -the headless browser process connect to the proxy in <>. - -NOTE: A headless browser runs on the Kibana server to open a Kibana page for -capturing screenshots. Configuring the `xpack.reporting.kibanaServer` settings -to point to a proxy host requires that the Kibana server has network access to -the proxy. - -include::{kib-repo-dir}/user/security/reporting.asciidoc[] -include::network-policy.asciidoc[] diff --git a/docs/user/reporting/generating-reports.asciidoc b/docs/user/reporting/generating-reports.asciidoc deleted file mode 100644 index 6503838cb4414..0000000000000 --- a/docs/user/reporting/generating-reports.asciidoc +++ /dev/null @@ -1 +0,0 @@ -[role="xpack"] diff --git a/docs/user/reporting/gs-index.asciidoc b/docs/user/reporting/gs-index.asciidoc deleted file mode 100644 index 46c1fd38b7d69..0000000000000 --- a/docs/user/reporting/gs-index.asciidoc +++ /dev/null @@ -1,28 +0,0 @@ -[role="xpack"] -[[xpack-reporting]] -= Reporting from Kibana - -[partintro] --- -You can generate reports that contain {kib} dashboards, -visualizations, and saved searches. The reports are exported as -print-optimized PDF documents. - -NOTE: On Linux, the `libfontconfig` and `libfreetype6` packages and system -fonts are required to generate reports. If no system fonts are available, -labels are not rendered correctly in the reports. - -The following Reporting button appears in the {kib} toolbar: - -image:images/reporting.jpg["Reporting",link="reporting.jpg"] - -You can also <>. - -IMPORTANT: Reports are stored in the `.reporting-*` indices. Any user with -access to these indices has access to every report generated by all users. - -To use {report-features} in a production environment, -<>. --- - -include::getting-started.asciidoc[] diff --git a/docs/user/reporting/images/embed-code-public-url.png b/docs/user/reporting/images/embed-code-public-url.png new file mode 100644 index 0000000000000..4ecd6c47122d1 Binary files /dev/null and b/docs/user/reporting/images/embed-code-public-url.png differ diff --git a/docs/user/reporting/images/permalink-public-url.png b/docs/user/reporting/images/permalink-public-url.png new file mode 100644 index 0000000000000..93e7482a16c2b Binary files /dev/null and b/docs/user/reporting/images/permalink-public-url.png differ diff --git a/docs/user/reporting/index.asciidoc b/docs/user/reporting/index.asciidoc index 9e4271b3659bc..457be5b038c12 100644 --- a/docs/user/reporting/index.asciidoc +++ b/docs/user/reporting/index.asciidoc @@ -1,125 +1,166 @@ [role="xpack"] [[reporting-getting-started]] -= Reporting += Reporting and sharing [partintro] -- -You can generate a report that contains a {kib} dashboard, visualization, -saved search, or Canvas workpad. Depending on the object type, you can export the data as -a PDF, PNG, or CSV document, which you can keep for yourself, or share with others. +:keywords: analyst, concept, task, reporting +:description: {kib} provides you with several options to share *Discover* saved searches, dashboards, *Visualize Library* visualizations, and *Canvas* workpads with others, or on a website. -Reporting is available from the *Share* menu -in *Discover*, *Dashboard*, *Visualize Library*, and *Canvas*. +{kib} provides you with several options to share *Discover* saved searches, dashboards, *Visualize Library* visualizations, and *Canvas* workpads. -[role="screenshot"] -image::user/reporting/images/share-menu.png["Share"] +You access the options from the *Share* menu in the toolbar. The sharing options include the following: -[float] -== Setup +* *PDF Reports* — Generate and download a PDF file of a dashboard, visualization, or *Canvas* workpad. -The {report-features} are automatically enabled in {kib}. It runs a custom build of the Chromium web browser, which -runs on the server in headless mode to load {kib} and capture the rendered {kib} charts as images. +* *PNG Reports* — Generate and download a PNG file of a dashboard or visualization. -Chromium is an open-source project not related to Elastic, but the Chromium binary for {kib} has been custom-built by Elastic to ensure it -works with minimal setup. However, the {kib} server OS might still require additional dependencies for Chromium. See the -<> section for more information about the system dependencies -for different operating systems. +* *CSV Reports* — Generate and download a CSV file of a saved search. -[float] -[[reporting-required-privileges]] -== Roles and privileges +* *Permalinks* — Share a direct link to a *Discover* saved search, dashboard, or visualization. + +* *Download as JSON* — Generate and download a JSON file of a *Canvas* workpad. -When security is enabled, access to the {report-features} is controlled by security privileges. In versions 7.12 and earlier, you can grant access to the {report-features} -by assigning users the `reporting_user` role in {es}. In 7.14 and later, you can configure *Reporting* to use -<>. It is recommended that *Reporting* is configured to -use {kib} privileges by setting <> to `false`. By using {kib} privileges, you can define -custom roles that grant *Reporting* privileges as sub-features of {kib} applications in *Role Management*. +* beta[] *Share on a website* — Download and securely share *Canvas* workpads on any website. -Users must also have the {kib} privileges to access the saved objects and associated {es} indices included in the generated reports. -For an example, refer to <>. +* *Embed code* — Embed a fully interactive dashboard or visualization as an iframe on a web page. [float] [[manually-generate-reports]] -== Manually generate and download reports +== Create reports + +Create and download PDF, PNG, or CSV reports of saved searches, dashboards, visualizations, and workpads. + +[[reporting-layout-sizing]] +The layout and size of the report depends on what you are sharing. +For saved searches, dashboards, and visualizations, the layout depends on the size of the panels. +For workpads, the layout depends on the size of the worksheet dimensions. -Generate and download PDF, PNG, and CSV files of dashboards, visualizations, **Canvas** workpads, and saved searches. +To change the output size, change the size of the browser, which resizes the shareable container before the report generates. It might take some trial and error before you're satisfied. -. Open the dashboard, visualization, **Canvas** workpad, or saved search. +In the following dashboard, the shareable container is highlighted: -. From the {kib} toolbar, click **Share**, then select one of the following options: +[role="screenshot"] +image::user/reporting/images/shareable-container.png["Shareable Container"] + +. Open the main menu, then open the saved search, dashboard, visualization, or workpad you want to share. + +. From the toolbar, click *Share*, then select one of the following options: + +** **PDF Reports** — Generates a PDF file of the dashboard, visualization, or workpad. -** **PDF Reports** — Generates a PDF file of the dashboard, visualization, or **Canvas** workpad. ** **PNG Reports** — Generates a PNG file of the dashboard or visualization. + ** **CSV Reports** — Generates a CSV report of the saved search. -. Generate the report. +. If you are creating a PDF report of a dashboard, select *Optimize for printing* to create a printer-friendly PDF with multiple A4 portrait pages and two visualizations per page. + -When the report completes, a notification appears. +NOTE: When you create a dashboard report that includes a data table or saved search, the PDF includes only the visible data. -. Click **Download report**. +. If you are creating a PDF report of a workpad, select *Full page layout* to create a PDF without margins that surround the workpad. -NOTE: When you create a dashboard report that includes a data table or saved search, the PDF includes only the visible data. +. Generate the report. + +. When the report generates, a message appears. On the message, click **Download report**. + +. To view and manage reports, open the main menu, then click *Stack Management > Reporting*. [float] -[[reporting-layout-sizing]] -== Layout and sizing -The layout and size of the PDF or PNG image depends on the {kib} app -with which the Reporting plugin is integrated. For *Canvas*, the -worksheet dimensions determine the size for reports. In other apps, -the dimensions are taken on the fly by looking at -the size of the visualization elements or panels on the page. - -The size dimensions are part of the reporting job parameters. Therefore, to -make the report output larger or smaller, you can change the size of the browser. -This resizes the shareable container before generating the -report, so the desired dimensions are passed in the job parameters. - -In the following {kib} dashboard, the shareable container is highlighted. -The shareable container is captured when you click -*Generate* or *Copy POST URL* from the *Share* menu. It might take some trial and error -before you're satisfied with the layout and dimensions in the -PNG or PDF image. +[[share-a-direct-link]] +== Share a direct link -[role="screenshot"] -image::user/reporting/images/shareable-container.png["Shareable Container"] +Share a direct link to a saved search, dashboard, or visualization. To access the shared object, authentication is required. +. Open the main menu, then open the saved search, dashboard, or visualization you want to share. +. From the toolbar, click *Share*, then select *Permalinks*. -[float] -[[optimize-pdf]] -== Optimize PDF for print—dashboard only +. Specify how you want to generate the link: + +* To display only the current state of the object, select *Snapshot*. -To create a printer-friendly PDF with multiple A4 portrait pages and two visualizations per page, turn on *Optimize for printing*. +* To display up-to-date changes, select *Saved object*. +* To generate a shortened link, select *Short URL*. + +* To automatically log in anonymous users when you have multiple authentication providers enabled, select *Public URL*. ++ [role="screenshot"] -image::user/reporting/images/preserve-layout-switch.png["Share"] +image::images/permalink-public-url.png[Permalink share menu with Public URL option highlighted] ++ +NOTE: *Public URL* is available only when anonymous access is configured and your anonymous service account has privileges to access what you want to share. +. Click *Copy link*. [float] -[[full-page-pdf]] -== Full page PDF layout —Canvas only +[[download-as-json]] +== Create a JSON file -To create a PDF without margins surrounding the Canvas workpad, turn on *Full page layout* before generating the PDF. +Create a JSON file for a workpad. -[role="screenshot"] -image::user/reporting/images/canvas-full-page-layout.png["Full Page Layout"] +. Open the main menu, then click *Canvas*. + +. Open the workpad you want to share. + +. From the toolbar, click *Share*, then select *Download as JSON*. + +[float] +[[add-workpad-website]] +== Share workpads on a website + +beta[] *Canvas* allows you to create _shareables_, which are workpads that you download and securely share on a website. +To customize the behavior of the workpad on your website, you can choose to autoplay the pages or hide the workpad toolbar. + +. Open the main menu, then click *Canvas*. + +. Open the workpad you want to share. + +. Click *Share > Share on a website*. + +. Follow the instructions. + +. To customize the workpad behavior to autoplay the pages or hide the toolbar, use the inline parameters. ++ +To make sure that your data remains secure, the data in the JSON file is not connected to {kib}. *Canvas* does not display elements that manipulate the data on the workpad. ++ +NOTE: Shareable workpads encode the current state of the workpad in a JSON file. When you make changes to the workpad, the changes do not appear in the shareable workpad on your website. +. To change the settings, click the settings icon, then choose the settings you want to use. [float] -[[manage-report-history]] -== View and manage report history +[[embed-code]] +== Embed code + +Display your dashboard or visualization on an internal company website or personal web page with an iframe. Embedding other {kib} objects is generally supported, but you might need to manually craft the proper HTML code. + +Some users might not have access to the dashboard or visualization. For more information, refer to <> and <>. + +. Open the main menu, then open the dashboard or visualization you want to share. + +. Click *Share > Embed code*. + +. Specify how you want to generate the code: + +* To display only the current state, select *Snapshot*. + +* To display up-to-date changes, select *Saved object*. + +* Select the dashboard or visualization elements you want to include. + +* To generate a shortened link, select *Short URL*. + +* To automatically log in anonymous users when you have multiple authentication providers enabled, select *Public URL*. ++ +[role="screenshot"] +image::images/embed-code-public-url.png[Embed code share menu with Public URL option highlighted] ++ +NOTE: *Public URL* is available only when anonymous access is configured and your anonymous service account has privileges to access what you want to embed. -For a list of your reports, open the main menu, then click *Stack Management > Reporting*. -From this view, you can monitor the status of a report and -download reports that you previously generated. +. Click *Copy iFrame code*. -- include::automating-report-generation.asciidoc[] -include::configuring-reporting.asciidoc[] -include::chromium-sandbox.asciidoc[] include::reporting-troubleshooting.asciidoc[] -include::development/index.asciidoc[] diff --git a/docs/user/reporting/network-policy.asciidoc b/docs/user/reporting/network-policy.asciidoc deleted file mode 100644 index 782473a3b0f18..0000000000000 --- a/docs/user/reporting/network-policy.asciidoc +++ /dev/null @@ -1,71 +0,0 @@ -[role="xpack"] -[[reporting-network-policy]] -=== Restrict requests with a Reporting network policy - -When Reporting generates PDF reports, it uses the Chromium browser to fully load the {kib} page on the server. This -potentially involves sending requests to external hosts. For example, a request might go to an external image server to show a -field formatted as an image, or to show an image in a Markdown visualization. - -If the Chromium browser is asked to send a request that violates the network policy, Reporting stops processing the page -before the request goes out, and the report is marked as a failure. Additional information about the event is in -the Kibana server logs. - -[NOTE] -============ -{kib} installations are not designed to be publicly accessible over the Internet. The Reporting network policy and other capabilities -of the Elastic Stack security features do not change this condition. -============ - -==== Configure a Reporting network policy - -You configure the network policy by specifying the `xpack.reporting.capture.networkPolicy.rules` setting in `kibana.yml`. A policy is specified as -an array of objects that describe what to allow or deny based on a host or protocol. If a host or protocol -is not specified, the rule matches any host or protocol. - -The rule objects are evaluated sequentially from the beginning to the end of the array, and continue until there is a matching rule. -If no rules allow a request, the request is denied. - -[source,yaml] -------------------------------------------------------- -# Only allow requests to placeholder.com -xpack.reporting.capture.networkPolicy: - rules: [ { allow: true, host: "placeholder.com" } ] -------------------------------------------------------- - -[source,yaml] -------------------------------------------------------- -# Only allow requests to https://placeholder.com -xpack.reporting.capture.networkPolicy: - rules: [ { allow: true, host: "placeholder.com", protocol: "https:" } ] -------------------------------------------------------- - -A final `allow` rule with no host or protocol will allow all requests that are not explicitly denied. - -[source,yaml] -------------------------------------------------------- -# Denies requests from http://placeholder.com, but anything else is allowed. -xpack.reporting.capture.networkPolicy: - rules: [{ allow: false, host: "placeholder.com", protocol: "http:" }, { allow: true }]; -------------------------------------------------------- - -A network policy can be composed of multiple rules. - -[source,yaml] -------------------------------------------------------- -# Allow any request to http://placeholder.com but for any other host, https is required -xpack.reporting.capture.networkPolicy - rules: [ - { allow: true, host: "placeholder.com", protocol: "http:" }, - { allow: true, protocol: "https:" }, - ] -------------------------------------------------------- - -[NOTE] -============ -The `file:` protocol is always denied, even if no network policy is configured. -============ - -==== Disable a Reporting network policy - -You can use the `xpack.reporting.capture.networkPolicy.enabled: false` setting to disable the network policy feature. The default for -this configuration property is `true`, so it is not necessary to explicitly enable it. diff --git a/docs/user/reporting/report-intervals.asciidoc b/docs/user/reporting/report-intervals.asciidoc deleted file mode 100644 index d826ef70f4ee3..0000000000000 --- a/docs/user/reporting/report-intervals.asciidoc +++ /dev/null @@ -1,12 +0,0 @@ -[IMPORTANT] -=================== -The interval between report requests must be longer than the time it -takes to generate the reports--otherwise, the report queue can back up. To -avoid this, increase the time between report requests. - -By default, report generation times out if the report cannot be generated -within two minutes. If you are generating reports that contain many complex -visualizations or your machine is slow or under constant heavy load, it -might take longer than two minutes to generate a report. You can increase -the timeout by setting `xpack.reporting.queue.timeout` in `kibana.yml`. -=================== \ No newline at end of file diff --git a/docs/user/reporting/reporting-troubleshooting.asciidoc b/docs/user/reporting/reporting-troubleshooting.asciidoc index d6d6190c8504b..4b59cad38fd9a 100644 --- a/docs/user/reporting/reporting-troubleshooting.asciidoc +++ b/docs/user/reporting/reporting-troubleshooting.asciidoc @@ -8,7 +8,6 @@ Having trouble? Here are solutions to common problems you might encounter while using Reporting. * <> -* <> * <> * <> * <> @@ -26,40 +25,6 @@ When {kib} is running, navigate to the Report Listing page, and click *Run repor This will open up a diagnostic tool that checks various parts of the {kib} deployment and come up with any relevant recommendations. -[float] -[[reporting-troubleshooting-system-dependencies]] -=== System dependencies -Reporting launches a "headless" web browser called Chromium on the Kibana server. It is a custom build made by Elastic of an open source -project, and it is intended to have minimal dependencies on OS libraries. However, the Kibana server OS might still require additional -dependencies to run the Chromium executable. - -Make sure Kibana server OS has the appropriate packages installed for the distribution. - -If you are using CentOS/RHEL systems, install the following packages: - -* `ipa-gothic-fonts` -* `xorg-x11-fonts-100dpi` -* `xorg-x11-fonts-75dpi` -* `xorg-x11-utils` -* `xorg-x11-fonts-cyrillic` -* `xorg-x11-fonts-Type1` -* `xorg-x11-fonts-misc` -* `fontconfig` -* `freetype` - -If you are using Ubuntu/Debian systems, install the following packages: - -* `fonts-liberation` -* `libfontconfig1` - -If the system is missing dependencies, then Reporting will fail in a non-deterministic way. {kib} runs a self-test at server startup, and -if it encounters errors, logs them in the Console. Unfortunately, the error message does not include -information about why Chromium failed to run. The most common error message is `Error: connect ECONNREFUSED`, which indicates -that {kib} could not connect to the Chromium process. - -To troubleshoot the problem, start the {kib} server with environment variables that tell Chromium to print verbose logs. See the -<> for more information. - [float] [[reporting-troubleshooting-text-incorrect]] === Text rendered incorrectly in generated reports @@ -100,7 +65,7 @@ multiple instances to find the same job in these searches. Only the instance tha "processing" will actually execute the report job. The other instances that unsuccessfully tried to make the same update will log something similar to this: -[source] +[source,text] -------------------------------------------------------------------------------- StatusCodeError: [version_conflict_engine_exception] [...]: version conflict, required seqNo [6124], primary term [1]. current document has seqNo [6125] and primary term [1], with { ... } status: 409, diff --git a/docs/user/reporting/script-example.asciidoc b/docs/user/reporting/script-example.asciidoc index 382d658a18dc9..1d8e824798e75 100644 --- a/docs/user/reporting/script-example.asciidoc +++ b/docs/user/reporting/script-example.asciidoc @@ -1,12 +1,7 @@ -To automatically generate reports from a script, you'll make a request to the `POST` URL. -The response from this request will be JSON, and will contain a `path` property with a -URL to use to download the generated report. Use the `GET` method in the HTTP request to -download the report. +To automatically generate reports from a script, make a request to the `POST` URL. The request returns a JSON and contains a `path` property with a +URL that you use to download the report. Use the `GET` method in the HTTP request to download the report. -The request method must be `POST` and it must include a `kbn-xsrf` header for Kibana -to allow the request. - -The following example queues CSV report generation using the `POST` URL with cURL: +To queue CSV report generation using the `POST` URL with cURL: ["source","sh",subs="attributes"] --------------------------------------------------------- @@ -18,14 +13,12 @@ curl \ --------------------------------------------------------- // CONSOLE -<1> `POST` method is required. -<2> Provide user credentials for a user with permission to access Kibana and -{report-features}. -<3> The `kbn-xsrf` header is required for all `POST` requests to Kibana. For more information, see <>. -<4> The POST URL. You can copy and paste the URL for any report from the Kibana UI. +<1> The required `POST` method. +<2> The user credentials for a user with permission to access {kib} and {report-features}. +<3> The required `kbn-xsrf` header for all `POST` requests to {kib}. For more information, refer to <>. +<4> The POST URL. You can copy and paste the URL for any report. -Here is an example response for a successfully queued report: +An example response for a successfully queued report: [source,json] --------------------------------------------------------- @@ -44,6 +37,5 @@ Here is an example response for a successfully queued report: --------------------------------------------------------- // CONSOLE -<1> The relative path on the Kibana host for downloading the report. -<2> (Not included in the example) Internal representation of the reporting job, as -found in the `.reporting-*` index. +<1> The relative path on the {kib} host for downloading the report. +<2> (Not included in the example) Internal representation of the reporting job, as found in the `.reporting-*` index. diff --git a/docs/user/reporting/watch-example.asciidoc b/docs/user/reporting/watch-example.asciidoc index 253722fefecc0..909efa55ca9fb 100644 --- a/docs/user/reporting/watch-example.asciidoc +++ b/docs/user/reporting/watch-example.asciidoc @@ -1,10 +1,4 @@ -To automatically generate reports with a watch, you need to configure -{watcher} to trust the {kib} server’s certificate. For more information, -see {kibana-ref}/secure-reporting.html[Securing Reporting]. - -To configure a watch to email reports, you use the `reporting` attachment type -in an `email` action. For more information, see -{ref}/actions-email.html#configuring-email[Configuring email accounts]. +To configure a watch to email reports, use the `reporting` attachment type in an `email` action. For more information, refer to {ref}/actions-email.html#configuring-email[Configuring email accounts]. For example, the following watch generates a PDF report and emails the report every hour: @@ -44,28 +38,18 @@ PUT _watcher/watch/error_report --------------------------------------------------------- // CONSOLE -<1> You must configure at least one email account to enable Watcher to send email. -For more information, see -{ref}/actions-email.html#configuring-email[Configuring email accounts]. -<2> This is an example POST URL. You can copy and paste the URL for any -report from the Kibana UI. -<3> Optional, default is 40 -<4> Optional, default is 15s -<5> Provide user credentials for a user with permission to access Kibana and -the {report-features}. -//For more information, see <>. -//<>. +<1> Configure at least one email account to enable Watcher to send email. For more information, refer to {ref}/actions-email.html#configuring-email[Configuring email accounts]. +<2> An example POST URL. You can copy and paste the URL for any report. +<3> Optional, default is `40`. +<4> Optional, default is `15s`. +<5> User credentials for a user with permission to access {kib} and the {report-features}. For more information, refer to <>. [NOTE] ==== -Reporting is integrated with Watcher only as an email attachment type. +*Reporting* is integrated with Watcher only as an email attachment type. -The report Generation URL might contain date-math expressions -that cause the watch to fail with a `parse_exception`. -Remove curly braces `{` `}` from date-math expressions and -URL-encode characters to avoid this. -For example: `...(range:(%27@timestamp%27:(gte:now-15m%2Fd,lte:now%2Fd))))...` +The report generation URL might contain date-math expressions that cause the watch to fail with a `parse_exception`. To avoid a failed watch, remove curly braces `{` `}` from date-math expressions and URL-encode characters. +For example, `...(range:(%27@timestamp%27:(gte:now-15m%2Fd,lte:now%2Fd))))...` -For more information about configuring watches, see -{ref}/how-watcher-works.html[How Watcher works]. +For more information about configuring watches, refer to {ref}/how-watcher-works.html[How Watcher works]. ==== diff --git a/docs/user/security/authentication/index.asciidoc b/docs/user/security/authentication/index.asciidoc index 54142a6fe39e3..faa980fe833cb 100644 --- a/docs/user/security/authentication/index.asciidoc +++ b/docs/user/security/authentication/index.asciidoc @@ -4,6 +4,8 @@ ++++ Authentication ++++ +:keywords: administrator, concept, security, authentication +:description: A list of the supported authentication mechanisms in {kib}. {kib} supports the following authentication mechanisms: @@ -16,6 +18,8 @@ - <> - <> - <> +- <> + For an introduction to {kib}'s security features, including the login process, refer to <>. @@ -395,17 +399,7 @@ xpack.security.authc.providers: One of the most popular use cases for anonymous access is when you embed {kib} into other applications and don't want to force your users to log in to view it. If you configured {kib} to use anonymous access as the sole authentication mechanism, you don't need to do anything special while embedding {kib}. -If you have multiple authentication providers enabled, and you want to automatically log in anonymous users when embedding dashboards and visualizations: - -. Open the main menu, then click *Dashboard* or *Visualize Library*. -. Open then dashboard or visualization you want to embed. -. Open the *Share* menu, then click *Embed code > Public URL*. -+ -You can also use *Public URL* when you're generating permanent links to dashboards, visualizations, and saved searches. -+ -NOTE: *Public URL* is available only when anonymous access is configured and your anonymous service account has privileges to access what you want to embed or share. -+ -For more information, refer to <>. +For information on how to embed, refer to <>. [float] [[anonymous-access-session]] @@ -437,3 +431,42 @@ xpack.security.authc.http.schemes: [apikey, basic, something-custom] -------------------------------------------------------------------------------- With this configuration, you can send requests to {kib} with the `Authorization` header using `ApiKey`, `Basic` or `Something-Custom` HTTP schemes (case insensitive). Under the hood, {kib} relays this header to {es}, then {es} authenticates the request using the credentials in the header. + +[float] +[[embedded-content-authentication]] +==== Embedded content authentication + +Once you create a dashboard or a visualization, you might want to share it with your colleagues or friends. The easiest way to do this is to share a direct link to your dashboard or visualization. However, some users might not have access to your {kib}. With the {kib} embedding functionality, you can display the content you created in {kib} to an internal company website or a personal web page. + +[[embedding-cookies]] +To minimize security risk, embedding with iframes requires careful consideration. By default, modern web browsers enforce the +https://developer.mozilla.org/en-US/docs/Web/Security/Same-origin_policy[same-origin policy] to restrict the behavior of framed pages. When +{stack-security-features} are enabled on your cluster, make sure the browsers can transmit session cookies to a {kib} server. The setting you need to be aware of is <>. To support modern browsers, you must set it to `None`: + +[source,yaml] +-- +xpack.security.sameSiteCookies: "None" +-- + +For more information about possible values and implications, refer to <>. +For more information about iframe and cookies, refer to https://developer.mozilla.org/en-US/docs/Web/HTML/Element/iframe[iframe] and https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite[SameSite cookies]. + +If you're embedding {kib} in a website that supports Single Sign-On with SAML, OpenID Connect, Kerberos, or PKI, it's highly advisable to configure {kib} as a part of the Single Sign-On setup. Operating in a single and properly configured security domain provides you with the most secure and seamless user experience. + +If you have multiple authentication providers enabled, and you want to automatically log in anonymous users when embedding anything other than dashboards and visualizations, then you will need to add the `auth_provider_hint=` query string parameter to the {kib} URL that you're embedding. + +For example, if you craft the iframe code to embed {kib}, it might look like this: + +```html + +``` + +To make this iframe leverage anonymous access automatically, you will need to modify a link to {kib} in the `src` iframe attribute to look like this: + +```html + +``` + +NOTE: `auth_provider_hint` query string parameter goes *before* the hash URL fragment. + +For more information on how to embed, refer to <>. diff --git a/docs/user/security/reporting.asciidoc b/docs/user/security/reporting.asciidoc deleted file mode 100644 index ab25dddd04694..0000000000000 --- a/docs/user/security/reporting.asciidoc +++ /dev/null @@ -1,213 +0,0 @@ -[role="xpack"] -[[secure-reporting]] -=== Reporting and security - -Reporting operates by creating and updating documents in {es} in response to -user actions in {kib}. - -To use {report-features} with {security-features} enabled, you need to -<>. -If you are automatically generating reports with -{ref}/xpack-alerting.html[{watcher}], you also need to configure {watcher} -to trust the {kib} server's certificate. -//// -For more information, see -<>. -//// - -[[reporting-app-users]] -Access to reporting features is limited to privileged users. In older versions of Kibana, you could only grant -users the privilege by assigning them the `reporting_user` role in Elasticsearch. In 7.14 and above, you have -the option to create your own roles that grant access to reporting features using <>. - -It is recommended that you set `xpack.reporting.roles.enabled: false` in your kibana.yml to begin using Kibana -privileges. This will allow users to only see Reporting widgets in applications when they have privilege to use -them. - -[NOTE] -============================================================================ -The default value of `xpack.reporting.roles.enabled` is `true` for 7.x versions of Kibana. To migrate users to the -new method of securing access to *Reporting*, you must explicitly set `xpack.reporting.roles.enabled: false` in -`kibana.yml`. In the next major version of Kibana, having this set to `false` will be the only valid configuration. -============================================================================ - -This document discusses how to create a role that grants access to reporting features using the new method of -Kibana application privileges. - -[float] -[[reporting-roles-management-ui]] -=== Create the role in the `native` realm - -To create roles, use the *Roles* UI or <>. This example shows how to -create a role that grants reporting feature privileges in {kib} applications. - -. Open the main menu, then click *Stack Management > Roles*. - -. Click *Create role*, then give the role a name, for example, `custom_reporting_user`. - -. Specify the indices and privileges. -+ -Access to data is an index-level privilege, so in *Create role*, -add a line for each index that contains the data for the report and give each -index `read` and `view_index_metadata` privileges. -For more information, see {ref}/security-privileges.html[Security privileges]. -+ -[role="screenshot"] -image::user/security/images/reporting-privileges-example.png["Reporting privileges"] - -. Add space privileges for the {kib} applications that allow access to the reporting options. -+ -To allow users to create CSV reports in *Discover*, or PDF reports in *Canvas*, -*Visualize Library*, and *Dashboard*, click *Add Kibana privilege* for each application, -then select the privileges to generate -reports. For example, select *All* privileges for all features, or *Customize* to grant -the privilege to generate reports for only specific applications. -+ -[role="screenshot"] -image::user/security/images/reporting-custom-role.png["Reporting custom role"] -+ -[NOTE] -============================================================================ -Granting users access to reporting features in any application also grants them access to manage their reports in *Stack Management > Reporting*. -============================================================================ -+ -. Save your new role. - -. Open the main menu, then click *Stack Management > Users*, add a new user, and assign the user -your new `custom_reporting_user` role. - -[float] -[[reporting-roles-user-api]] -==== With the user API -This example uses the {ref}/security-api-put-role.html[role API] to create a role that -grants the privilege to generate reports in *Canvas*, *Discover*, *Visualize Library*, and *Dashboard*. -This role is meant to be granted to users in combination with other roles that grant read access -to the data in {es}, and at least read access in the applications -where they'll generate reports. - -[source, sh] ---------------------------------------------------------------- -POST /_security/role/custom_reporting_user -{ - metadata: {}, - elasticsearch: { cluster: [], indices: [], run_as: [] }, - kibana: [ - { - base: [], - feature: { - dashboard: [ - 'generate_report', <1> - 'download_csv_report' <2> - ], - discover: ['generate_report'], <3> - canvas: ['generate_report'], <4> - visualize: ['generate_report'], <5> - }, - spaces: ['*'], - } - ] -} ---------------------------------------------------------------- -// CONSOLE - -<1> Grants access to generate PNG and PDF reports in *Dashboard*. -<2> Grants access to download CSV files from saved search panels in *Dashboard*. -<3> Grants access to generate CSV reports from saved searches in *Discover*. -<4> Grants access to generate PDF reports in *Canvas*. -<5> Grants access to generate PNG and PDF reports in *Visualize Library*. - -[float] -=== When using an external provider - -If you are using an external identity provider, such as -LDAP or Active Directory, you can either assign -roles on a per user basis, or assign roles to groups of users. By default, role -mappings are configured in -{ref}/mapping-roles.html[`config/role_mapping.yml`]. -For example, the following snippet assigns the user named Bill Murray the -`kibana_admin` and `reporting_user` roles: - -[source,yaml] --------------------------------------------------------------------------------- -kibana_admin: - - "cn=Bill Murray,dc=example,dc=com" -reporting_user: - - "cn=Bill Murray,dc=example,dc=com" --------------------------------------------------------------------------------- - -[float] -=== With a custom index - -If you are using a custom index, -the `xpack.reporting.index` setting should begin -with `.reporting-*`. The default {kib} system user has -`all` privileges against the `.reporting-*` pattern of indices. - -[source,js] -xpack.reporting.index: '.reporting-custom-index' - -If you use a different pattern for the `xpack.reporting.index` setting, -you must create a custom `kibana_system` user with appropriate access to the index, similar -to the following: - -. Open the main menu, then click *Stack Management > Roles*. -. Click *Create role*, then name the role `custom-reporting-user`. -. Specify the custom index and assign it the `all` index privilege. -. Open the main menu, then click *Stack Management > Users* and create a new user with -the `kibana_system` role and the `custom-reporting-user` role. -. Configure {kib} to use the new account: -[source,js] -elasticsearch.username: 'custom_kibana_system' - -[NOTE] -============================================================================ -Setting a custom index for *Reporting* is not supported in the next major version of Kibana. -============================================================================ - -[role="xpack"] -[[securing-reporting]] -=== Secure the reporting endpoints - -In a production environment, you should restrict access to -the reporting endpoints to authorized users. This requires that you: - -. Enable {stack-security-features} on your {es} cluster. For more information, -see {ref}/security-getting-started.html[Getting started with security]. -. Configure TLS/SSL encryption for the {kib} server. For more information, see -<>. -. Specify the {kib} server's CA certificate chain in `elasticsearch.yml`: -+ --- -If you are using your own CA to sign the {kib} server certificate, then you need -to specify the CA certificate chain in {es} to properly establish trust in TLS -connections between {watcher} and {kib}. If your CA certificate chain is -contained in a PKCS #12 trust store, specify it like so: - -[source,yaml] --------------------------------------------------------------------------------- -xpack.http.ssl.truststore.path: "/path/to/your/truststore.p12" -xpack.http.ssl.truststore.type: "PKCS12" -xpack.http.ssl.truststore.password: "optional decryption password" --------------------------------------------------------------------------------- - -Otherwise, if your CA certificate chain is in PEM format, specify it like so: - -[source,yaml] --------------------------------------------------------------------------------- -xpack.http.ssl.certificate_authorities: ["/path/to/your/cacert1.pem", "/path/to/your/cacert2.pem"] --------------------------------------------------------------------------------- - -For more information, see {ref}/notification-settings.html#ssl-notification-settings[the {watcher} HTTP TLS/SSL Settings]. --- - -. Add one or more users who have the permissions -necessary to use {kib} and {report-features}. For more information, see -<>. - -Once you've enabled SSL for {kib}, all requests to the reporting endpoints -must include valid credentials. For example, see the following page which -includes a watch that submits requests as the built-in `elastic` user: -<>. - -For more information about configuring watches, see -{ref}/how-watcher-works.html[How {watcher} works]. diff --git a/docs/user/setup.asciidoc b/docs/user/setup.asciidoc index bea13c1ef49b2..7da0a969b53e8 100644 --- a/docs/user/setup.asciidoc +++ b/docs/user/setup.asciidoc @@ -60,4 +60,11 @@ include::{kib-repo-dir}/setup/connect-to-elasticsearch.asciidoc[] include::{kib-repo-dir}/setup/upgrade.asciidoc[] -include::{kib-repo-dir}/setup/embedding.asciidoc[] +include::security/securing-kibana.asciidoc[] + +include::{kib-repo-dir}/setup/configuring-reporting.asciidoc[] + +include::monitoring/configuring-monitoring.asciidoc[leveloffset=+1] +include::monitoring/monitoring-metricbeat.asciidoc[leveloffset=+2] +include::monitoring/viewing-metrics.asciidoc[leveloffset=+2] +include::monitoring/monitoring-kibana.asciidoc[leveloffset=+2] diff --git a/jest.config.integration.js b/jest.config.integration.js index b6ecb4569b643..8ff142714eebf 100644 --- a/jest.config.integration.js +++ b/jest.config.integration.js @@ -16,13 +16,12 @@ module.exports = { testPathIgnorePatterns: preset.testPathIgnorePatterns.filter( (pattern) => !pattern.includes('integration_tests') ), - setupFilesAfterEnv: ['/packages/kbn-test/target/jest/setup/after_env.integration.js'], + setupFilesAfterEnv: [ + '/node_modules/@kbn/test/target_node/jest/setup/after_env.integration.js', + ], reporters: [ 'default', - [ - '/packages/kbn-test/target/jest/junit_reporter', - { reportName: 'Jest Integration Tests' }, - ], + ['@kbn/test/target_node/jest/junit_reporter', { reportName: 'Jest Integration Tests' }], ], coverageReporters: !!process.env.CI ? [['json', { file: 'jest-integration.json' }]] diff --git a/package.json b/package.json index 2e22a4e0ccf77..1cc379fb807d0 100644 --- a/package.json +++ b/package.json @@ -99,11 +99,11 @@ "dependencies": { "@elastic/apm-rum": "^5.8.0", "@elastic/apm-rum-react": "^1.2.11", - "@elastic/charts": "30.1.0", + "@elastic/charts": "31.0.0", "@elastic/datemath": "link:bazel-bin/packages/elastic-datemath", "@elastic/elasticsearch": "npm:@elastic/elasticsearch-canary@^8.0.0-canary.13", "@elastic/ems-client": "7.14.0", - "@elastic/eui": "34.5.1", + "@elastic/eui": "34.5.2", "@elastic/filesaver": "1.1.2", "@elastic/good": "^9.0.1-kibana3", "@elastic/maki": "6.3.0", @@ -447,7 +447,7 @@ "@babel/traverse": "^7.12.12", "@babel/types": "^7.12.12", "@bazel/ibazel": "^0.15.10", - "@bazel/typescript": "^3.5.1", + "@bazel/typescript": "^3.6.0", "@cypress/snapshot": "^2.1.7", "@cypress/webpack-preprocessor": "^5.6.0", "@elastic/eslint-config-kibana": "link:bazel-bin/packages/elastic-eslint-config-kibana", @@ -462,7 +462,7 @@ "@kbn/dev-utils": "link:bazel-bin/packages/kbn-dev-utils", "@kbn/docs-utils": "link:bazel-bin/packages/kbn-docs-utils", "@kbn/es": "link:bazel-bin/packages/kbn-es", - "@kbn/es-archiver": "link:packages/kbn-es-archiver", + "@kbn/es-archiver": "link:bazel-bin/packages/kbn-es-archiver", "@kbn/eslint-import-resolver-kibana": "link:bazel-bin/packages/kbn-eslint-import-resolver-kibana", "@kbn/eslint-plugin-eslint": "link:bazel-bin/packages/kbn-eslint-plugin-eslint", "@kbn/expect": "link:bazel-bin/packages/kbn-expect", @@ -473,8 +473,8 @@ "@kbn/spec-to-console": "link:bazel-bin/packages/kbn-spec-to-console", "@kbn/storybook": "link:bazel-bin/packages/kbn-storybook", "@kbn/telemetry-tools": "link:bazel-bin/packages/kbn-telemetry-tools", - "@kbn/test": "link:packages/kbn-test", - "@kbn/test-subj-selector": "link:packages/kbn-test-subj-selector", + "@kbn/test": "link:bazel-bin/packages/kbn-test", + "@kbn/test-subj-selector": "link:bazel-bin/packages/kbn-test-subj-selector", "@loaders.gl/polyfills": "^2.3.5", "@microsoft/api-documenter": "7.7.2", "@microsoft/api-extractor": "7.7.0", diff --git a/packages/BUILD.bazel b/packages/BUILD.bazel index 225a41a5fd8b6..de7a27fd51276 100644 --- a/packages/BUILD.bazel +++ b/packages/BUILD.bazel @@ -20,6 +20,7 @@ filegroup( "//packages/kbn-dev-utils:build", "//packages/kbn-docs-utils:build", "//packages/kbn-es:build", + "//packages/kbn-es-archiver:build", "//packages/kbn-eslint-import-resolver-kibana:build", "//packages/kbn-eslint-plugin-eslint:build", "//packages/kbn-expect:build", @@ -52,6 +53,8 @@ filegroup( "//packages/kbn-std:build", "//packages/kbn-storybook:build", "//packages/kbn-telemetry-tools:build", + "//packages/kbn-test:build", + "//packages/kbn-test-subj-selector:build", "//packages/kbn-tinymath:build", "//packages/kbn-ui-framework:build", "//packages/kbn-ui-shared-deps:build", diff --git a/packages/kbn-es-archiver/BUILD.bazel b/packages/kbn-es-archiver/BUILD.bazel new file mode 100644 index 0000000000000..9b3db311afa24 --- /dev/null +++ b/packages/kbn-es-archiver/BUILD.bazel @@ -0,0 +1,100 @@ +load("@npm//@bazel/typescript:index.bzl", "ts_config", "ts_project") +load("@build_bazel_rules_nodejs//:index.bzl", "js_library", "pkg_npm") + +PKG_BASE_NAME = "kbn-es-archiver" +PKG_REQUIRE_NAME = "@kbn/es-archiver" + +SOURCE_FILES = glob( + [ + "src/**/*.ts", + ], + exclude = [ + "**/*.test.*", + "**/__fixtures__", + "**/__mocks__", + "**/__snapshots__" + ], +) + +SRCS = SOURCE_FILES + +filegroup( + name = "srcs", + srcs = SRCS, +) + +NPM_MODULE_EXTRA_FILES = [ + "package.json", +] + +SRC_DEPS = [ + "//packages/kbn-dev-utils", + "//packages/kbn-test", + "//packages/kbn-utils", + "@npm//@elastic/elasticsearch", + "@npm//aggregate-error", + "@npm//bluebird", + "@npm//chance", + "@npm//globby", + "@npm//json-stable-stringify", + "@npm//lodash", + "@npm//sinon", + "@npm//zlib", +] + +TYPES_DEPS = [ + "@npm//@types/bluebird", + "@npm//@types/chance", + "@npm//@types/jest", + "@npm//@types/json-stable-stringify", + "@npm//@types/lodash", + "@npm//@types/node", + "@npm//@types/sinon", +] + +DEPS = SRC_DEPS + TYPES_DEPS + +ts_config( + name = "tsconfig", + src = "tsconfig.json", + deps = [ + "//:tsconfig.base.json", + ], +) + +ts_project( + name = "tsc", + args = ['--pretty'], + srcs = SRCS, + deps = DEPS, + declaration = True, + declaration_map = True, + incremental = True, + out_dir = "target", + source_map = True, + root_dir = "src", + tsconfig = ":tsconfig", +) + +js_library( + name = PKG_BASE_NAME, + srcs = NPM_MODULE_EXTRA_FILES, + deps = DEPS + [":tsc"], + package_name = PKG_REQUIRE_NAME, + visibility = ["//visibility:public"], +) + +pkg_npm( + name = "npm_module", + deps = [ + ":%s" % PKG_BASE_NAME, + ] +) + +filegroup( + name = "build", + srcs = [ + ":npm_module", + ], + visibility = ["//visibility:public"], +) diff --git a/packages/kbn-es-archiver/package.json b/packages/kbn-es-archiver/package.json index c86d94c70d739..e8eb7b5f8f1c9 100644 --- a/packages/kbn-es-archiver/package.json +++ b/packages/kbn-es-archiver/package.json @@ -7,12 +7,5 @@ "types": "target/index.d.ts", "kibana": { "devOnly": true - }, - "scripts": { - "kbn:bootstrap": "rm -rf target && ../../node_modules/.bin/tsc", - "kbn:watch": "rm -rf target && ../../node_modules/.bin/tsc --watch" - }, - "dependencies": { - "@kbn/test": "link:../kbn-test" } -} \ No newline at end of file +} diff --git a/packages/kbn-es-archiver/tsconfig.json b/packages/kbn-es-archiver/tsconfig.json index 0950cd39d0bee..1bc93908a993e 100644 --- a/packages/kbn-es-archiver/tsconfig.json +++ b/packages/kbn-es-archiver/tsconfig.json @@ -1,7 +1,7 @@ { "extends": "../../tsconfig.base.json", "compilerOptions": { - "incremental": false, + "incremental": true, "outDir": "./target", "target": "ES2019", "declaration": true, diff --git a/packages/kbn-optimizer/limits.yml b/packages/kbn-optimizer/limits.yml index c6960621359c7..6627b644daec7 100644 --- a/packages/kbn-optimizer/limits.yml +++ b/packages/kbn-optimizer/limits.yml @@ -99,7 +99,7 @@ pageLoadAssetSize: watcher: 43598 runtimeFields: 41752 stackAlerts: 29684 - presentationUtil: 49767 + presentationUtil: 94301 spacesOss: 18817 indexPatternFieldEditor: 90489 osquery: 107090 @@ -110,4 +110,5 @@ pageLoadAssetSize: timelines: 230410 screenshotMode: 17856 visTypePie: 35583 + expressionRevealImage: 25675 cases: 144442 diff --git a/packages/kbn-storybook/ignore_not_found_export_plugin.ts b/packages/kbn-storybook/ignore_not_found_export_plugin.ts new file mode 100644 index 0000000000000..18769416f43c1 --- /dev/null +++ b/packages/kbn-storybook/ignore_not_found_export_plugin.ts @@ -0,0 +1,36 @@ +/* + * 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. + */ + +// derived from https://github.com/TypeStrong/ts-loader/issues/653#issuecomment-390889335 +// +// This plugin suppresses the irritating TS-related warnings in Storybook HMR. + +import { Compiler, Stats } from 'webpack'; +// @ts-expect-error +import ModuleDependencyWarning from 'webpack/lib/ModuleDependencyWarning'; + +export class IgnoreNotFoundExportPlugin { + apply(compiler: Compiler) { + const messageRegExp = /export '.*'( \(reexported as '.*'\))? was not found in/; + + function doneHook(stats: Stats) { + stats.compilation.warnings = stats.compilation.warnings.filter(function (warn) { + if (warn instanceof ModuleDependencyWarning && messageRegExp.test(warn.message)) { + return false; + } + return true; + }); + } + + if (compiler.hooks) { + compiler.hooks.done.tap('IgnoreNotFoundExportPlugin', doneHook); + } else { + compiler.plugin('done', doneHook); + } + } +} diff --git a/packages/kbn-storybook/webpack.config.ts b/packages/kbn-storybook/webpack.config.ts index 41d3ee1f7ee5c..97fbf40468429 100644 --- a/packages/kbn-storybook/webpack.config.ts +++ b/packages/kbn-storybook/webpack.config.ts @@ -12,6 +12,7 @@ import { resolve } from 'path'; import { Configuration, Stats } from 'webpack'; import webpackMerge from 'webpack-merge'; import { REPO_ROOT } from './lib/constants'; +import { IgnoreNotFoundExportPlugin } from './ignore_not_found_export_plugin'; const stats = { ...Stats.presetToOptions('minimal'), @@ -19,7 +20,6 @@ const stats = { errorDetails: true, errors: true, moduleTrace: true, - warningsFilter: /(export .* was not found in)|(entrypoint size limit)/, }; // Extend the Storybook Webpack config with some customizations @@ -70,6 +70,7 @@ export default function ({ config: storybookConfig }: { config: Configuration }) }, ], }, + plugins: [new IgnoreNotFoundExportPlugin()], resolve: { extensions: ['.js', '.ts', '.tsx', '.json'], mainFields: ['browser', 'main'], diff --git a/packages/kbn-test-subj-selector/BUILD.bazel b/packages/kbn-test-subj-selector/BUILD.bazel new file mode 100644 index 0000000000000..77751dc3e228a --- /dev/null +++ b/packages/kbn-test-subj-selector/BUILD.bazel @@ -0,0 +1,48 @@ +load("@build_bazel_rules_nodejs//:index.bzl", "js_library", "pkg_npm") + +PKG_BASE_NAME = "kbn-test-subj-selector" +PKG_REQUIRE_NAME = "@kbn/test-subj-selector" + +SOURCE_FILES = glob([ + "index.d.ts", + "index.js" +]) + +SRCS = SOURCE_FILES + +filegroup( + name = "srcs", + srcs = SRCS, +) + +NPM_MODULE_EXTRA_FILES = [ + "package.json", + "README.md", +] + +DEPS = [] + +js_library( + name = PKG_BASE_NAME, + srcs = NPM_MODULE_EXTRA_FILES + [ + ":srcs", + ], + deps = DEPS, + package_name = PKG_REQUIRE_NAME, + visibility = ["//visibility:public"], +) + +pkg_npm( + name = "npm_module", + deps = [ + ":%s" % PKG_BASE_NAME, + ] +) + +filegroup( + name = "build", + srcs = [ + ":npm_module", + ], + visibility = ["//visibility:public"], +) diff --git a/packages/kbn-test/BUILD.bazel b/packages/kbn-test/BUILD.bazel new file mode 100644 index 0000000000000..28c42a4c47684 --- /dev/null +++ b/packages/kbn-test/BUILD.bazel @@ -0,0 +1,153 @@ +load("@npm//@bazel/typescript:index.bzl", "ts_config", "ts_project") +load("@npm//@babel/cli:index.bzl", "babel") +load("@build_bazel_rules_nodejs//:index.bzl", "js_library", "pkg_npm") + +PKG_BASE_NAME = "kbn-test" +PKG_REQUIRE_NAME = "@kbn/test" + +SOURCE_FILES = glob( + [ + "src/**/*" + ], + exclude = [ + "**/*.test.*", + "**/*.snap", + "**/__fixture__/**", + "**/__fixtures__/**", + "**/__snapshots__/**", + ] +) + +SRCS = SOURCE_FILES + +filegroup( + name = "srcs", + srcs = SRCS, +) + +NPM_MODULE_EXTRA_FILES = [ + "jest/package.json", + "jest-preset.js", + "jest.config.js", + "README.md", + "package.json", +] + +SRC_DEPS = [ + "//packages/kbn-dev-utils", + "//packages/kbn-i18n", + "//packages/kbn-std", + "//packages/kbn-utils", + "@npm//@elastic/elasticsearch", + "@npm//axios", + "@npm//@babel/traverse", + "@npm//chance", + "@npm//del", + "@npm//enzyme", + "@npm//execa", + "@npm//exit-hook", + "@npm//form-data", + "@npm//globby", + "@npm//history", + "@npm//jest", + "@npm//jest-cli", + "@npm//jest-snapshot", + "@npm//@jest/reporters", + "@npm//joi", + "@npm//mustache", + "@npm//parse-link-header", + "@npm//prettier", + "@npm//react-dom", + "@npm//react-redux", + "@npm//react-router-dom", + "@npm//redux", + "@npm//rxjs", + "@npm//strip-ansi", + "@npm//xmlbuilder", + "@npm//xml2js", +] + +TYPES_DEPS = [ + "@npm//@types/chance", + "@npm//@types/enzyme", + "@npm//@types/history", + "@npm//@types/jest", + "@npm//@types/joi", + "@npm//@types/lodash", + "@npm//@types/mustache", + "@npm//@types/node", + "@npm//@types/parse-link-header", + "@npm//@types/prettier", + "@npm//@types/react-dom", + "@npm//@types/react-redux", + "@npm//@types/react-router-dom", + "@npm//@types/xml2js", +] + +DEPS = SRC_DEPS + TYPES_DEPS + +babel( + name = "target_node", + data = DEPS + [ + ":srcs", + "babel.config.js", + ], + output_dir = True, + # the following arg paths includes $(execpath) as babel runs on the sandbox root + args = [ + "./%s/src" % package_name(), + "--config-file", + "./%s/babel.config.js" % package_name(), + "--out-dir", + "$(@D)", + "--extensions", + ".ts,.js,.tsx", + "--quiet" + ], +) + +ts_config( + name = "tsconfig", + src = "tsconfig.json", + deps = [ + "//:tsconfig.base.json", + ], +) + +ts_project( + name = "tsc", + args = ['--pretty'], + srcs = SRCS, + deps = DEPS, + declaration = True, + declaration_map = True, + declaration_dir = "target_types", + emit_declaration_only = True, + incremental = True, + source_map = True, + root_dir = "src", + tsconfig = ":tsconfig", +) + +js_library( + name = PKG_BASE_NAME, + srcs = NPM_MODULE_EXTRA_FILES, + deps = DEPS + [":target_node", ":tsc"], + package_name = PKG_REQUIRE_NAME, + visibility = ["//visibility:public"], +) + +pkg_npm( + name = "npm_module", + deps = [ + ":%s" % PKG_BASE_NAME, + ] +) + +filegroup( + name = "build", + srcs = [ + ":npm_module", + ], + visibility = ["//visibility:public"], +) diff --git a/packages/kbn-test/jest-preset.js b/packages/kbn-test/jest-preset.js index 5baff607704c7..c84fe3f7a55b0 100644 --- a/packages/kbn-test/jest-preset.js +++ b/packages/kbn-test/jest-preset.js @@ -9,8 +9,6 @@ // For a detailed explanation regarding each configuration property, visit: // https://jestjs.io/docs/en/configuration.html -const { resolve } = require('path'); - module.exports = { // The directory where Jest should output its coverage files coverageDirectory: '/target/kibana-coverage/jest', @@ -30,13 +28,16 @@ module.exports = { moduleNameMapper: { '@elastic/eui/lib/(.*)?': '/node_modules/@elastic/eui/test-env/$1', '@elastic/eui$': '/node_modules/@elastic/eui/test-env', - '\\.module.(css|scss)$': '/packages/kbn-test/target/jest/mocks/css_module_mock.js', - '\\.(css|less|scss)$': '/packages/kbn-test/target/jest/mocks/style_mock.js', + '\\.module.(css|scss)$': + '/node_modules/@kbn/test/target_node/jest/mocks/css_module_mock.js', + '\\.(css|less|scss)$': '/node_modules/@kbn/test/target_node/jest/mocks/style_mock.js', '\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$': - '/packages/kbn-test/target/jest/mocks/file_mock.js', - '\\.ace\\.worker.js$': '/packages/kbn-test/target/jest/mocks/worker_module_mock.js', - '\\.editor\\.worker.js$': '/packages/kbn-test/target/jest/mocks/worker_module_mock.js', - '^(!!)?file-loader!': '/packages/kbn-test/target/jest/mocks/file_mock.js', + '/node_modules/@kbn/test/target_node/jest/mocks/file_mock.js', + '\\.ace\\.worker.js$': + '/node_modules/@kbn/test/target_node/jest/mocks/worker_module_mock.js', + '\\.editor\\.worker.js$': + '/node_modules/@kbn/test/target_node/jest/mocks/worker_module_mock.js', + '^(!!)?file-loader!': '/node_modules/@kbn/test/target_node/jest/mocks/file_mock.js', '^src/core/(.*)': '/src/core/$1', '^src/plugins/(.*)': '/src/plugins/$1', }, @@ -45,20 +46,20 @@ module.exports = { modulePathIgnorePatterns: ['__fixtures__/', 'target/'], // Use this configuration option to add custom reporters to Jest - reporters: ['default', resolve(__dirname, './target/jest/junit_reporter')], + reporters: ['default', '@kbn/test/target_node/jest/junit_reporter'], // The paths to modules that run some code to configure or set up the testing environment before each test setupFiles: [ - '/packages/kbn-test/target/jest/setup/babel_polyfill.js', - '/packages/kbn-test/target/jest/setup/polyfills.js', - '/packages/kbn-test/target/jest/setup/enzyme.js', + '/node_modules/@kbn/test/target_node/jest/setup/babel_polyfill.js', + '/node_modules/@kbn/test/target_node/jest/setup/polyfills.js', + '/node_modules/@kbn/test/target_node/jest/setup/enzyme.js', ], // A list of paths to modules that run some code to configure or set up the testing framework before each test setupFilesAfterEnv: [ - '/packages/kbn-test/target/jest/setup/setup_test.js', - '/packages/kbn-test/target/jest/setup/mocks.js', - '/packages/kbn-test/target/jest/setup/react_testing_library.js', + '/node_modules/@kbn/test/target_node/jest/setup/setup_test.js', + '/node_modules/@kbn/test/target_node/jest/setup/mocks.js', + '/node_modules/@kbn/test/target_node/jest/setup/react_testing_library.js', ], // A list of paths to snapshot serializer modules Jest should use for snapshot testing @@ -85,7 +86,7 @@ module.exports = { // A map from regular expressions to paths to transformers transform: { - '^.+\\.(js|tsx?)$': '/packages/kbn-test/target/jest/babel_transform.js', + '^.+\\.(js|tsx?)$': '/node_modules/@kbn/test/target_node/jest/babel_transform.js', '^.+\\.txt?$': 'jest-raw-loader', '^.+\\.html?$': 'jest-raw-loader', }, @@ -109,5 +110,5 @@ module.exports = { ], // A custom resolver to preserve symlinks by default - resolver: '/packages/kbn-test/target/jest/setup/preserve_symlinks_resolver.js', + resolver: '/node_modules/@kbn/test/target_node/jest/setup/preserve_symlinks_resolver.js', }; diff --git a/packages/kbn-test/jest/package.json b/packages/kbn-test/jest/package.json index c8b50f7b1b5ba..aa0ba83873684 100644 --- a/packages/kbn-test/jest/package.json +++ b/packages/kbn-test/jest/package.json @@ -1,4 +1,4 @@ { - "main": "../target/jest", - "types": "../target/types/jest/index.d.ts" + "main": "../target_node/jest", + "types": "../target_types/jest/index.d.ts" } diff --git a/packages/kbn-test/package.json b/packages/kbn-test/package.json index aaff513f1591f..c937d1e0be85c 100644 --- a/packages/kbn-test/package.json +++ b/packages/kbn-test/package.json @@ -3,14 +3,9 @@ "version": "1.0.0", "private": true, "license": "SSPL-1.0 OR Elastic License 2.0", - "main": "./target", - "types": "./target/types", - "scripts": { - "build": "node scripts/build", - "kbn:bootstrap": "node scripts/build --source-maps", - "kbn:watch": "node scripts/build --watch --source-maps" - }, + "main": "./target_node", + "types": "./target_types", "kibana": { "devOnly": true } -} \ No newline at end of file +} diff --git a/packages/kbn-test/scripts/build.js b/packages/kbn-test/scripts/build.js deleted file mode 100644 index 0be9d96ad6d58..0000000000000 --- a/packages/kbn-test/scripts/build.js +++ /dev/null @@ -1,80 +0,0 @@ -/* - * 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. - */ - -const { resolve } = require('path'); - -const del = require('del'); -const supportsColor = require('supports-color'); -const { run, withProcRunner } = require('@kbn/dev-utils'); - -const ROOT_DIR = resolve(__dirname, '..'); -const BUILD_DIR = resolve(ROOT_DIR, 'target'); - -const padRight = (width, str) => - str.length >= width ? str : `${str}${' '.repeat(width - str.length)}`; - -run( - async ({ log, flags }) => { - await withProcRunner(log, async (proc) => { - log.info('Deleting old output'); - await del(BUILD_DIR); - - const cwd = ROOT_DIR; - const env = { ...process.env }; - if (supportsColor.stdout) { - env.FORCE_COLOR = 'true'; - } - - log.info(`Starting babel and typescript${flags.watch ? ' in watch mode' : ''}`); - await Promise.all([ - proc.run(padRight(10, `babel`), { - cmd: 'babel', - args: [ - 'src', - '--config-file', - require.resolve('../babel.config.js'), - '--out-dir', - BUILD_DIR, - '--extensions', - '.ts,.js,.tsx', - ...(flags.watch ? ['--watch'] : ['--quiet']), - ...(!flags['source-maps'] || !!process.env.CODE_COVERAGE - ? [] - : ['--source-maps', 'inline']), - ], - wait: true, - env, - cwd, - }), - - proc.run(padRight(10, 'tsc'), { - cmd: 'tsc', - args: [ - ...(flags.watch ? ['--watch', '--preserveWatchOutput', 'true'] : []), - ...(flags['source-maps'] ? ['--declarationMap', 'true'] : []), - ], - wait: true, - env, - cwd, - }), - ]); - - log.success('Complete'); - }); - }, - { - description: 'Simple build tool for @kbn/i18n package', - flags: { - boolean: ['watch', 'source-maps'], - help: ` - --watch Run in watch mode - --source-maps Include sourcemaps - `, - }, - } -); diff --git a/packages/kbn-test/src/index.ts b/packages/kbn-test/src/index.ts index 86cbc121703ec..dea2ec9d1035e 100644 --- a/packages/kbn-test/src/index.ts +++ b/packages/kbn-test/src/index.ts @@ -18,7 +18,7 @@ import { // @internal export { runTestsCli, processRunTestsCliOptions, startServersCli, processStartServersCliOptions }; -// @ts-expect-error not typed yet +// @ts-ignore not typed yet // @internal export { runTests, startServers } from './functional_tests/tasks'; diff --git a/packages/kbn-test/src/jest/integration_tests/__fixtures__/jest.config.js b/packages/kbn-test/src/jest/integration_tests/__fixtures__/jest.config.js index 90d19de897ad4..b90cc413d3f0d 100644 --- a/packages/kbn-test/src/jest/integration_tests/__fixtures__/jest.config.js +++ b/packages/kbn-test/src/jest/integration_tests/__fixtures__/jest.config.js @@ -13,7 +13,7 @@ module.exports = { reporters: [ 'default', [ - `${REPO_ROOT}/packages/kbn-test/target/jest/junit_reporter`, + `${REPO_ROOT}/node_modules/@kbn/test/target_node/jest/junit_reporter`, { reportName: 'JUnit Reporter Integration Test', rootDirectory: resolve( diff --git a/packages/kbn-test/tsconfig.json b/packages/kbn-test/tsconfig.json index 3cb68029d74cf..22c502f53c03c 100644 --- a/packages/kbn-test/tsconfig.json +++ b/packages/kbn-test/tsconfig.json @@ -1,24 +1,17 @@ { "extends": "../../tsconfig.base.json", "compilerOptions": { - "incremental": false, - "outDir": "./target/types", + "incremental": true, + "outDir": "./target_types", "stripInternal": true, - "emitDeclarationOnly": true, "declaration": true, "declarationMap": true, + "emitDeclarationOnly": true, + "rootDir": "src", "sourceMap": true, "sourceRoot": "../../../../../../packages/kbn-test/src", - "types": [ - "jest", - "node" - ], + "types": ["jest", "node"] }, - "include": [ - "src/**/*", - "index.d.ts" - ], - "exclude": [ - "**/__fixtures__/**/*" - ] + "include": ["src/**/*", "index.d.ts"], + "exclude": ["**/__fixtures__/**/*"] } diff --git a/packages/kbn-ui-shared-deps/BUILD.bazel b/packages/kbn-ui-shared-deps/BUILD.bazel index c04f88a42cce0..9096905a2586b 100644 --- a/packages/kbn-ui-shared-deps/BUILD.bazel +++ b/packages/kbn-ui-shared-deps/BUILD.bazel @@ -50,8 +50,6 @@ SRC_DEPS = [ "@npm//fflate", "@npm//jquery", "@npm//loader-utils", - # TODO: we can remove this once EUI patches the dependencies - "@npm//mdast-util-to-hast", "@npm//mini-css-extract-plugin", "@npm//moment", "@npm//moment-timezone", diff --git a/rfcs/text/0013_saved_object_migrations.md b/rfcs/text/0013_saved_object_migrations.md index 2f7ed796bf0e6..e5ff7616ccf82 100644 --- a/rfcs/text/0013_saved_object_migrations.md +++ b/rfcs/text/0013_saved_object_migrations.md @@ -253,26 +253,27 @@ Note: 4. Fail the migration if: 1. `.kibana` is pointing to an index that belongs to a later version of Kibana .e.g. `.kibana_7.12.0_001` 2. (Only in 8.x) The source index contains documents that belong to an unknown Saved Object type (from a disabled plugin). Log an error explaining that the plugin that created these documents needs to be enabled again or that these objects should be deleted. See section (4.2.1.4). -5. Set a write block on the source index. This prevents any further writes from outdated nodes. -6. Create a new temporary index `.kibana_7.10.0_reindex_temp` with `dynamic: false` on the top-level mappings so that any kind of document can be written to the index. This allows us to write untransformed documents to the index which might have fields which have been removed from the latest mappings defined by the plugin. Define minimal mappings for the `migrationVersion` and `type` fields so that we're still able to search for outdated documents that need to be transformed. +5. Search the source index for documents with types not registered within Kibana. Fail the migration if any document is found. +6. Set a write block on the source index. This prevents any further writes from outdated nodes. +7. Create a new temporary index `.kibana_7.10.0_reindex_temp` with `dynamic: false` on the top-level mappings so that any kind of document can be written to the index. This allows us to write untransformed documents to the index which might have fields which have been removed from the latest mappings defined by the plugin. Define minimal mappings for the `migrationVersion` and `type` fields so that we're still able to search for outdated documents that need to be transformed. 1. Ignore errors if the target index already exists. -7. Reindex the source index into the new temporary index. +8. Reindex the source index into the new temporary index. 1. Use `op_type=create` `conflicts=proceed` and `wait_for_completion=false` so that multiple instances can perform the reindex in parallel but only one write per document will succeed. 2. Wait for the reindex task to complete. If reindexing doesn’t complete within the 60s timeout, log a warning for visibility and poll again. -8. Clone the temporary index into the target index `.kibana_7.10.0_001`. Since any further writes will only happen against the cloned target index this prevents a lost delete from occuring where one instance finishes the migration and deletes a document and another instance's reindex operation re-creates the deleted document. +9. Clone the temporary index into the target index `.kibana_7.10.0_001`. Since any further writes will only happen against the cloned target index this prevents a lost delete from occuring where one instance finishes the migration and deletes a document and another instance's reindex operation re-creates the deleted document. 1. Set a write block on the temporary index 2. Clone the temporary index into the target index while specifying that the target index should have writes enabled. 3. If the clone operation fails because the target index already exist, ignore the error and wait for the target index to become green before proceeding. 4. (The `001` postfix in the target index name isn't used by Kibana, but allows for re-indexing an index should this be required by an Elasticsearch upgrade. E.g. re-index `.kibana_7.10.0_001` into `.kibana_7.10.0_002` and point the `.kibana_7.10.0` alias to `.kibana_7.10.0_002`.) -9. Transform documents by reading batches of outdated documents from the target index then transforming and updating them with optimistic concurrency control. +10. Transform documents by reading batches of outdated documents from the target index then transforming and updating them with optimistic concurrency control. 1. Ignore any version conflict errors. 2. If a document transform throws an exception, add the document to a failure list and continue trying to transform all other documents. If any failures occured, log the complete list of documents that failed to transform. Fail the migration. -10. Update the mappings of the target index +11. Update the mappings of the target index 1. Retrieve the existing mappings including the `migrationMappingPropertyHashes` metadata. 2. Update the mappings with `PUT /.kibana_7.10.0_001/_mapping`. The API deeply merges any updates so this won't remove the mappings of any plugins that are disabled on this instance but have been enabled on another instance that also migrated this index. 3. Ensure that fields are correctly indexed using the target index's latest mappings `POST /.kibana_7.10.0_001/_update_by_query?conflicts=proceed`. In the future we could optimize this query by only targeting documents: 1. That belong to a known saved object type. -11. Mark the migration as complete. This is done as a single atomic +12. Mark the migration as complete. This is done as a single atomic operation (requires https://github.com/elastic/elasticsearch/pull/58100) to guarantee that when multiple versions of Kibana are performing the migration in parallel, only one version will win. E.g. if 7.11 and 7.12 @@ -284,7 +285,7 @@ Note: 4. If this fails with a "required alias [.kibana] does not exist" error or "index_not_found_exception" for the temporary index, fetch `.kibana` again: 1. If `.kibana` is _not_ pointing to our target index fail the migration. 2. If `.kibana` is pointing to our target index the migration has succeeded and we can proceed to step (12). -12. Start serving traffic. All saved object reads/writes happen through the +13. Start serving traffic. All saved object reads/writes happen through the version-specific alias `.kibana_7.10.0`. Together with the limitations, this algorithm ensures that migrations are diff --git a/src/core/public/chrome/ui/header/__snapshots__/collapsible_nav.test.tsx.snap b/src/core/public/chrome/ui/header/__snapshots__/collapsible_nav.test.tsx.snap index 0b10209bc13e5..9e890f5bce408 100644 --- a/src/core/public/chrome/ui/header/__snapshots__/collapsible_nav.test.tsx.snap +++ b/src/core/public/chrome/ui/header/__snapshots__/collapsible_nav.test.tsx.snap @@ -61,6 +61,7 @@ exports[`CollapsibleNav renders links grouped by category 1`] = ` "serverBasePath": "/test", } } + button={, - } - } - color="subdued" - data-test-subj="collapsible-nav-lock" - iconType="lockOpen" - label="Dock navigation" - onClick={[Function]} - size="xs" - > -
  • - -
  • - - - - - - - + sizes="none" + /> @@ -2057,6 +1984,7 @@ exports[`CollapsibleNav renders the default nav 1`] = ` "serverBasePath": "/test", } } + button={ - -
    - -
    -
    -
    - -
    - -
    -

    - No recently viewed items -

    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - - -
    -
    - -
    - - -
    -
    - -
      - - - - Undock navigation - - , - } - } - color="subdued" - data-test-subj="collapsible-nav-lock" - iconType="lock" - label="Undock navigation" - onClick={[Function]} - size="xs" - > -
    • - -
    • -
      -
    -
    -
    -
    -
    -
    -
    -
    - - + , - } + - - - - - - + + } + closeNav={[Function]} + customNavLink$={ + BehaviorSubject { + "_isScalar": false, + "_value": Object { + "baseUrl": "", + "href": "", + "id": "cloud-deployment-link", + "title": "Manage cloud deployment", + "url": "", + }, + "closed": false, + "hasError": false, + "isStopped": false, + "observers": Array [ + Subscriber { + "_parentOrParents": null, + "_subscriptions": Array [ + SubjectSubscription { + "_parentOrParents": [Circular], + "_subscriptions": null, + "closed": false, + "subject": [Circular], + "subscriber": [Circular], + }, + ], "closed": false, - "subject": [Circular], - "subscriber": [Circular], + "destination": SafeSubscriber { + "_complete": undefined, + "_context": [Circular], + "_error": undefined, + "_next": [Function], + "_parentOrParents": null, + "_parentSubscriber": [Circular], + "_subscriptions": null, + "closed": false, + "destination": Object { + "closed": true, + "complete": [Function], + "error": [Function], + "next": [Function], + }, + "isStopped": false, + "syncErrorThrowable": false, + "syncErrorThrown": false, + "syncErrorValue": null, + }, + "isStopped": false, + "syncErrorThrowable": true, + "syncErrorThrown": false, + "syncErrorValue": null, }, ], - "closed": false, - "destination": SafeSubscriber { - "_complete": undefined, - "_context": [Circular], - "_error": undefined, - "_next": [Function], - "_parentOrParents": null, - "_parentSubscriber": [Circular], - "_subscriptions": null, - "closed": false, - "destination": Object { - "closed": true, - "complete": [Function], - "error": [Function], - "next": [Function], + "thrownError": null, + } + } + homeHref="/" + id="mockId" + isLocked={true} + isNavOpen={false} + navLinks$={ + BehaviorSubject { + "_isScalar": false, + "_value": Array [ + Object { + "baseUrl": "", + "href": "", + "id": "kibana", + "title": "kibana", + "url": "", }, - "isStopped": false, - "syncErrorThrowable": false, - "syncErrorThrown": false, - "syncErrorValue": null, - }, - "isStopped": false, - "syncErrorThrowable": true, - "syncErrorThrown": false, - "syncErrorValue": null, - }, - ], - "thrownError": null, - } - } - side="left" - /> - - - - - - - - - - - -
    - -
    - -
    - -
    - -
    - -
    - - - - - - + + + + + +
    -
    - -
    - -
      - -
    • - -
    • -
      -
    -
    -
    -
    -
    - - -
    -
    - -
      - - - - Undock navigation - - , - } - } - color="subdued" - data-test-subj="collapsible-nav-lock" - iconType="lock" - label="Undock navigation" - onClick={[Function]} - size="xs" - > -
    • - -
    • -
      -
    -
    -
    -
    -
    -
    -
    - - - - - + data-test-subj="headerAppActionMenu" + /> + +
    + + +
    + + + `; diff --git a/src/core/public/chrome/ui/header/collapsible_nav.test.tsx b/src/core/public/chrome/ui/header/collapsible_nav.test.tsx index 460770744d53a..019a3c7820324 100644 --- a/src/core/public/chrome/ui/header/collapsible_nav.test.tsx +++ b/src/core/public/chrome/ui/header/collapsible_nav.test.tsx @@ -56,6 +56,7 @@ function mockProps() { navigateToApp: () => Promise.resolve(), navigateToUrl: () => Promise.resolve(), customNavLink$: new BehaviorSubject(undefined), + button: