Skip to content

Commit 76c6a83

Browse files
committed
version 14.2.2
1 parent fcdf1ee commit 76c6a83

8 files changed

+28
-82
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "elasticsearch",
3-
"version": "14.2.1",
3+
"version": "14.2.2",
44
"authors": [
55
"Spencer Alger <spencer@spenceralger.com>"
66
],

elasticsearch.angular.js

Lines changed: 4 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! elasticsearch - v14.2.1 - 2018-03-16
1+
/*! elasticsearch - v14.2.2 - 2018-03-29
22
* http://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/index.html
33
* Copyright (c) 2018 Elasticsearch BV; Licensed Apache-2.0 */
44

@@ -51443,15 +51443,14 @@ api.indices.prototype.analyze = ca({
5144351443
* Perform a [indices.clearCache](https://www.elastic.co/guide/en/elasticsearch/reference/6.x/indices-clearcache.html) request
5144451444
*
5144551445
* @param {Object} params - An object with parameters used to carry out this action
51446-
* @param {<<api-param-type-boolean,`Boolean`>>} params.fieldData - Clear field data
51446+
* @param {<<api-param-type-boolean,`Boolean`>>} params.fieldData - Clear field data. This is deprecated. Prefer `fielddata`.
5144751447
* @param {<<api-param-type-boolean,`Boolean`>>} params.fielddata - Clear field data
51448-
* @param {<<api-param-type-string,`String`>>, <<api-param-type-string-array,`String[]`>>, <<api-param-type-boolean,`Boolean`>>} params.fields - A comma-separated list of fields to clear when using the `field_data` parameter (default: all)
51448+
* @param {<<api-param-type-string,`String`>>, <<api-param-type-string-array,`String[]`>>, <<api-param-type-boolean,`Boolean`>>} params.fields - A comma-separated list of fields to clear when using the `fielddata` parameter (default: all)
5144951449
* @param {<<api-param-type-boolean,`Boolean`>>} params.query - Clear query caches
5145051450
* @param {<<api-param-type-boolean,`Boolean`>>} params.ignoreUnavailable - Whether specified concrete indices should be ignored when unavailable (missing or closed)
5145151451
* @param {<<api-param-type-boolean,`Boolean`>>} params.allowNoIndices - Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)
5145251452
* @param {<<api-param-type-string,`String`>>} [params.expandWildcards=open] - Whether to expand wildcard expression to concrete indices that are open, closed or both.
5145351453
* @param {<<api-param-type-string,`String`>>, <<api-param-type-string-array,`String[]`>>, <<api-param-type-boolean,`Boolean`>>} params.index - A comma-separated list of index name to limit the operation
51454-
* @param {<<api-param-type-boolean,`Boolean`>>} params.recycler - Clear the recycler cache
5145551454
* @param {<<api-param-type-boolean,`Boolean`>>} params.requestCache - Clear request cache
5145651455
* @param {<<api-param-type-boolean,`Boolean`>>} params.request - Clear request cache
5145751456
*/
@@ -51488,9 +51487,6 @@ api.indices.prototype.clearCache = ca({
5148851487
index: {
5148951488
type: 'list'
5149051489
},
51491-
recycler: {
51492-
type: 'boolean'
51493-
},
5149451490
requestCache: {
5149551491
type: 'boolean',
5149651492
name: 'request_cache'
@@ -57685,25 +57681,18 @@ api.indices.prototype.analyze = ca({
5768557681
* Perform a [indices.clearCache](https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-clearcache.html) request
5768657682
*
5768757683
* @param {Object} params - An object with parameters used to carry out this action
57688-
* @param {<<api-param-type-boolean,`Boolean`>>} params.fieldData - Clear field data
5768957684
* @param {<<api-param-type-boolean,`Boolean`>>} params.fielddata - Clear field data
57690-
* @param {<<api-param-type-string,`String`>>, <<api-param-type-string-array,`String[]`>>, <<api-param-type-boolean,`Boolean`>>} params.fields - A comma-separated list of fields to clear when using the `field_data` parameter (default: all)
57685+
* @param {<<api-param-type-string,`String`>>, <<api-param-type-string-array,`String[]`>>, <<api-param-type-boolean,`Boolean`>>} params.fields - A comma-separated list of fields to clear when using the `fielddata` parameter (default: all)
5769157686
* @param {<<api-param-type-boolean,`Boolean`>>} params.query - Clear query caches
5769257687
* @param {<<api-param-type-boolean,`Boolean`>>} params.ignoreUnavailable - Whether specified concrete indices should be ignored when unavailable (missing or closed)
5769357688
* @param {<<api-param-type-boolean,`Boolean`>>} params.allowNoIndices - Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)
5769457689
* @param {<<api-param-type-string,`String`>>} [params.expandWildcards=open] - Whether to expand wildcard expression to concrete indices that are open, closed or both.
5769557690
* @param {<<api-param-type-string,`String`>>, <<api-param-type-string-array,`String[]`>>, <<api-param-type-boolean,`Boolean`>>} params.index - A comma-separated list of index name to limit the operation
57696-
* @param {<<api-param-type-boolean,`Boolean`>>} params.recycler - Clear the recycler cache
57697-
* @param {<<api-param-type-boolean,`Boolean`>>} params.requestCache - Clear request cache
5769857691
* @param {<<api-param-type-boolean,`Boolean`>>} params.request - Clear request cache
5769957692
*/
5770057693

5770157694
api.indices.prototype.clearCache = ca({
5770257695
params: {
57703-
fieldData: {
57704-
type: 'boolean',
57705-
name: 'field_data'
57706-
},
5770757696
fielddata: {
5770857697
type: 'boolean'
5770957698
},
@@ -57730,13 +57719,6 @@ api.indices.prototype.clearCache = ca({
5773057719
index: {
5773157720
type: 'list'
5773257721
},
57733-
recycler: {
57734-
type: 'boolean'
57735-
},
57736-
requestCache: {
57737-
type: 'boolean',
57738-
name: 'request_cache'
57739-
},
5774057722
request: {
5774157723
type: 'boolean'
5774257724
}

elasticsearch.angular.min.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

elasticsearch.jquery.js

Lines changed: 4 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! elasticsearch - v14.2.1 - 2018-03-16
1+
/*! elasticsearch - v14.2.2 - 2018-03-29
22
* http://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/index.html
33
* Copyright (c) 2018 Elasticsearch BV; Licensed Apache-2.0 */
44

@@ -51452,15 +51452,14 @@ api.indices.prototype.analyze = ca({
5145251452
* Perform a [indices.clearCache](https://www.elastic.co/guide/en/elasticsearch/reference/6.x/indices-clearcache.html) request
5145351453
*
5145451454
* @param {Object} params - An object with parameters used to carry out this action
51455-
* @param {<<api-param-type-boolean,`Boolean`>>} params.fieldData - Clear field data
51455+
* @param {<<api-param-type-boolean,`Boolean`>>} params.fieldData - Clear field data. This is deprecated. Prefer `fielddata`.
5145651456
* @param {<<api-param-type-boolean,`Boolean`>>} params.fielddata - Clear field data
51457-
* @param {<<api-param-type-string,`String`>>, <<api-param-type-string-array,`String[]`>>, <<api-param-type-boolean,`Boolean`>>} params.fields - A comma-separated list of fields to clear when using the `field_data` parameter (default: all)
51457+
* @param {<<api-param-type-string,`String`>>, <<api-param-type-string-array,`String[]`>>, <<api-param-type-boolean,`Boolean`>>} params.fields - A comma-separated list of fields to clear when using the `fielddata` parameter (default: all)
5145851458
* @param {<<api-param-type-boolean,`Boolean`>>} params.query - Clear query caches
5145951459
* @param {<<api-param-type-boolean,`Boolean`>>} params.ignoreUnavailable - Whether specified concrete indices should be ignored when unavailable (missing or closed)
5146051460
* @param {<<api-param-type-boolean,`Boolean`>>} params.allowNoIndices - Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)
5146151461
* @param {<<api-param-type-string,`String`>>} [params.expandWildcards=open] - Whether to expand wildcard expression to concrete indices that are open, closed or both.
5146251462
* @param {<<api-param-type-string,`String`>>, <<api-param-type-string-array,`String[]`>>, <<api-param-type-boolean,`Boolean`>>} params.index - A comma-separated list of index name to limit the operation
51463-
* @param {<<api-param-type-boolean,`Boolean`>>} params.recycler - Clear the recycler cache
5146451463
* @param {<<api-param-type-boolean,`Boolean`>>} params.requestCache - Clear request cache
5146551464
* @param {<<api-param-type-boolean,`Boolean`>>} params.request - Clear request cache
5146651465
*/
@@ -51497,9 +51496,6 @@ api.indices.prototype.clearCache = ca({
5149751496
index: {
5149851497
type: 'list'
5149951498
},
51500-
recycler: {
51501-
type: 'boolean'
51502-
},
5150351499
requestCache: {
5150451500
type: 'boolean',
5150551501
name: 'request_cache'
@@ -57694,25 +57690,18 @@ api.indices.prototype.analyze = ca({
5769457690
* Perform a [indices.clearCache](https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-clearcache.html) request
5769557691
*
5769657692
* @param {Object} params - An object with parameters used to carry out this action
57697-
* @param {<<api-param-type-boolean,`Boolean`>>} params.fieldData - Clear field data
5769857693
* @param {<<api-param-type-boolean,`Boolean`>>} params.fielddata - Clear field data
57699-
* @param {<<api-param-type-string,`String`>>, <<api-param-type-string-array,`String[]`>>, <<api-param-type-boolean,`Boolean`>>} params.fields - A comma-separated list of fields to clear when using the `field_data` parameter (default: all)
57694+
* @param {<<api-param-type-string,`String`>>, <<api-param-type-string-array,`String[]`>>, <<api-param-type-boolean,`Boolean`>>} params.fields - A comma-separated list of fields to clear when using the `fielddata` parameter (default: all)
5770057695
* @param {<<api-param-type-boolean,`Boolean`>>} params.query - Clear query caches
5770157696
* @param {<<api-param-type-boolean,`Boolean`>>} params.ignoreUnavailable - Whether specified concrete indices should be ignored when unavailable (missing or closed)
5770257697
* @param {<<api-param-type-boolean,`Boolean`>>} params.allowNoIndices - Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)
5770357698
* @param {<<api-param-type-string,`String`>>} [params.expandWildcards=open] - Whether to expand wildcard expression to concrete indices that are open, closed or both.
5770457699
* @param {<<api-param-type-string,`String`>>, <<api-param-type-string-array,`String[]`>>, <<api-param-type-boolean,`Boolean`>>} params.index - A comma-separated list of index name to limit the operation
57705-
* @param {<<api-param-type-boolean,`Boolean`>>} params.recycler - Clear the recycler cache
57706-
* @param {<<api-param-type-boolean,`Boolean`>>} params.requestCache - Clear request cache
5770757700
* @param {<<api-param-type-boolean,`Boolean`>>} params.request - Clear request cache
5770857701
*/
5770957702

5771057703
api.indices.prototype.clearCache = ca({
5771157704
params: {
57712-
fieldData: {
57713-
type: 'boolean',
57714-
name: 'field_data'
57715-
},
5771657705
fielddata: {
5771757706
type: 'boolean'
5771857707
},
@@ -57739,13 +57728,6 @@ api.indices.prototype.clearCache = ca({
5773957728
index: {
5774057729
type: 'list'
5774157730
},
57742-
recycler: {
57743-
type: 'boolean'
57744-
},
57745-
requestCache: {
57746-
type: 'boolean',
57747-
name: 'request_cache'
57748-
},
5774957731
request: {
5775057732
type: 'boolean'
5775157733
}

elasticsearch.jquery.min.js

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

elasticsearch.js

Lines changed: 4 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! elasticsearch - v14.2.1 - 2018-03-16
1+
/*! elasticsearch - v14.2.2 - 2018-03-29
22
* http://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/index.html
33
* Copyright (c) 2018 Elasticsearch BV; Licensed Apache-2.0 */
44

@@ -51468,15 +51468,14 @@ api.indices.prototype.analyze = ca({
5146851468
* Perform a [indices.clearCache](https://www.elastic.co/guide/en/elasticsearch/reference/6.x/indices-clearcache.html) request
5146951469
*
5147051470
* @param {Object} params - An object with parameters used to carry out this action
51471-
* @param {<<api-param-type-boolean,`Boolean`>>} params.fieldData - Clear field data
51471+
* @param {<<api-param-type-boolean,`Boolean`>>} params.fieldData - Clear field data. This is deprecated. Prefer `fielddata`.
5147251472
* @param {<<api-param-type-boolean,`Boolean`>>} params.fielddata - Clear field data
51473-
* @param {<<api-param-type-string,`String`>>, <<api-param-type-string-array,`String[]`>>, <<api-param-type-boolean,`Boolean`>>} params.fields - A comma-separated list of fields to clear when using the `field_data` parameter (default: all)
51473+
* @param {<<api-param-type-string,`String`>>, <<api-param-type-string-array,`String[]`>>, <<api-param-type-boolean,`Boolean`>>} params.fields - A comma-separated list of fields to clear when using the `fielddata` parameter (default: all)
5147451474
* @param {<<api-param-type-boolean,`Boolean`>>} params.query - Clear query caches
5147551475
* @param {<<api-param-type-boolean,`Boolean`>>} params.ignoreUnavailable - Whether specified concrete indices should be ignored when unavailable (missing or closed)
5147651476
* @param {<<api-param-type-boolean,`Boolean`>>} params.allowNoIndices - Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)
5147751477
* @param {<<api-param-type-string,`String`>>} [params.expandWildcards=open] - Whether to expand wildcard expression to concrete indices that are open, closed or both.
5147851478
* @param {<<api-param-type-string,`String`>>, <<api-param-type-string-array,`String[]`>>, <<api-param-type-boolean,`Boolean`>>} params.index - A comma-separated list of index name to limit the operation
51479-
* @param {<<api-param-type-boolean,`Boolean`>>} params.recycler - Clear the recycler cache
5148051479
* @param {<<api-param-type-boolean,`Boolean`>>} params.requestCache - Clear request cache
5148151480
* @param {<<api-param-type-boolean,`Boolean`>>} params.request - Clear request cache
5148251481
*/
@@ -51513,9 +51512,6 @@ api.indices.prototype.clearCache = ca({
5151351512
index: {
5151451513
type: 'list'
5151551514
},
51516-
recycler: {
51517-
type: 'boolean'
51518-
},
5151951515
requestCache: {
5152051516
type: 'boolean',
5152151517
name: 'request_cache'
@@ -57710,25 +57706,18 @@ api.indices.prototype.analyze = ca({
5771057706
* Perform a [indices.clearCache](https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-clearcache.html) request
5771157707
*
5771257708
* @param {Object} params - An object with parameters used to carry out this action
57713-
* @param {<<api-param-type-boolean,`Boolean`>>} params.fieldData - Clear field data
5771457709
* @param {<<api-param-type-boolean,`Boolean`>>} params.fielddata - Clear field data
57715-
* @param {<<api-param-type-string,`String`>>, <<api-param-type-string-array,`String[]`>>, <<api-param-type-boolean,`Boolean`>>} params.fields - A comma-separated list of fields to clear when using the `field_data` parameter (default: all)
57710+
* @param {<<api-param-type-string,`String`>>, <<api-param-type-string-array,`String[]`>>, <<api-param-type-boolean,`Boolean`>>} params.fields - A comma-separated list of fields to clear when using the `fielddata` parameter (default: all)
5771657711
* @param {<<api-param-type-boolean,`Boolean`>>} params.query - Clear query caches
5771757712
* @param {<<api-param-type-boolean,`Boolean`>>} params.ignoreUnavailable - Whether specified concrete indices should be ignored when unavailable (missing or closed)
5771857713
* @param {<<api-param-type-boolean,`Boolean`>>} params.allowNoIndices - Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)
5771957714
* @param {<<api-param-type-string,`String`>>} [params.expandWildcards=open] - Whether to expand wildcard expression to concrete indices that are open, closed or both.
5772057715
* @param {<<api-param-type-string,`String`>>, <<api-param-type-string-array,`String[]`>>, <<api-param-type-boolean,`Boolean`>>} params.index - A comma-separated list of index name to limit the operation
57721-
* @param {<<api-param-type-boolean,`Boolean`>>} params.recycler - Clear the recycler cache
57722-
* @param {<<api-param-type-boolean,`Boolean`>>} params.requestCache - Clear request cache
5772357716
* @param {<<api-param-type-boolean,`Boolean`>>} params.request - Clear request cache
5772457717
*/
5772557718

5772657719
api.indices.prototype.clearCache = ca({
5772757720
params: {
57728-
fieldData: {
57729-
type: 'boolean',
57730-
name: 'field_data'
57731-
},
5773257721
fielddata: {
5773357722
type: 'boolean'
5773457723
},
@@ -57755,13 +57744,6 @@ api.indices.prototype.clearCache = ca({
5775557744
index: {
5775657745
type: 'list'
5775757746
},
57758-
recycler: {
57759-
type: 'boolean'
57760-
},
57761-
requestCache: {
57762-
type: 'boolean',
57763-
name: 'request_cache'
57764-
},
5776557747
request: {
5776657748
type: 'boolean'
5776757749
}

elasticsearch.min.js

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "elasticsearch-browser",
3-
"version": "14.2.1",
3+
"version": "14.2.2",
44
"description": "The official low-level Elasticsearch client, for use in the browser.",
55
"main": "elasticsearch.js",
66
"scripts": {

0 commit comments

Comments
 (0)