Skip to content

Commit

Permalink
Fix ignored_field_values type (#2934)
Browse files Browse the repository at this point in the history
  • Loading branch information
pquentin authored Sep 25, 2024
1 parent b394201 commit 5ae90c2
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 24 deletions.
2 changes: 1 addition & 1 deletion output/openapi/elasticsearch-openapi.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion output/openapi/elasticsearch-serverless-openapi.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions output/schema/schema-serverless.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions output/schema/schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion output/typescript/types.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion specification/_global/search/_types/hits.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import { UserDefinedValue } from '@spec_utils/UserDefinedValue'
import {
Field,
Fields,
FieldValue,
Id,
IndexName,
Name,
Expand Down Expand Up @@ -52,7 +53,7 @@ export class Hit<TDocument> {
matched_queries?: string[] | Dictionary<string, double>
_nested?: NestedIdentity
_ignored?: string[]
ignored_field_values?: Dictionary<string, string[]>
ignored_field_values?: Dictionary<string, FieldValue[]>
_shard?: string
_node?: string
_routing?: string
Expand Down

0 comments on commit 5ae90c2

Please sign in to comment.