agrs-sequelize-sdk 1.2.16 → 1.2.17

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.
@@ -68,23 +68,24 @@ module.exports = (sequelize, DataTypes) => {
68
68
  MainKeyword: {
69
69
  type: DataTypes.STRING,
70
70
  allowNull: true,
71
- comment: "Primary/main keyword for the campaign, typically the first keyword from Predicto custom_query",
71
+ comment:
72
+ "Primary/main keyword for the campaign, typically the first keyword from Predicto custom_query",
72
73
  },
73
74
  link: {
74
- type: DataTypes.STRING(1024),
75
+ type: DataTypes.TEXT,
75
76
  allowNull: true,
76
77
  comment: "Campaign-specific URL based on article URL with parameters",
77
78
  },
78
79
  redirectLink: {
79
- type: DataTypes.STRING(1024),
80
+ type: DataTypes.TEXT,
80
81
  allowNull: true,
81
82
  },
82
83
  pixelId: {
83
- type: DataTypes.STRING(1024),
84
+ type: DataTypes.TEXT,
84
85
  allowNull: true,
85
86
  },
86
87
  token: {
87
- type: DataTypes.STRING(1024),
88
+ type: DataTypes.TEXT,
88
89
  allowNull: true,
89
90
  },
90
91
  accountId: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agrs-sequelize-sdk",
3
- "version": "1.2.16",
3
+ "version": "1.2.17",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "start": "node index.js",