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

elastic-builder

Package Overview
Dependencies
Maintainers
1
Versions
77
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

elastic-builder - npm Package Compare versions

Comparing version 2.19.0 to 2.20.0

5

package.json
{
"name": "elastic-builder",
"version": "2.19.0",
"version": "2.20.0",
"description": "A JavaScript implementation of the elasticsearch Query DSL",

@@ -107,4 +107,5 @@ "main": "src/index.js",

"kennylindahl <haxxblaster@gmail.com>",
"foxstarius <aj.franzon@gmail.com>"
"foxstarius <aj.franzon@gmail.com>",
"sandeep952 <sandy335582@gmail.com>"
]
}

@@ -74,4 +74,18 @@ 'use strict';

}
/**
* Allows ASCII case insensitive matching of the value with the indexed
* field values when set to true.
*
* NOTE: Only available in Elasticsearch v7.10.0+
*
* @param {boolean} value
* @returns {ValueTermQueryBase} returns `this` so that calls can be chained.
*/
caseInsensitive(value = true) {
this._queryOpts.case_insensitive = value;
return this;
}
}
module.exports = ValueTermQueryBase;
src/index.d.ts

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