sequelize-search-builder
Advanced tools
Comparing version 0.7.0 to 0.8.0
{ | ||
"name": "sequelize-search-builder", | ||
"description": "Minimalist library for parsing search request to sequelize query", | ||
"version": "0.7.0", | ||
"version": "0.8.0", | ||
"author": "Sergey Mukhin (segemun) <sergeymukhin21@gmail.com>", | ||
@@ -6,0 +6,0 @@ "main": "index.js", |
@@ -144,2 +144,3 @@ # Sequelize Search Builder | ||
| notRegexp | Sequelize.Op.notRegexp | Not Regexp (MySQL and PG only) | ||
| iRegexp | Sequelize.Op.iRegexp | iRegexp (case insensitive) (PG only) | ||
@@ -146,0 +147,0 @@ ## Configuration |
const BuilderAbstract = require('./builder-abstract'); | ||
const helper = require('./helper'); | ||
const allowedConditions = ['gt', 'gte', 'lt', 'lte', 'ne', 'like', 'notLike', 'iLike', 'notILike', 'regexp', 'notRegexp']; | ||
const allowedConditions = ['gt', 'gte', 'lt', 'lte', 'ne', 'like', 'notLike', 'iLike', 'notILike', 'regexp', 'notRegexp', 'iRegexp']; | ||
const allowedConditionsArray = ['between', 'notBetween', 'in', 'notIn']; | ||
@@ -6,0 +6,0 @@ |
13599
184