sequelize-search-builder
Advanced tools
Comparing version 0.6.5 to 0.7.0
@@ -0,0 +0,0 @@ module.exports = { |
@@ -0,0 +0,0 @@ /*! |
{ | ||
"name": "sequelize-search-builder", | ||
"description": "Minimalist library for parsing search request to sequelize query", | ||
"version": "0.6.5", | ||
"version": "0.7.0", | ||
"author": "Sergey Mukhin (segemun) <sergeymukhin21@gmail.com>", | ||
@@ -6,0 +6,0 @@ "main": "index.js", |
@@ -143,2 +143,3 @@ # Sequelize Search Builder | ||
| regexp | Sequelize.Op.regexp | Regexp (MySQL and PG only) | ||
| notRegexp | Sequelize.Op.notRegexp | Not Regexp (MySQL and PG only) | ||
@@ -145,0 +146,0 @@ ## Configuration |
@@ -0,0 +0,0 @@ const rc = require('rc'); |
@@ -0,0 +0,0 @@ const rc = require('rc'); |
@@ -0,0 +0,0 @@ const BuilderAbstract = require('./builder-abstract'); |
const BuilderAbstract = require('./builder-abstract'); | ||
const helper = require('./helper'); | ||
const allowedConditions = ['gt', 'gte', 'lt', 'lte', 'ne', 'like', 'notLike', 'iLike', 'notILike', 'regexp']; | ||
const allowedConditions = ['gt', 'gte', 'lt', 'lte', 'ne', 'like', 'notLike', 'iLike', 'notILike', 'regexp', 'notRegexp']; | ||
const allowedConditionsArray = ['between', 'notBetween', 'in', 'notIn']; | ||
@@ -6,0 +6,0 @@ |
Sorry, the diff of this file is not supported yet
13506
183