Commit 29dfd74 1 parent 4e615f3 commit 29dfd74 Copy full SHA for 29dfd74
File tree 2 files changed +5
-1
lines changed
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
12
12
- Bumps ` @babel/eslint-parser ` from 7.23.3 to 7.23.10
13
13
- Bumps ` semver ` from 7.5.1 to 7.6.0
14
14
### Changed
15
+ - Added ` search_pipeline `
15
16
### Deprecated
16
17
### Removed
17
18
### Fixed
@@ -227,4 +228,4 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
227
228
228
229
### Fixed
229
230
230
- - Fix mutability of connection headers ([ #291 ] ( https://github.com/opensearch-project/opensearch-js/issues/291 ) )
231
+ - Fix mutability of connection headers ([ #291 ] ( https://github.com/opensearch-project/opensearch-js/issues/291 ) )
Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ const acceptedQuerystring = [
54
54
'q' ,
55
55
'routing' ,
56
56
'scroll' ,
57
+ 'search_pipeline' ,
57
58
'search_type' ,
58
59
'size' ,
59
60
'sort' ,
@@ -97,6 +98,7 @@ const snakeCase = {
97
98
ignoreThrottled : 'ignore_throttled' ,
98
99
allowNoIndices : 'allow_no_indices' ,
99
100
expandWildcards : 'expand_wildcards' ,
101
+ searchPipeline : 'search_pipeline' ,
100
102
searchType : 'search_type' ,
101
103
_sourceExcludes : '_source_excludes' ,
102
104
_sourceExclude : '_source_exclude' ,
@@ -148,6 +150,7 @@ const snakeCase = {
148
150
* @param {string } [params.q] - Query in the Lucene query string syntax
149
151
* @param {string } [params.routing] - A comma-separated list of specific routing values
150
152
* @param {string } [params.scroll] - Specify how long a consistent view of the index should be maintained for scrolled search
153
+ * @param {string } [params.search_pipeline] - Customizable sequence of processing stages applied to search queries.
151
154
* @param {string } [params.search_type] - Search operation type (options: query_then_fetch, dfs_query_then_fetch)
152
155
* @param {number } [params.size] - Number of hits to return (default: 10)
153
156
* @param {string } [params.sort] - A comma-separated list of <field>:<direction> pairs
You can’t perform that action at this time.
0 commit comments