Skip to content

Commit b648f1d

Browse files
authored
fix field_masking_span to span_field_masking (#2563)
1 parent 2019a8a commit b648f1d

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

output/schema/schema.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/typescript/types.ts

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/_types/query_dsl/abstractions.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ export class QueryContainer {
320320
* Wrapper to allow span queries to participate in composite single-field span queries by _lying_ about their search field.
321321
* @doc_id query-dsl-span-field-masking-query
322322
*/
323-
field_masking_span?: SpanFieldMaskingQuery
323+
span_field_masking?: SpanFieldMaskingQuery
324324
/**
325325
* Matches spans near the beginning of a field.
326326
* @doc_id query-dsl-span-first-query

specification/_types/query_dsl/span.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ export class SpanQuery {
140140
/**
141141
* Allows queries like `span_near` or `span_or` across different fields.
142142
*/
143-
field_masking_span?: SpanFieldMaskingQuery
143+
span_field_masking?: SpanFieldMaskingQuery
144144
/**
145145
* Accepts another span query whose matches must appear within the first N positions of the field.
146146
*/

0 commit comments

Comments
 (0)