Skip to content

Commit 24d0e0f

Browse files
authored
Allow null from/to in range aggregation (#2863)
1 parent 1bbd45a commit 24d0e0f

File tree

6 files changed

+108
-28
lines changed

6 files changed

+108
-28
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 18 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/openapi/elasticsearch-serverless-openapi.json

Lines changed: 18 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema-serverless.json

Lines changed: 34 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema.json

Lines changed: 34 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/typescript/types.ts

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/_types/aggregations/bucket.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -680,15 +680,15 @@ export class AggregationRange {
680680
/**
681681
* Start of the range (inclusive).
682682
*/
683-
from?: double
683+
from?: double | null
684684
/**
685685
* Custom key to return the range with.
686686
*/
687687
key?: string
688688
/**
689689
* End of the range (exclusive).
690690
*/
691-
to?: double
691+
to?: double | null
692692
}
693693

694694
export class RareTermsAggregation extends BucketAggregationBase {

0 commit comments

Comments
 (0)