From e6f6a4a848dbe58908354782df77d826e8f83bff Mon Sep 17 00:00:00 2001 From: Florian Bernd Date: Mon, 11 Aug 2025 16:43:27 +0200 Subject: [PATCH] Change `KeyedPercentiles` value type from `long` to `double` (#5108) (cherry picked from commit 2fbfdadbe46c85b1565dad07ce35366e370cf243) --- specification/_types/aggregations/Aggregate.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specification/_types/aggregations/Aggregate.ts b/specification/_types/aggregations/Aggregate.ts index 764c880cd7..b9cf3868cc 100644 --- a/specification/_types/aggregations/Aggregate.ts +++ b/specification/_types/aggregations/Aggregate.ts @@ -157,7 +157,7 @@ type Percentiles = KeyedPercentiles | Array // _as_string? string - present if a format was provided // // Note: defined as type alias and not inline, as some clients may want to implement it in a more usable way. -type KeyedPercentiles = Dictionary +type KeyedPercentiles = Dictionary export class ArrayPercentilesItem { key: string