Skip to content

Commit 06d096f

Browse files
Fix ignored_field_values type (#2934) (#2936)
(cherry picked from commit 5ae90c2) Co-authored-by: Quentin Pradet <[email protected]>
1 parent 93107e3 commit 06d096f

File tree

6 files changed

+25
-24
lines changed

6 files changed

+25
-24
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/openapi/elasticsearch-serverless-openapi.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema-serverless.json

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema.json

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/typescript/types.ts

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/_global/search/_types/hits.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ import { UserDefinedValue } from '@spec_utils/UserDefinedValue'
2323
import {
2424
Field,
2525
Fields,
26+
FieldValue,
2627
Id,
2728
IndexName,
2829
Name,
@@ -52,7 +53,7 @@ export class Hit<TDocument> {
5253
matched_queries?: string[] | Dictionary<string, double>
5354
_nested?: NestedIdentity
5455
_ignored?: string[]
55-
ignored_field_values?: Dictionary<string, string[]>
56+
ignored_field_values?: Dictionary<string, FieldValue[]>
5657
_shard?: string
5758
_node?: string
5859
_routing?: string

0 commit comments

Comments
 (0)