[RAC] Rule registry plugin (#95903)

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
Dario Gieselaar 2021-04-09 10:35:44 +02:00 committed by GitHub
parent 012f1c199b
commit dfaf3ac8f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
59 changed files with 9844 additions and 1336 deletions

View file

@ -370,6 +370,16 @@ export type AggregateOf<
missing: {
doc_count: number;
} & SubAggregateOf<TAggregationContainer, TDocument>;
multi_terms: {
doc_count_error_upper_bound: number;
sum_other_doc_count: number;
buckets: Array<
{
doc_count: number;
key: string[];
} & SubAggregateOf<TAggregationContainer, TDocument>
>;
};
nested: {
doc_count: number;
} & SubAggregateOf<TAggregationContainer, TDocument>;