Socket
Socket
Sign inDemoInstall

ozone-search-helper

Package Overview
Dependencies
Maintainers
8
Versions
113
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ozone-search-helper - npm Package Compare versions

Comparing version 5.9.2 to 6.0.0

bower_components/accessibility-developer-tools/.bower.json

6

dist/ozone-search-helper.d.ts

@@ -64,6 +64,2 @@ /**

get searchRequest(): SearchRequest;
get size(): number;
set size(size: number);
get offset(): number;
set offset(size: number);
/**

@@ -157,3 +153,3 @@ * create boolQuery mustClauses.

* Search inside a tenant
* @param {Mode} mode
* @param {ModeType} mode
* @param {string} tenantId

@@ -160,0 +156,0 @@ * @return {SearchQuery}

@@ -66,6 +66,2 @@ /**

get searchRequest() { return this._searchRequest; }
get size() { return this._searchRequest.size || 0; }
set size(size) { this._searchRequest.size = size; }
get offset() { return this._searchRequest.offset || 0; }
set offset(size) { this._searchRequest.offset = size; }
/**

@@ -99,3 +95,3 @@ * create boolQuery mustClauses.

setSize(size) {
this.size = size;
this._searchRequest.size = size;
return this;

@@ -110,3 +106,3 @@ }

setOffset(offset) {
this.offset = offset;
this._searchRequest.offset = offset;
return this;

@@ -230,3 +226,3 @@ }

* Search inside a tenant
* @param {Mode} mode
* @param {ModeType} mode
* @param {string} tenantId

@@ -250,3 +246,3 @@ * @return {SearchQuery}

suggestion(searchString, lastTerm = '', size) {
const suggestSize = size || this.size;
const suggestSize = size || this._searchRequest.size;
this._searchRequest.aggregations = [{

@@ -253,0 +249,0 @@ '$type': 'TermsAggregation',

{
"name": "ozone-search-helper",
"version": "5.9.2",
"version": "6.0.0",
"publishConfig": {

@@ -26,5 +26,5 @@ "access": "public"

"devDependencies": {
"ozone-type": "^5.9.2"
"ozone-type": "^6.0.0"
},
"gitHead": "2149ba1c9dac6270f63c0c2bc6bea97fc1e341fb"
"gitHead": "1c98ef43283bbd0b01a06b4c36cbdf9fa2a47ef6"
}
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