agrs-sequelize-sdk 1.2.53 → 1.2.55

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.
@@ -78,6 +78,16 @@ module.exports = (sequelize, DataTypes) => {
78
78
  type: DataTypes.BOOLEAN,
79
79
  defaultValue: false,
80
80
  },
81
+ policy_status: {
82
+ type: DataTypes.STRING,
83
+ allowNull: true,
84
+ comment: "Facebook policy status: APPROVED, DENIED, PENDING, etc."
85
+ },
86
+ policy_rejection_reason: {
87
+ type: DataTypes.TEXT,
88
+ allowNull: true,
89
+ comment: "Detailed reason for policy rejection"
90
+ },
81
91
  },
82
92
  {
83
93
  tableName: "Campaign",
@@ -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,
@@ -160,6 +160,11 @@ module.exports = (sequelize, DataTypes) => {
160
160
  type: DataTypes.STRING,
161
161
  allowNull: true,
162
162
  },
163
+ Partner: {
164
+ type: DataTypes.STRING,
165
+ allowNull: true,
166
+ comment: "Partner associated with the campaign",
167
+ },
163
168
  language: {
164
169
  type: DataTypes.STRING,
165
170
  allowNull: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agrs-sequelize-sdk",
3
- "version": "1.2.53",
3
+ "version": "1.2.55",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "start": "node index.js",