From 15f818f15fd9cfd6b52ccbfe211b70d99c442004 Mon Sep 17 00:00:00 2001 From: Florian Bernd Date: Mon, 11 Aug 2025 16:02:38 +0200 Subject: [PATCH] Change `KeyedPercentiles` value type from `long` to `double` --- 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