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-beta1 to 13.0.0-beta2

2

package.json

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

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

@@ -13,0 +13,0 @@ "elasticsearch",

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

# elasticsearch.js 13.0.0-beta1
# elasticsearch.js 13.0.0-beta2

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

@@ -258,3 +258,9 @@

if (!params.body && spec.paramAsBody) {
params.body = params[spec.paramAsBody];
if (typeof spec.paramAsBody === 'object') {
params.body = {};
params.body[spec.paramAsBody.body] = params[spec.paramAsBody.param];
} else {
params.body = params[spec.paramAsBody];
}
delete params[spec.paramAsBody];

@@ -261,0 +267,0 @@ }

@@ -63,2 +63,2 @@ /**

Json.prototype.bulkBody.contentType = 'application/x-ldjson';
Json.prototype.bulkBody.contentType = 'application/x-ndjson';

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