New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@bitovi/sequelize-querystring-parser

Package Overview
Dependencies
Maintainers
14
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bitovi/sequelize-querystring-parser - npm Package Compare versions

Comparing version

to
0.1.16

2

lib/parse-filter.js

@@ -16,3 +16,2 @@ const { Op } = require("sequelize");

LIKE: "LIKE",
ILIKE: "ILIKE",
IN: "IN",

@@ -34,3 +33,2 @@ NOT_IN: "NOT IN",

[Operator.LIKE]: Op.like,
[Operator.ILIKE]: Op.iLike,
[Operator.EQUALS]: Op.eq,

@@ -37,0 +35,0 @@ [Operator.NOT_EQUALS]: Op.ne,

4

package.json
{
"name": "@bitovi/sequelize-querystring-parser",
"version": "0.1.15",
"version": "0.1.16",
"description": "",

@@ -20,3 +20,3 @@ "main": "index.js",

"dependencies": {
"@bitovi/querystring-parser": "^0.6.13",
"@bitovi/querystring-parser": "^0.6.14",
"sequelize": "^6.21.2"

@@ -23,0 +23,0 @@ },

@@ -286,74 +286,30 @@ const { Op } = require("sequelize");

},
{
title:
"should parse strings correctly with the $like operator - end of string",
parameters: [{ LIKE: ["#name", "%ne"] }, []],
expectedResults: {
errors: [],
results: { where: { name: { [Op.like]: "%ne" } } },
},
},
{
title:
"should parse strings correctly with the $like operator - beginning of string",
parameters: [{ LIKE: ["#name", "%ne"] }, []],
expectedResults: {
errors: [],
results: { where: { name: { [Op.like]: "%ne" } } },
},
},
{
title:
"should parse strings correctly with the $like operator - contains string",
parameters: [{ LIKE: ["#name", "Jo%"] }, []],
expectedResults: {
errors: [],
results: { where: { name: { [Op.like]: "Jo%" } } },
},
},
{
title:
"should parse strings correctly with the $like operator - entire string",
parameters: [{ LIKE: ["#name", "%an%"] }, []],
expectedResults: {
errors: [],
results: { where: { name: { [Op.like]: "%an%" } } },
},
},
{
title:
"should parse strings correctly with the $ilike operator - end of string",
parameters: [{ ILIKE: ["#name", "%NE"] }, []],
expectedResults: {
errors: [],
results: { where: { name: { [Op.iLike]: "%NE" } } },
},
},
{
title:
"should parse strings correctly with the $ilike operator - beginning of string",
parameters: [{ ILIKE: ["#name", "JO%"] }, []],
expectedResults: {
errors: [],
results: { where: { name: { [Op.iLike]: "JO%" } } },
},
},
{
title:
"should parse strings correctly with the $ilike operator - contains string",
parameters: [{ ILIKE: ["#name", "%An%"] }, []],
expectedResults: {
errors: [],
results: { where: { name: { [Op.iLike]: "%An%" } } },
},
},
{
title:
"should parse strings correctly with the $ilike operator - contains string",
parameters: [{ ILIKE: ["#name", "jOhN"] }, []],
expectedResults: {
errors: [],
results: { where: { name: { [Op.iLike]: "jOhN" } } },
},
},
// TODO: resolve with HATCH-293. Skipped due to test failing
// {
// title:
// "should parse strings correctly with the $like operator - end of string (Mongo)",
// parameters: TODO,
// expectedResults: TODO
// },
// TODO: resolve with HATCH-293. Skipped due to test failing
// {
// title:
// "should parse strings correctly with the $like operator - beginning of string (Mongo)",
// parameters: TODO,
// expectedResults: TODO
// },
// TODO: resolve with HATCH-293. Skipped due to test failing
// {
// title:
// "should parse strings correctly with the $like operator - contains string (Mongo)",
// parameters: TODO,
// expectedResults: TODO
// },
// TODO: resolve with HATCH-293. Skipped due to test failing
// {
// title:
// "should parse strings correctly with the $like operator - entire string (Mongo)",
// parameters: TODO,
// expectedResults: TODO
// },
// numbers

@@ -360,0 +316,0 @@ {