agrs-sequelize-sdk 1.2.7 → 1.2.9

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.
@@ -44,6 +44,11 @@ module.exports = (sequelize, DataTypes) => {
44
44
  type: DataTypes.STRING,
45
45
  allowNull: false,
46
46
  },
47
+ language: {
48
+ type: DataTypes.STRING,
49
+ allowNull: true,
50
+ comment: "Language code for the campaign",
51
+ },
47
52
  vertical: {
48
53
  type: DataTypes.STRING,
49
54
  allowNull: false,
@@ -132,6 +132,11 @@ module.exports = (sequelize, DataTypes) => {
132
132
  type: DataTypes.STRING,
133
133
  allowNull: true,
134
134
  },
135
+ language: {
136
+ type: DataTypes.STRING,
137
+ allowNull: true,
138
+ comment: "Language code for the campaign",
139
+ },
135
140
  },
136
141
  {
137
142
  tableName: "rsoc_feed_campaigns",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agrs-sequelize-sdk",
3
- "version": "1.2.7",
3
+ "version": "1.2.9",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "start": "node index.js",