From cb0417901ff826a46b88522a3f4d624164a5e213 Mon Sep 17 00:00:00 2001 From: Miles Spielberg <9729801+mspielberg@users.noreply.github.com> Date: Tue, 17 Sep 2024 20:09:03 -0700 Subject: [PATCH] Accept any FieldValue for terms_set --- specification/_types/query_dsl/term.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specification/_types/query_dsl/term.ts b/specification/_types/query_dsl/term.ts index 0860dda2f5..e2a47751d0 100644 --- a/specification/_types/query_dsl/term.ts +++ b/specification/_types/query_dsl/term.ts @@ -263,7 +263,7 @@ export class TermsSetQuery extends QueryBase { /** * Array of terms you wish to find in the provided field. */ - terms: string[] + terms: FieldValue[] } export class TypeQuery extends QueryBase {