agrs-sequelize-sdk 1.3.88 → 1.3.89

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/models/Article.js CHANGED
@@ -65,6 +65,11 @@ module.exports = (sequelize, DataTypes) => {
65
65
  type: DataTypes.STRING,
66
66
  allowNull: true,
67
67
  },
68
+ predictoKeyword: {
69
+ type: DataTypes.STRING,
70
+ allowNull: true,
71
+ comment: "Exact keyword sent to Predicto (with suffix for uniqueness). Used for search= URL param.",
72
+ },
68
73
  keywords: {
69
74
  type: DataTypes.ARRAY(DataTypes.STRING),
70
75
  allowNull: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agrs-sequelize-sdk",
3
- "version": "1.3.88",
3
+ "version": "1.3.89",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "start": "node index.js",