agrs-sequelize-sdk 1.3.89 → 1.3.91

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.
Files changed (2) hide show
  1. package/models/Pages.js +7 -0
  2. package/package.json +1 -1
package/models/Pages.js CHANGED
@@ -77,6 +77,13 @@ module.exports = (sequelize, DataTypes) => {
77
77
  comment:
78
78
  "Instagram User ID (Page-backed Instagram Account ID) for this page",
79
79
  },
80
+ promotion_eligible: {
81
+ type: DataTypes.BOOLEAN,
82
+ allowNull: true,
83
+ defaultValue: true,
84
+ comment:
85
+ "Whether this page is eligible for advertising (synced from Facebook promotion_eligible field)",
86
+ },
80
87
  // access_token: {
81
88
  // type: DataTypes.STRING,
82
89
  // allowNull: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agrs-sequelize-sdk",
3
- "version": "1.3.89",
3
+ "version": "1.3.91",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "start": "node index.js",