Skip to content

Commit

Permalink
Fix include/exclude type in Frequent Items agg (#2280) (#2286)
Browse files Browse the repository at this point in the history
Co-authored-by: Quentin Pradet <[email protected]>
  • Loading branch information
github-actions[bot] and pquentin authored Sep 20, 2023
1 parent f877292 commit dc1c9f9
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 44 deletions.
50 changes: 10 additions & 40 deletions output/schema/schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions output/typescript/types.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions specification/_types/aggregations/bucket.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1148,12 +1148,12 @@ export class FrequentItemSetsField {
* Values to exclude.
* Can be regular expression strings or arrays of strings of exact terms.
*/
exclude?: string | string[]
exclude?: TermsExclude
/**
* Values to include.
* Can be regular expression strings or arrays of strings of exact terms.
*/
include?: string | string[]
include?: TermsInclude
}

export class FrequentItemSetsAggregation {
Expand Down

0 comments on commit dc1c9f9

Please sign in to comment.