remove duplicative types from search_source types#166760
Merged
nreese merged 8 commits intoelastic:mainfrom Oct 2, 2023
Merged
remove duplicative types from search_source types#166760nreese merged 8 commits intoelastic:mainfrom
nreese merged 8 commits intoelastic:mainfrom
Conversation
…-ref HEAD~1..HEAD --fix'
Contributor
|
Pinging @elastic/kibana-data-discovery (Team:DataDiscovery) |
lukasolson
approved these changes
Sep 20, 2023
Contributor
lukasolson
left a comment
There was a problem hiding this comment.
LGTM, thanks for the cleanup!
| it('should append default sort options', function () { | ||
| const defaultSortOptions = { | ||
| unmapped_type: 'boolean', | ||
| unmapped_type: 'boolean' as 'boolean', |
Contributor
There was a problem hiding this comment.
Nit: Export type FieldSortOptions and use it here to avoid casting:
const defaultSortOptions: FieldSortOptions = {
unmapped_type: 'boolean',
};
Contributor
Author
|
I am going to hold off merging this one until all Kibana TS problems have been sorted out. |
Contributor
Author
|
@elasticmachine merge upstream |
💛 Build succeeded, but was flaky
Failed CI StepsTest Failures
Metrics [docs]Public APIs missing comments
Unknown metric groupsAPI count
References to deprecated APIs
History
To update your PR or re-run it, just comment with: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Found duplicated type ShardFailure in data plugin. Same type removed from
src/plugins/data/public/shard_failure_modal/shard_failure_types.tsin #165512.This PR removes some unneeded types from
src/plugins/data/common/search/search_source/types.ts.