Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

elasticsearch

Package Overview
Dependencies
Maintainers
3
Versions
128
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

elasticsearch - npm Package Compare versions

Comparing version 13.0.0 to 13.0.1

src/lib/apis/5_4.js

3

package.json

@@ -10,3 +10,3 @@ {

"homepage": "http://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/index.html",
"version": "13.0.0",
"version": "13.0.1",
"keywords": [

@@ -39,2 +39,3 @@ "elasticsearch",

"5.x",
"5.4",
"master"

@@ -41,0 +42,0 @@ ]

@@ -1,2 +0,2 @@

# elasticsearch.js 13.0.0
# elasticsearch.js 13.0.1

@@ -3,0 +3,0 @@ The official low-level Elasticsearch client for Node.js and the browser.

@@ -9,3 +9,4 @@ module.exports = {

'5.x': require('./5_x'),
'5.4': require('./5_4'),
'master': require('./master')
};

@@ -11,3 +11,4 @@ module.exports = {

get '5.x'() { return require('./5_x'); },
get '5.4'() { return require('./5_4'); },
get 'master'() { return require('./master'); },
};

@@ -260,3 +260,7 @@

params.body = {};
params.body[spec.paramAsBody.body] = params[spec.paramAsBody.param];
if (spec.paramAsBody.castToArray) {
params.body[spec.paramAsBody.body] = [].concat(params[spec.paramAsBody.param]);
} else {
params.body[spec.paramAsBody.body] = params[spec.paramAsBody.param];
}
delete params[spec.paramAsBody.param];

@@ -263,0 +267,0 @@ } else {

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc