Skip to content

Commit

Permalink
Merge branch 'master' into legrego/issue51942
Browse files Browse the repository at this point in the history
  • Loading branch information
kibanamachine authored Mar 25, 2021
2 parents 8bbc6c1 + 3bb9220 commit 011f66d
Show file tree
Hide file tree
Showing 1,410 changed files with 34,230 additions and 21,491 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
/src/plugins/navigation/ @elastic/kibana-app-services
/src/plugins/share/ @elastic/kibana-app-services
/src/plugins/ui_actions/ @elastic/kibana-app-services
/src/plugins/index_pattern_field_editor @elastic/kibana-app-services
/x-pack/examples/ui_actions_enhanced_examples/ @elastic/kibana-app-services
/x-pack/plugins/data_enhanced/ @elastic/kibana-app-services
/x-pack/plugins/embeddable_enhanced/ @elastic/kibana-app-services
Expand Down
15 changes: 0 additions & 15 deletions .github/ISSUE_TEMPLATE/Question.md

This file was deleted.

5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
blank_issues_enabled: false
contact_links:
- name: Question
url: https://discuss.elastic.co/c/kibana
about: Please ask and answer questions here.
6 changes: 3 additions & 3 deletions WORKSPACE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "55a25a762fcf9c9b88ab54436581e671bc9f4f523cb5a1bd32459ebec7be68a8",
urls = ["https://github.com/bazelbuild/rules_nodejs/releases/download/3.2.2/rules_nodejs-3.2.2.tar.gz"],
sha256 = "dd7ea7efda7655c218ca707f55c3e1b9c68055a70c31a98f264b3445bc8f4cb1",
urls = ["https://github.com/bazelbuild/rules_nodejs/releases/download/3.2.3/rules_nodejs-3.2.3.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.2.2")
check_rules_nodejs_version(minimum_version_string = "3.2.3")

# Setup the Node.js toolchain for the architectures we want to support
#
Expand Down
69 changes: 69 additions & 0 deletions api_docs/actions.json
Original file line number Diff line number Diff line change
Expand Up @@ -1646,6 +1646,21 @@
],
"enums": [],
"misc": [
{
"id": "def-common.AsApiContract",
"type": "Type",
"label": "AsApiContract",
"tags": [],
"description": [],
"source": {
"path": "x-pack/plugins/actions/common/rewrite_request_case.ts",
"lineNumber": 14
},
"signature": [
"{ [K in keyof T as CamelToSnake<RenameActionToConnector<Extract<K, string>>>]: T[K]; }"
],
"initialIsOpen": false
},
{
"tags": [],
"id": "def-common.BASE_ACTION_API_PATH",
Expand All @@ -1660,6 +1675,60 @@
"\"/api/actions\""
],
"initialIsOpen": false
},
{
"id": "def-common.RewriteRequestCase",
"type": "Type",
"label": "RewriteRequestCase",
"tags": [],
"description": [],
"source": {
"path": "x-pack/plugins/actions/common/rewrite_request_case.ts",
"lineNumber": 18
},
"signature": [
"(requested: ",
{
"pluginId": "actions",
"scope": "common",
"docId": "kibActionsPluginApi",
"section": "def-common.AsApiContract",
"text": "AsApiContract"
},
"<T>) => T"
],
"initialIsOpen": false
},
{
"id": "def-common.RewriteResponseCase",
"type": "Type",
"label": "RewriteResponseCase",
"tags": [],
"description": [],
"source": {
"path": "x-pack/plugins/actions/common/rewrite_request_case.ts",
"lineNumber": 19
},
"signature": [
"(responded: T) => T extends (infer Item)[] ? ",
{
"pluginId": "actions",
"scope": "common",
"docId": "kibActionsPluginApi",
"section": "def-common.AsApiContract",
"text": "AsApiContract"
},
"<Item>[] : ",
{
"pluginId": "actions",
"scope": "common",
"docId": "kibActionsPluginApi",
"section": "def-common.AsApiContract",
"text": "AsApiContract"
},
"<T>"
],
"initialIsOpen": false
}
],
"objects": []
Expand Down
Loading

0 comments on commit 011f66d

Please sign in to comment.