agrs-sequelize-sdk 1.1.42 → 1.1.43

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/Channel.js CHANGED
@@ -10,20 +10,17 @@ module.exports = (sequelize, DataTypes) => {
10
10
  channelId: {
11
11
  type: DataTypes.STRING(255), // הגדרה מפורשת של VARCHAR(255)
12
12
  allowNull: false,
13
- unique: true, // חזרה להגדרת unique בשדה עצמו
14
- comment: "Channel ID (e.g., ch123+ch456)",
13
+ unique: true, // הגדרת unique בשדה
15
14
  },
16
15
  styleId: {
17
16
  type: DataTypes.STRING,
18
17
  allowNull: true,
19
18
  defaultValue: "3544685732",
20
- comment: "Style ID (stid)",
21
19
  },
22
20
  connectedCampaigns: {
23
21
  type: DataTypes.JSON,
24
22
  allowNull: true,
25
23
  defaultValue: [],
26
- comment: "List of connected campaign AGRS_CID values",
27
24
  },
28
25
  createdAt: {
29
26
  type: DataTypes.DATE,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agrs-sequelize-sdk",
3
- "version": "1.1.42",
3
+ "version": "1.1.43",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "start": "node index.js",