mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 18:51:07 -04:00
Updates files outside of x-pack to be triple-licensed under Elastic License 2.0, AGPL 3.0, or SSPL 1.0. |
||
---|---|---|
.. | ||
api | ||
docs/openapi | ||
scripts | ||
kibana.jsonc | ||
package.json | ||
README.md | ||
tsconfig.json |
Security Solution Endpoint Exceptions
The package contains common files for the Endpoint Exceptions feature.
common
in the name highlights that this package is intended to combine any common entities related to Endpoint Exceptions. E.g. the other kbn-securitysolution-endpoint-exception-list-*
packages
content should be moved here while kbn-securitysolution-io-ts-list-types
package should be
gone eventually.
API folder
api
folder contains OpenAPI schemas for Security Solution Endpoint Exceptions feature. There are automatically generated Zod schemas and TS types for each schemas located in corresponding
*.gen.ts
files.
Please add any Endpoint Exceptions feature related schemas to this package.
TS types and/or Zod schemas can be imported in a plugin or another package like
import { CreateEndpointExceptionRequestBody } from '@kbn/securitysolution-endpoint-exceptions-common/api';