Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix field_masking_span to span_field_masking #2563

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions output/schema/schema.json

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

4 changes: 2 additions & 2 deletions output/typescript/types.ts

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

2 changes: 1 addition & 1 deletion specification/_types/query_dsl/abstractions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ export class QueryContainer {
* Wrapper to allow span queries to participate in composite single-field span queries by _lying_ about their search field.
* @doc_id query-dsl-span-field-masking-query
*/
field_masking_span?: SpanFieldMaskingQuery
span_field_masking?: SpanFieldMaskingQuery
/**
* Matches spans near the beginning of a field.
* @doc_id query-dsl-span-first-query
Expand Down
2 changes: 1 addition & 1 deletion specification/_types/query_dsl/span.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export class SpanQuery {
/**
* Allows queries like `span_near` or `span_or` across different fields.
*/
field_masking_span?: SpanFieldMaskingQuery
span_field_masking?: SpanFieldMaskingQuery
/**
* Accepts another span query whose matches must appear within the first N positions of the field.
*/
Expand Down
Loading