kibana/packages/kbn-securitysolution-exceptions-common
Luke Elmers b6287708f6
Adds AGPL 3.0 license (#192025)
Updates files outside of x-pack to be triple-licensed under Elastic
License 2.0, AGPL 3.0, or SSPL 1.0.
2024-09-06 19:02:41 -06:00
..
api Adds AGPL 3.0 license (#192025) 2024-09-06 19:02:41 -06:00
docs/openapi [Security Solution] Align operationId and file names in OpenAPI specs (#189703) 2024-08-05 18:11:54 +02:00
scripts Adds AGPL 3.0 license (#192025) 2024-09-06 19:02:41 -06:00
kibana.jsonc [Security Solution] Add missing Exceptions API OpenAPI specifications (#185951) 2024-07-15 13:12:56 +02:00
package.json Adds AGPL 3.0 license (#192025) 2024-09-06 19:02:41 -06:00
README.md [Security Solution] Add missing Exceptions API OpenAPI specifications (#185951) 2024-07-15 13:12:56 +02:00
tsconfig.json [Security Solution] Quickstart script tooling for Detections and Response (#190634) 2024-09-06 06:41:57 -07:00

Security Solution Exceptions common package

The package contains common files for the Exceptions feature.

common in the name highlights that this package is intended to combine any common entities related to Exceptions in this package. E.g. the other kbn-securitysolution-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 Exceptions feature. There are automatically generated Zod schemas and TS types for each schemas located in corresponding *.gen.ts files.

Please add any Exceptions feature related schemas to this package.

TS types and/or Zod schemas can be imported in a plugin or another package like

import { CreateExceptionRequestBody } from '@kbn/securitysolution-exceptions-common/api';