mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 10:23:14 -04:00
## Summary This moves code from `plugins/aiops/common` to packages. The `aiops` plugin will from now on have only a `server` and `public` directory. This is in preparation for additional AIOps related public APIs and to avoid cyclic dependency problems for other consuming plugins. - Package `@kbn/aiops-utils` was renamed to `@kbn/aiops-common`. - For each AIOps feature a package was created: `@kbn/aiops-change-point-detection`, `@kbn/aiops-log-pattern-analysis` and `@kbn/aiops-log-rate-analysis`. ### Checklist - [x] This was checked for breaking API changes and was [labeled appropriately](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process)
9 lines
349 B
TypeScript
9 lines
349 B
TypeScript
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the Elastic License
|
|
* 2.0; you may not use this file except in compliance with the Elastic License
|
|
* 2.0.
|
|
*/
|
|
|
|
export { categorizeSchema } from './schema';
|
|
export type { CategorizeSchema } from './schema';
|