kibana/packages/kbn-securitysolution-lists-common
natasha-moore-elastic cebcf01d35
[DOCS] Adds conceptual content to API docs (#202305)
## Summary

Resolves https://github.com/elastic/security-docs-internal/issues/49.

In order to retire asciidoc API docs, we first need to move over any
relevant content from those docs to the API reference site. This PR adds
the relevant conceptual information from:

-
https://www.elastic.co/guide/en/security/master/exceptions-api-overview.html
-
https://www.elastic.co/guide/en/security/master/lists-api-overview.html
- https://www.elastic.co/guide/en/security/master/rule-api-overview.html

### Previews:
Bump previews expire after 30min, so I'm providing screenshots below:

Detections preview:

![detections_preview](https://github.com/user-attachments/assets/c47b9d85-b5d0-4a32-8668-dc1ae2215681)

Exceptions preview:

![exceptions_preview](https://github.com/user-attachments/assets/b3fe9139-2162-4c56-bba9-751dffa11cb4)

Lists preview:

![lists_preview](https://github.com/user-attachments/assets/1c714f17-825d-45c7-8112-cc3d25c51047)

---------

Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
2024-12-12 16:53:29 +00:00
..
api Improves Lists API docs content (#192504) 2024-09-17 12:24:07 +01:00
docs/openapi [DOCS] Adds conceptual content to API docs (#202305) 2024-12-12 16:53:29 +00:00
scripts [DOCS] Adds conceptual content to API docs (#202305) 2024-12-12 16:53:29 +00:00
kibana.jsonc Sustainable Kibana Architecture: Categorise straightforward packages (#199630) 2024-11-22 10:33:25 +01:00
package.json Adds AGPL 3.0 license (#192025) 2024-09-06 19:02:41 -06:00
README.md
tsconfig.json [Security Solution] Quickstart script tooling for Detections and Response (#190634) 2024-09-06 06:41:57 -07:00

Security Solution Lists common package

The package contains common files for the Lists feature.

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

Please add any Lists feature related schemas to this package.

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

import { CreateListRequestBody } from '@kbn/securitysolution-lists-common/api';