@winible/winible-typed 2.71.0 → 2.71.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@winible/winible-typed",
3
- "version": "2.71.0",
3
+ "version": "2.71.1",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -26,6 +26,8 @@ class AffiliateLinks extends Model<
26
26
  declare cta: string;
27
27
  declare affiliateCode: string;
28
28
  declare affiliateLink: string;
29
+ declare cpa: string;
30
+ declare description: string;
29
31
  declare createdAt: CreationOptional<Date>;
30
32
  declare updatedAt: CreationOptional<Date>;
31
33
  }
@@ -74,6 +76,16 @@ AffiliateLinks.init(
74
76
  allowNull: false,
75
77
  field: "affiliate_link",
76
78
  },
79
+ cpa: {
80
+ type: DataTypes.STRING,
81
+ allowNull: false,
82
+ field: "cpa",
83
+ },
84
+ description: {
85
+ type: DataTypes.STRING,
86
+ allowNull: false,
87
+ field: "description",
88
+ },
77
89
  createdAt: DataTypes.DATE,
78
90
  updatedAt: DataTypes.DATE,
79
91
  },