Skip to content

Commit

Permalink
Merge branch 'master' of github.com:elastic/kibana into controls/dndK…
Browse files Browse the repository at this point in the history
…itDragDrop
  • Loading branch information
ThomThomson committed Sep 29, 2021
2 parents 17a64e5 + 9dff4d0 commit 08f8c71
Show file tree
Hide file tree
Showing 807 changed files with 83,336 additions and 59,606 deletions.
27 changes: 27 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -930,6 +930,15 @@ module.exports = {
'@typescript-eslint/no-explicit-any': 'error',
'@typescript-eslint/no-useless-constructor': 'error',
'@typescript-eslint/unified-signatures': 'error',
'no-restricted-imports': [
'error',
{
// prevents code from importing files that contain the name "legacy" within their name. This is a mechanism
// to help deprecation and prevent accidental re-use/continued use of code we plan on removing. If you are
// finding yourself turning this off a lot for "new code" consider renaming the file and functions if it is has valid uses.
patterns: ['*legacy*'],
},
],
},
},
{
Expand Down Expand Up @@ -1192,6 +1201,15 @@ module.exports = {
'no-template-curly-in-string': 'error',
'sort-keys': 'error',
'prefer-destructuring': 'error',
'no-restricted-imports': [
'error',
{
// prevents code from importing files that contain the name "legacy" within their name. This is a mechanism
// to help deprecation and prevent accidental re-use/continued use of code we plan on removing. If you are
// finding yourself turning this off a lot for "new code" consider renaming the file and functions if it has valid uses.
patterns: ['*legacy*'],
},
],
},
},
/**
Expand Down Expand Up @@ -1304,6 +1322,15 @@ module.exports = {
'no-template-curly-in-string': 'error',
'sort-keys': 'error',
'prefer-destructuring': 'error',
'no-restricted-imports': [
'error',
{
// prevents code from importing files that contain the name "legacy" within their name. This is a mechanism
// to help deprecation and prevent accidental re-use/continued use of code we plan on removing. If you are
// finding yourself turning this off a lot for "new code" consider renaming the file and functions if it has valid uses.
patterns: ['*legacy*'],
},
],
},
},
/**
Expand Down
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

# Tech leads
/dev_docs @elastic/kibana-tech-leads
/src/dev/license_checker/config.ts @elastic/kibana-tech-leads
/packages/kbn-docs-utils/ @elastic/kibana-tech-leads @elastic/kibana-operations

# Virtual teams
Expand Down
42 changes: 41 additions & 1 deletion api_docs/actions.json
Original file line number Diff line number Diff line change
Expand Up @@ -580,6 +580,20 @@
],
"path": "x-pack/plugins/actions/server/types.ts",
"deprecated": false
},
{
"parentPluginId": "actions",
"id": "def-server.ActionTypeExecutorOptions.taskInfo",
"type": "Object",
"tags": [],
"label": "taskInfo",
"description": [],
"signature": [
"TaskInfo",
" | undefined"
],
"path": "x-pack/plugins/actions/server/types.ts",
"deprecated": false
}
],
"initialIsOpen": false
Expand Down Expand Up @@ -1765,8 +1779,34 @@
"initialIsOpen": false
}
],
"enums": [],
"enums": [
{
"parentPluginId": "actions",
"id": "def-common.AdditionalEmailServices",
"type": "Enum",
"tags": [],
"label": "AdditionalEmailServices",
"description": [],
"path": "x-pack/plugins/actions/common/index.ts",
"deprecated": false,
"initialIsOpen": false
}
],
"misc": [
{
"parentPluginId": "actions",
"id": "def-common.ACTIONS_FEATURE_ID",
"type": "string",
"tags": [],
"label": "ACTIONS_FEATURE_ID",
"description": [],
"signature": [
"\"actions\""
],
"path": "x-pack/plugins/actions/common/index.ts",
"deprecated": false,
"initialIsOpen": false
},
{
"parentPluginId": "actions",
"id": "def-common.ALERT_HISTORY_PREFIX",
Expand Down
5 changes: 4 additions & 1 deletion api_docs/actions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Contact [Kibana Alerting](https://github.com/orgs/elastic/teams/kibana-alerting-

| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
| 122 | 0 | 122 | 7 |
| 125 | 0 | 125 | 8 |

## Server

Expand All @@ -45,6 +45,9 @@ Contact [Kibana Alerting](https://github.com/orgs/elastic/teams/kibana-alerting-
### Interfaces
<DocDefinitionList data={actionsObj.common.interfaces}/>

### Enums
<DocDefinitionList data={actionsObj.common.enums}/>

### Consts, variables and types
<DocDefinitionList data={actionsObj.common.misc}/>

Loading

0 comments on commit 08f8c71

Please sign in to comment.