agrs-sequelize-sdk 1.0.65 → 1.0.67

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/Ad.js CHANGED
@@ -103,6 +103,16 @@ module.exports = (sequelize, DataTypes) => {
103
103
  type: DataTypes.STRING,
104
104
  allowNull: true,
105
105
  },
106
+ // add issues_info field
107
+ issuesInfo: {
108
+ type: DataTypes.JSONB,
109
+ allowNull: true,
110
+ },
111
+ // add ad_review_feedback
112
+ adReviewFeedback: {
113
+ type: DataTypes.JSONB,
114
+ allowNull: true,
115
+ },
106
116
  },
107
117
  {
108
118
  tableName: "Ad",
package/models/AdSet.js CHANGED
@@ -70,6 +70,11 @@ module.exports = (sequelize, DataTypes) => {
70
70
  type: DataTypes.STRING,
71
71
  allowNull: true,
72
72
  },
73
+ // add issues_info field
74
+ issuesInfo: {
75
+ type: DataTypes.JSONB,
76
+ allowNull: true,
77
+ },
73
78
  },
74
79
  {
75
80
  tableName: "AdSet",
@@ -70,6 +70,10 @@ module.exports = (sequelize, DataTypes) => {
70
70
  type: DataTypes.STRING,
71
71
  allowNull: true,
72
72
  },
73
+ issuesInfo: {
74
+ type: DataTypes.JSONB,
75
+ allowNull: true,
76
+ },
73
77
  },
74
78
  {
75
79
  tableName: "Campaign",
package/models/Pages.js CHANGED
@@ -16,6 +16,10 @@ module.exports = (sequelize, DataTypes) => {
16
16
  allowNull: false,
17
17
  unique: true,
18
18
  },
19
+ link: {
20
+ type: DataTypes.STRING,
21
+ allowNull: true,
22
+ },
19
23
  feedProvider: {
20
24
  type: DataTypes.ARRAY(DataTypes.STRING),
21
25
  allowNull: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agrs-sequelize-sdk",
3
- "version": "1.0.65",
3
+ "version": "1.0.67",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "start": "node index.js",