From f30e1f25571c6fd0a1399ed1b9e269b21ba994b0 Mon Sep 17 00:00:00 2001 From: Josh Mock Date: Fri, 23 May 2025 07:28:53 -0500 Subject: [PATCH] Range query from/to parameters were removed in 9.0 (#4399) (cherry picked from commit 6d1d0b30a8e2aa25960f1a8a06514930046368af) --- specification/_types/query_dsl/term.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/specification/_types/query_dsl/term.ts b/specification/_types/query_dsl/term.ts index 2bcc2bd41e..6363c29897 100644 --- a/specification/_types/query_dsl/term.ts +++ b/specification/_types/query_dsl/term.ts @@ -141,10 +141,6 @@ export class RangeQueryBase extends QueryBase { * Less than or equal to. */ lte?: T - /** @deprecated 8.16.0 Use gte or gt instead */ - from?: T | null - /** @deprecated 8.16.0 Use lte or lt instead */ - to?: T | null } export class UntypedRangeQuery extends RangeQueryBase {