agrs-sequelize-sdk 1.4.32 → 1.4.33
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/Pages.js +12 -0
- package/package.json +1 -1
package/models/Pages.js
CHANGED
|
@@ -95,6 +95,18 @@ module.exports = (sequelize, DataTypes) => {
|
|
|
95
95
|
defaultValue: "fb",
|
|
96
96
|
comment: "Ad platform identifier: fb=Facebook, tt=TikTok, snp=Snapchat",
|
|
97
97
|
},
|
|
98
|
+
identity_type: {
|
|
99
|
+
type: DataTypes.STRING(32),
|
|
100
|
+
allowNull: true,
|
|
101
|
+
comment:
|
|
102
|
+
"TikTok identity type (e.g. CUSTOMIZED_USER / BC_AUTH_TT) when platform='tt'. NULL for fb/snp.",
|
|
103
|
+
},
|
|
104
|
+
identity_authorized_bc_id: {
|
|
105
|
+
type: DataTypes.STRING(64),
|
|
106
|
+
allowNull: true,
|
|
107
|
+
comment:
|
|
108
|
+
"TikTok Business Center the identity is authorized to (platform='tt'). NULL for fb/snp.",
|
|
109
|
+
},
|
|
98
110
|
},
|
|
99
111
|
{
|
|
100
112
|
tableName: "Pages",
|