Skip to content

Commit 81fa5f5

Browse files
committed
Allow strings in date range aggregation
1 parent b18318c commit 81fa5f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

specification/_types/aggregations/bucket.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -695,15 +695,15 @@ export class AggregationRange {
695695
/**
696696
* Start of the range (inclusive).
697697
*/
698-
from?: double | null
698+
from?: FieldValue
699699
/**
700700
* Custom key to return the range with.
701701
*/
702702
key?: string
703703
/**
704704
* End of the range (exclusive).
705705
*/
706-
to?: double | null
706+
to?: FieldValue
707707
}
708708

709709
/**

0 commit comments

Comments
 (0)