@giftwizard/db-models
Advanced tools
Comparing version 9.1.4 to 9.1.5
@@ -94,3 +94,3 @@ module.exports = (sequelizeConnection, DataTypes, Sequelize) => { | ||
platform_customer_id: { | ||
[Op.eq]: customerId ? toString(customerId) : customerId | ||
[Op.eq]: customerId ? customerId.toString() : customerId | ||
} | ||
@@ -236,3 +236,3 @@ }, | ||
platform_customer_id: { | ||
[Op.eq]: customerId ? toString(customerId) : customerId | ||
[Op.eq]: customerId ? customerId.toString() : customerId | ||
} | ||
@@ -239,0 +239,0 @@ } |
{ | ||
"name": "@giftwizard/db-models", | ||
"version": "9.1.4", | ||
"version": "9.1.5", | ||
"description": "Rise.ai package for 'sequelize' models used by several projects.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
88138