agrs-sequelize-sdk 1.4.16 → 1.4.18
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/migrations/2026-05-17-PIXELS-FOLLOWUP.md +85 -0
- package/migrations/2026-05-17-add-platform-to-ad.js +19 -0
- package/migrations/2026-05-17-add-platform-to-adaccount.js +19 -0
- package/migrations/2026-05-17-add-platform-to-adperformance.js +19 -0
- package/migrations/2026-05-17-add-platform-to-adset.js +19 -0
- package/migrations/2026-05-17-add-platform-to-adsetperformance.js +19 -0
- package/migrations/2026-05-17-add-platform-to-aiarticleretryqueue.js +19 -0
- package/migrations/2026-05-17-add-platform-to-aicampaignqueue.js +19 -0
- package/migrations/2026-05-17-add-platform-to-article.js +19 -0
- package/migrations/2026-05-17-add-platform-to-campaign.js +19 -0
- package/migrations/2026-05-17-add-platform-to-codefuelcampaign.js +19 -0
- package/migrations/2026-05-17-add-platform-to-dynamicfeed.js +19 -0
- package/migrations/2026-05-17-add-platform-to-facebookretryqueue.js +19 -0
- package/migrations/2026-05-17-add-platform-to-pages.js +19 -0
- package/migrations/2026-05-17-add-platform-to-presets.js +19 -0
- package/migrations/RUN_ME_MANUALLY_2026-05-17.sql +99 -0
- package/migrations/add-requested-from-dashboard-to-articles.js +17 -17
- package/migrations/change-adset-name-to-text.js +79 -79
- package/models/AICampaignQueue.js +143 -136
- package/models/AIGenerationLog.js +85 -85
- package/models/AIGenerationRequest.js +212 -212
- package/models/Ad.js +6 -0
- package/models/AdAccount.js +6 -0
- package/models/AdAccountValues.js +25 -25
- package/models/AdHistory.js +30 -30
- package/models/AdPerformance.js +100 -94
- package/models/AdSet.js +295 -289
- package/models/AdSetHistory.js +30 -30
- package/models/AdsetPerformance.js +132 -126
- package/models/AiArticleRetryQueue.js +157 -150
- package/models/AiCreationRetryQueue.js +127 -127
- package/models/Article.js +212 -206
- package/models/AutomationRule.js +173 -173
- package/models/BannerTemplate.js +129 -129
- package/models/Buyers.js +25 -25
- package/models/Campaign.js +163 -157
- package/models/CampaignActionHistory.js +86 -86
- package/models/CampaignCreationLog.js +309 -309
- package/models/CampaignCreationLogV2.js +314 -314
- package/models/CampaignHistory.js +33 -33
- package/models/Channel.js +55 -55
- package/models/CodefuelCampaign.js +6 -0
- package/models/Domain.js +39 -47
- package/models/DynamicFeed.js +218 -212
- package/models/ExplorAdsChannel.js +61 -61
- package/models/FacebookRetryQueue.js +163 -156
- package/models/Feed.js +33 -33
- package/models/FeedArticleConfiguration.js +80 -80
- package/models/FrontStoryChannel.js +59 -59
- package/models/FrontStoryChannelV2.js +60 -60
- package/models/GenericFlowRequest.js +114 -114
- package/models/MidoWebChannel.js +47 -47
- package/models/MineChannel.js +42 -42
- package/models/Pages.js +105 -99
- package/models/PipelineExecution.js +59 -59
- package/models/PolicyDogsCreativeCache.js +50 -50
- package/models/PolicyDogsImageCache.js +30 -30
- package/models/Presets.js +40 -34
- package/models/RSOCFeedCampaign.js +375 -375
- package/models/RsocKeywordPerformance.js +110 -110
- package/models/RuleAction.js +90 -90
- package/models/RuleCondition.js +137 -137
- package/models/RuleExecution.js +107 -107
- package/models/RulesValues.js +56 -56
- package/models/SupportedLocale.js +23 -23
- package/models/SyncHistory.js +249 -249
- package/models/TTQChannel.js +42 -42
- package/models/TemplateMetadata.js +260 -260
- package/models/Tier2_AdAccounts.js +110 -110
- package/models/Tier2_Assets.js +70 -70
- package/models/Tier2_BusinessManagers.js +105 -105
- package/models/Tier2_CreditLines.js +99 -99
- package/models/Tier2_Pages.js +91 -91
- package/models/Tier2_Pixels.js +82 -82
- package/models/Tier2_Tokens.js +64 -64
- package/models/Tier2_UserAdAccounts.js +83 -83
- package/models/TokenRotationState.js +121 -121
- package/models/TonicRSOCKeywordPerformance.js +122 -122
- package/models/Users.js +148 -148
- package/models/Vertical.js +25 -25
- package/models/newFiles.js +137 -137
- package/package.json +19 -21
- package/run.sh +214 -214
- package/services/sequelizeService.js +110 -110
|
@@ -1,137 +1,144 @@
|
|
|
1
|
-
module.exports = (sequelize, DataTypes) => {
|
|
2
|
-
const AICampaignQueue = sequelize.define(
|
|
3
|
-
"AICampaignQueue",
|
|
4
|
-
{
|
|
5
|
-
id: {
|
|
6
|
-
type: DataTypes.INTEGER,
|
|
7
|
-
primaryKey: true,
|
|
8
|
-
autoIncrement: true,
|
|
9
|
-
},
|
|
10
|
-
article_id: {
|
|
11
|
-
type: DataTypes.STRING(255),
|
|
12
|
-
allowNull: false,
|
|
13
|
-
field: "article_id",
|
|
14
|
-
},
|
|
15
|
-
feed_provider: {
|
|
16
|
-
type: DataTypes.STRING(100),
|
|
17
|
-
allowNull: false,
|
|
18
|
-
field: "feed_provider",
|
|
19
|
-
},
|
|
20
|
-
payload: {
|
|
21
|
-
type: DataTypes.JSONB,
|
|
22
|
-
allowNull: false,
|
|
23
|
-
},
|
|
24
|
-
status: {
|
|
25
|
-
type: DataTypes.STRING(50),
|
|
26
|
-
allowNull: false,
|
|
27
|
-
defaultValue: "pending",
|
|
28
|
-
validate: {
|
|
29
|
-
isIn: [["pending", "queued", "processing", "completed", "failed"]],
|
|
30
|
-
},
|
|
31
|
-
},
|
|
32
|
-
created_at: {
|
|
33
|
-
type: DataTypes.DATE,
|
|
34
|
-
allowNull: false,
|
|
35
|
-
defaultValue: DataTypes.NOW,
|
|
36
|
-
field: "created_at",
|
|
37
|
-
},
|
|
38
|
-
processed_at: {
|
|
39
|
-
type: DataTypes.DATE,
|
|
40
|
-
allowNull: true,
|
|
41
|
-
field: "processed_at",
|
|
42
|
-
},
|
|
43
|
-
retry_count: {
|
|
44
|
-
type: DataTypes.INTEGER,
|
|
45
|
-
allowNull: false,
|
|
46
|
-
defaultValue: 0,
|
|
47
|
-
field: "retry_count",
|
|
48
|
-
},
|
|
49
|
-
error_message: {
|
|
50
|
-
type: DataTypes.TEXT,
|
|
51
|
-
allowNull: true,
|
|
52
|
-
field: "error_message",
|
|
53
|
-
},
|
|
54
|
-
facebook_campaign_id: {
|
|
55
|
-
type: DataTypes.STRING(255),
|
|
56
|
-
allowNull: true,
|
|
57
|
-
field: "facebook_campaign_id",
|
|
58
|
-
},
|
|
59
|
-
process_id: {
|
|
60
|
-
type: DataTypes.STRING(255),
|
|
61
|
-
allowNull: true,
|
|
62
|
-
field: "process_id",
|
|
63
|
-
},
|
|
64
|
-
creation_logs_process_id: {
|
|
65
|
-
type: DataTypes.UUID,
|
|
66
|
-
allowNull: true,
|
|
67
|
-
field: "creation_logs_process_id",
|
|
68
|
-
comment: "Process ID from CampaignCreationLogV2 (UUID)",
|
|
69
|
-
},
|
|
70
|
-
agrs_cid: {
|
|
71
|
-
type: DataTypes.STRING(255),
|
|
72
|
-
allowNull: true,
|
|
73
|
-
field: "agrs_cid",
|
|
74
|
-
comment: "AGRS Campaign ID",
|
|
75
|
-
},
|
|
76
|
-
preset_id: {
|
|
77
|
-
type: DataTypes.STRING(255),
|
|
78
|
-
allowNull: true,
|
|
79
|
-
field: "preset_id",
|
|
80
|
-
comment: "Preset ID",
|
|
81
|
-
},
|
|
82
|
-
article_creation_payload: {
|
|
83
|
-
type: DataTypes.JSONB,
|
|
84
|
-
allowNull: true,
|
|
85
|
-
field: "article_creation_payload",
|
|
86
|
-
comment: "Payload sent for article creation (Mine/Predicto/Mobitech specific parameters)",
|
|
87
|
-
},
|
|
88
|
-
original_payload: {
|
|
89
|
-
type: DataTypes.JSONB,
|
|
90
|
-
allowNull: true,
|
|
91
|
-
field: "original_payload",
|
|
92
|
-
comment: "Original createAICampaign request params for this campaign (preset, feed config, AI settings, combo values)",
|
|
93
|
-
},
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
1
|
+
module.exports = (sequelize, DataTypes) => {
|
|
2
|
+
const AICampaignQueue = sequelize.define(
|
|
3
|
+
"AICampaignQueue",
|
|
4
|
+
{
|
|
5
|
+
id: {
|
|
6
|
+
type: DataTypes.INTEGER,
|
|
7
|
+
primaryKey: true,
|
|
8
|
+
autoIncrement: true,
|
|
9
|
+
},
|
|
10
|
+
article_id: {
|
|
11
|
+
type: DataTypes.STRING(255),
|
|
12
|
+
allowNull: false,
|
|
13
|
+
field: "article_id",
|
|
14
|
+
},
|
|
15
|
+
feed_provider: {
|
|
16
|
+
type: DataTypes.STRING(100),
|
|
17
|
+
allowNull: false,
|
|
18
|
+
field: "feed_provider",
|
|
19
|
+
},
|
|
20
|
+
payload: {
|
|
21
|
+
type: DataTypes.JSONB,
|
|
22
|
+
allowNull: false,
|
|
23
|
+
},
|
|
24
|
+
status: {
|
|
25
|
+
type: DataTypes.STRING(50),
|
|
26
|
+
allowNull: false,
|
|
27
|
+
defaultValue: "pending",
|
|
28
|
+
validate: {
|
|
29
|
+
isIn: [["pending", "queued", "processing", "completed", "failed"]],
|
|
30
|
+
},
|
|
31
|
+
},
|
|
32
|
+
created_at: {
|
|
33
|
+
type: DataTypes.DATE,
|
|
34
|
+
allowNull: false,
|
|
35
|
+
defaultValue: DataTypes.NOW,
|
|
36
|
+
field: "created_at",
|
|
37
|
+
},
|
|
38
|
+
processed_at: {
|
|
39
|
+
type: DataTypes.DATE,
|
|
40
|
+
allowNull: true,
|
|
41
|
+
field: "processed_at",
|
|
42
|
+
},
|
|
43
|
+
retry_count: {
|
|
44
|
+
type: DataTypes.INTEGER,
|
|
45
|
+
allowNull: false,
|
|
46
|
+
defaultValue: 0,
|
|
47
|
+
field: "retry_count",
|
|
48
|
+
},
|
|
49
|
+
error_message: {
|
|
50
|
+
type: DataTypes.TEXT,
|
|
51
|
+
allowNull: true,
|
|
52
|
+
field: "error_message",
|
|
53
|
+
},
|
|
54
|
+
facebook_campaign_id: {
|
|
55
|
+
type: DataTypes.STRING(255),
|
|
56
|
+
allowNull: true,
|
|
57
|
+
field: "facebook_campaign_id",
|
|
58
|
+
},
|
|
59
|
+
process_id: {
|
|
60
|
+
type: DataTypes.STRING(255),
|
|
61
|
+
allowNull: true,
|
|
62
|
+
field: "process_id",
|
|
63
|
+
},
|
|
64
|
+
creation_logs_process_id: {
|
|
65
|
+
type: DataTypes.UUID,
|
|
66
|
+
allowNull: true,
|
|
67
|
+
field: "creation_logs_process_id",
|
|
68
|
+
comment: "Process ID from CampaignCreationLogV2 (UUID)",
|
|
69
|
+
},
|
|
70
|
+
agrs_cid: {
|
|
71
|
+
type: DataTypes.STRING(255),
|
|
72
|
+
allowNull: true,
|
|
73
|
+
field: "agrs_cid",
|
|
74
|
+
comment: "AGRS Campaign ID",
|
|
75
|
+
},
|
|
76
|
+
preset_id: {
|
|
77
|
+
type: DataTypes.STRING(255),
|
|
78
|
+
allowNull: true,
|
|
79
|
+
field: "preset_id",
|
|
80
|
+
comment: "Preset ID",
|
|
81
|
+
},
|
|
82
|
+
article_creation_payload: {
|
|
83
|
+
type: DataTypes.JSONB,
|
|
84
|
+
allowNull: true,
|
|
85
|
+
field: "article_creation_payload",
|
|
86
|
+
comment: "Payload sent for article creation (Mine/Predicto/Mobitech specific parameters)",
|
|
87
|
+
},
|
|
88
|
+
original_payload: {
|
|
89
|
+
type: DataTypes.JSONB,
|
|
90
|
+
allowNull: true,
|
|
91
|
+
field: "original_payload",
|
|
92
|
+
comment: "Original createAICampaign request params for this campaign (preset, feed config, AI settings, combo values)",
|
|
93
|
+
},
|
|
94
|
+
platform: {
|
|
95
|
+
type: DataTypes.ENUM("fb", "tt", "snp"),
|
|
96
|
+
allowNull: false,
|
|
97
|
+
defaultValue: "fb",
|
|
98
|
+
field: "platform",
|
|
99
|
+
comment: "Ad platform identifier: fb=Facebook, tt=TikTok, snp=Snapchat",
|
|
100
|
+
},
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
tableName: "ai_campaign_queue",
|
|
104
|
+
timestamps: false, // We manage created_at manually
|
|
105
|
+
indexes: [
|
|
106
|
+
{
|
|
107
|
+
fields: ["status"],
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
fields: ["article_id"],
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
fields: ["created_at"],
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
fields: ["feed_provider"],
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
fields: ["process_id"],
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
fields: ["creation_logs_process_id"],
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
fields: ["agrs_cid"],
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
fields: ["preset_id"],
|
|
129
|
+
},
|
|
130
|
+
],
|
|
131
|
+
}
|
|
132
|
+
);
|
|
133
|
+
|
|
134
|
+
AICampaignQueue.associate = (models) => {
|
|
135
|
+
// Optional: Add association to Article model if needed
|
|
136
|
+
// AICampaignQueue.belongsTo(models.Article, {
|
|
137
|
+
// foreignKey: "article_id",
|
|
138
|
+
// targetKey: "AGRSAID",
|
|
139
|
+
// as: "Article",
|
|
140
|
+
// });
|
|
141
|
+
};
|
|
142
|
+
|
|
143
|
+
return AICampaignQueue;
|
|
137
144
|
};
|
|
@@ -1,85 +1,85 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* AI Generation Log Model
|
|
3
|
-
*
|
|
4
|
-
* Stores detailed logs for each step of the generation process.
|
|
5
|
-
* Useful for debugging and monitoring.
|
|
6
|
-
*/
|
|
7
|
-
|
|
8
|
-
module.exports = (sequelize, DataTypes) => {
|
|
9
|
-
const AIGenerationLog = sequelize.define(
|
|
10
|
-
"AIGenerationLog",
|
|
11
|
-
{
|
|
12
|
-
id: {
|
|
13
|
-
type: DataTypes.UUID,
|
|
14
|
-
defaultValue: DataTypes.UUIDV4,
|
|
15
|
-
primaryKey: true,
|
|
16
|
-
},
|
|
17
|
-
requestId: {
|
|
18
|
-
type: DataTypes.STRING,
|
|
19
|
-
allowNull: false,
|
|
20
|
-
comment: "Reference to AIGenerationRequest.requestId",
|
|
21
|
-
indexes: [
|
|
22
|
-
{
|
|
23
|
-
fields: ["requestId"],
|
|
24
|
-
},
|
|
25
|
-
],
|
|
26
|
-
},
|
|
27
|
-
step: {
|
|
28
|
-
type: DataTypes.STRING,
|
|
29
|
-
allowNull: false,
|
|
30
|
-
comment:
|
|
31
|
-
"Step name: parsing, prompt_generation, image_generation, storage, logging",
|
|
32
|
-
},
|
|
33
|
-
level: {
|
|
34
|
-
type: DataTypes.ENUM("info", "warning", "error", "success"),
|
|
35
|
-
allowNull: false,
|
|
36
|
-
defaultValue: "info",
|
|
37
|
-
comment: "Log level",
|
|
38
|
-
},
|
|
39
|
-
message: {
|
|
40
|
-
type: DataTypes.TEXT,
|
|
41
|
-
allowNull: false,
|
|
42
|
-
comment: "Log message",
|
|
43
|
-
},
|
|
44
|
-
data: {
|
|
45
|
-
type: DataTypes.JSONB,
|
|
46
|
-
allowNull: true,
|
|
47
|
-
comment: "Additional log data (JSON)",
|
|
48
|
-
},
|
|
49
|
-
duration: {
|
|
50
|
-
type: DataTypes.INTEGER,
|
|
51
|
-
allowNull: true,
|
|
52
|
-
comment: "Step duration in milliseconds",
|
|
53
|
-
},
|
|
54
|
-
},
|
|
55
|
-
{
|
|
56
|
-
tableName: "ai_generation_logs",
|
|
57
|
-
timestamps: true,
|
|
58
|
-
createdAt: "createdAt",
|
|
59
|
-
updatedAt: false, // Logs are immutable
|
|
60
|
-
indexes: [
|
|
61
|
-
{
|
|
62
|
-
fields: ["requestId", "step"],
|
|
63
|
-
},
|
|
64
|
-
{
|
|
65
|
-
fields: ["level"],
|
|
66
|
-
},
|
|
67
|
-
{
|
|
68
|
-
fields: ["createdAt"],
|
|
69
|
-
},
|
|
70
|
-
],
|
|
71
|
-
}
|
|
72
|
-
);
|
|
73
|
-
|
|
74
|
-
// Associations
|
|
75
|
-
AIGenerationLog.associate = function (models) {
|
|
76
|
-
// Each log belongs to a request
|
|
77
|
-
AIGenerationLog.belongsTo(models.AIGenerationRequest, {
|
|
78
|
-
foreignKey: "requestId",
|
|
79
|
-
targetKey: "requestId",
|
|
80
|
-
as: "request",
|
|
81
|
-
});
|
|
82
|
-
};
|
|
83
|
-
|
|
84
|
-
return AIGenerationLog;
|
|
85
|
-
};
|
|
1
|
+
/**
|
|
2
|
+
* AI Generation Log Model
|
|
3
|
+
*
|
|
4
|
+
* Stores detailed logs for each step of the generation process.
|
|
5
|
+
* Useful for debugging and monitoring.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
module.exports = (sequelize, DataTypes) => {
|
|
9
|
+
const AIGenerationLog = sequelize.define(
|
|
10
|
+
"AIGenerationLog",
|
|
11
|
+
{
|
|
12
|
+
id: {
|
|
13
|
+
type: DataTypes.UUID,
|
|
14
|
+
defaultValue: DataTypes.UUIDV4,
|
|
15
|
+
primaryKey: true,
|
|
16
|
+
},
|
|
17
|
+
requestId: {
|
|
18
|
+
type: DataTypes.STRING,
|
|
19
|
+
allowNull: false,
|
|
20
|
+
comment: "Reference to AIGenerationRequest.requestId",
|
|
21
|
+
indexes: [
|
|
22
|
+
{
|
|
23
|
+
fields: ["requestId"],
|
|
24
|
+
},
|
|
25
|
+
],
|
|
26
|
+
},
|
|
27
|
+
step: {
|
|
28
|
+
type: DataTypes.STRING,
|
|
29
|
+
allowNull: false,
|
|
30
|
+
comment:
|
|
31
|
+
"Step name: parsing, prompt_generation, image_generation, storage, logging",
|
|
32
|
+
},
|
|
33
|
+
level: {
|
|
34
|
+
type: DataTypes.ENUM("info", "warning", "error", "success"),
|
|
35
|
+
allowNull: false,
|
|
36
|
+
defaultValue: "info",
|
|
37
|
+
comment: "Log level",
|
|
38
|
+
},
|
|
39
|
+
message: {
|
|
40
|
+
type: DataTypes.TEXT,
|
|
41
|
+
allowNull: false,
|
|
42
|
+
comment: "Log message",
|
|
43
|
+
},
|
|
44
|
+
data: {
|
|
45
|
+
type: DataTypes.JSONB,
|
|
46
|
+
allowNull: true,
|
|
47
|
+
comment: "Additional log data (JSON)",
|
|
48
|
+
},
|
|
49
|
+
duration: {
|
|
50
|
+
type: DataTypes.INTEGER,
|
|
51
|
+
allowNull: true,
|
|
52
|
+
comment: "Step duration in milliseconds",
|
|
53
|
+
},
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
tableName: "ai_generation_logs",
|
|
57
|
+
timestamps: true,
|
|
58
|
+
createdAt: "createdAt",
|
|
59
|
+
updatedAt: false, // Logs are immutable
|
|
60
|
+
indexes: [
|
|
61
|
+
{
|
|
62
|
+
fields: ["requestId", "step"],
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
fields: ["level"],
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
fields: ["createdAt"],
|
|
69
|
+
},
|
|
70
|
+
],
|
|
71
|
+
}
|
|
72
|
+
);
|
|
73
|
+
|
|
74
|
+
// Associations
|
|
75
|
+
AIGenerationLog.associate = function (models) {
|
|
76
|
+
// Each log belongs to a request
|
|
77
|
+
AIGenerationLog.belongsTo(models.AIGenerationRequest, {
|
|
78
|
+
foreignKey: "requestId",
|
|
79
|
+
targetKey: "requestId",
|
|
80
|
+
as: "request",
|
|
81
|
+
});
|
|
82
|
+
};
|
|
83
|
+
|
|
84
|
+
return AIGenerationLog;
|
|
85
|
+
};
|