agrs-sequelize-sdk 1.2.52 → 1.2.54

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.
@@ -63,6 +63,16 @@ module.exports = (sequelize, DataTypes) => {
63
63
  type: DataTypes.STRING,
64
64
  allowNull: true,
65
65
  },
66
+ feedType: {
67
+ type: DataTypes.STRING,
68
+ allowNull: true,
69
+ comment: "Type of feed campaign",
70
+ },
71
+ Partner: {
72
+ type: DataTypes.STRING,
73
+ allowNull: true,
74
+ comment: "Partner associated with the campaign",
75
+ },
66
76
  AdTitle: {
67
77
  type: DataTypes.STRING,
68
78
  allowNull: true,
@@ -97,6 +97,11 @@ module.exports = (sequelize, DataTypes) => {
97
97
  allowNull: true,
98
98
  defaultValue: "RSOC",
99
99
  },
100
+ feedType: {
101
+ type: DataTypes.STRING,
102
+ allowNull: true,
103
+ comment: "Type of feed campaign",
104
+ },
100
105
  adTitle: {
101
106
  type: DataTypes.STRING,
102
107
  allowNull: true,
@@ -155,6 +160,11 @@ module.exports = (sequelize, DataTypes) => {
155
160
  type: DataTypes.STRING,
156
161
  allowNull: true,
157
162
  },
163
+ Partner: {
164
+ type: DataTypes.STRING,
165
+ allowNull: true,
166
+ comment: "Partner associated with the campaign",
167
+ },
158
168
  language: {
159
169
  type: DataTypes.STRING,
160
170
  allowNull: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agrs-sequelize-sdk",
3
- "version": "1.2.52",
3
+ "version": "1.2.54",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "start": "node index.js",