agrs-sequelize-sdk 1.4.17 → 1.4.19

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.
Files changed (86) hide show
  1. package/migrations/2026-05-17-PIXELS-FOLLOWUP.md +85 -0
  2. package/migrations/2026-05-17-add-platform-to-ad.js +19 -0
  3. package/migrations/2026-05-17-add-platform-to-adaccount.js +19 -0
  4. package/migrations/2026-05-17-add-platform-to-adperformance.js +19 -0
  5. package/migrations/2026-05-17-add-platform-to-adset.js +19 -0
  6. package/migrations/2026-05-17-add-platform-to-adsetperformance.js +19 -0
  7. package/migrations/2026-05-17-add-platform-to-aiarticleretryqueue.js +19 -0
  8. package/migrations/2026-05-17-add-platform-to-aicampaignqueue.js +19 -0
  9. package/migrations/2026-05-17-add-platform-to-article.js +19 -0
  10. package/migrations/2026-05-17-add-platform-to-campaign.js +19 -0
  11. package/migrations/2026-05-17-add-platform-to-codefuelcampaign.js +19 -0
  12. package/migrations/2026-05-17-add-platform-to-dynamicfeed.js +19 -0
  13. package/migrations/2026-05-17-add-platform-to-facebookretryqueue.js +19 -0
  14. package/migrations/2026-05-17-add-platform-to-pages.js +19 -0
  15. package/migrations/2026-05-17-add-platform-to-presets.js +19 -0
  16. package/migrations/RUN_ME_MANUALLY_2026-05-17.sql +99 -0
  17. package/migrations/add-requested-from-dashboard-to-articles.js +17 -17
  18. package/migrations/change-adset-name-to-text.js +79 -79
  19. package/models/AICampaignQueue.js +143 -136
  20. package/models/AIGenerationLog.js +85 -85
  21. package/models/AIGenerationRequest.js +212 -212
  22. package/models/Ad.js +6 -0
  23. package/models/AdAccount.js +6 -0
  24. package/models/AdAccountValues.js +25 -25
  25. package/models/AdHistory.js +30 -30
  26. package/models/AdPerformance.js +100 -94
  27. package/models/AdSet.js +295 -289
  28. package/models/AdSetHistory.js +30 -30
  29. package/models/AdsetPerformance.js +132 -126
  30. package/models/AiArticleRetryQueue.js +157 -150
  31. package/models/AiCreationRetryQueue.js +127 -127
  32. package/models/ApiAuditLog.js +84 -0
  33. package/models/ApiToken.js +67 -0
  34. package/models/Article.js +212 -206
  35. package/models/AutomationRule.js +173 -173
  36. package/models/BannerTemplate.js +129 -129
  37. package/models/Buyers.js +25 -25
  38. package/models/Campaign.js +163 -157
  39. package/models/CampaignActionHistory.js +86 -86
  40. package/models/CampaignCreationLog.js +309 -309
  41. package/models/CampaignCreationLogV2.js +314 -314
  42. package/models/CampaignHistory.js +33 -33
  43. package/models/Channel.js +55 -55
  44. package/models/CodefuelCampaign.js +6 -0
  45. package/models/Domain.js +39 -39
  46. package/models/DynamicFeed.js +218 -212
  47. package/models/ExplorAdsChannel.js +61 -61
  48. package/models/FacebookRetryQueue.js +163 -156
  49. package/models/Feed.js +33 -33
  50. package/models/FeedArticleConfiguration.js +80 -80
  51. package/models/FrontStoryChannel.js +59 -59
  52. package/models/FrontStoryChannelV2.js +60 -60
  53. package/models/GenericFlowRequest.js +114 -114
  54. package/models/MidoWebChannel.js +47 -47
  55. package/models/MineChannel.js +42 -42
  56. package/models/Pages.js +105 -99
  57. package/models/PipelineExecution.js +59 -59
  58. package/models/PolicyDogsCreativeCache.js +50 -50
  59. package/models/PolicyDogsImageCache.js +30 -30
  60. package/models/Presets.js +40 -34
  61. package/models/RSOCFeedCampaign.js +375 -375
  62. package/models/RsocKeywordPerformance.js +110 -110
  63. package/models/RuleAction.js +90 -90
  64. package/models/RuleCondition.js +137 -137
  65. package/models/RuleExecution.js +107 -107
  66. package/models/RulesValues.js +56 -56
  67. package/models/SupportedLocale.js +23 -23
  68. package/models/SyncHistory.js +249 -249
  69. package/models/TTQChannel.js +42 -42
  70. package/models/TemplateMetadata.js +260 -260
  71. package/models/Tier2_AdAccounts.js +110 -110
  72. package/models/Tier2_Assets.js +70 -70
  73. package/models/Tier2_BusinessManagers.js +105 -105
  74. package/models/Tier2_CreditLines.js +99 -99
  75. package/models/Tier2_Pages.js +91 -91
  76. package/models/Tier2_Pixels.js +82 -82
  77. package/models/Tier2_Tokens.js +64 -64
  78. package/models/Tier2_UserAdAccounts.js +83 -83
  79. package/models/TokenRotationState.js +121 -121
  80. package/models/TonicRSOCKeywordPerformance.js +122 -122
  81. package/models/Users.js +148 -148
  82. package/models/Vertical.js +25 -25
  83. package/models/newFiles.js +137 -137
  84. package/package.json +19 -21
  85. package/run.sh +214 -214
  86. package/services/sequelizeService.js +110 -110
@@ -1,260 +1,260 @@
1
- /**
2
- * TemplateMetadata Model
3
- * Stores rich metadata for banner templates with AI-generated insights
4
- * Used for advanced filtering, sorting, and template library management
5
- */
6
-
7
- module.exports = (sequelize, DataTypes) => {
8
- const TemplateMetadata = sequelize.define(
9
- "TemplateMetadata",
10
- {
11
- id: {
12
- type: DataTypes.INTEGER,
13
- primaryKey: true,
14
- autoIncrement: true,
15
- comment: "Auto-incremented primary key",
16
- },
17
- name: {
18
- type: DataTypes.STRING(255),
19
- allowNull: false,
20
- comment: "Template name (e.g., 'Template 1')",
21
- },
22
- status: {
23
- type: DataTypes.STRING(20),
24
- allowNull: false,
25
- defaultValue: "Active",
26
- comment: "Template status (e.g., 'Active', 'Inactive')",
27
- },
28
- description: {
29
- type: DataTypes.TEXT,
30
- allowNull: true,
31
- comment: "Short description (200 chars)",
32
- },
33
- detailedDescription: {
34
- type: DataTypes.TEXT,
35
- allowNull: true,
36
- field: "detailed_description",
37
- comment: "Full template description from templateDescriptions.js",
38
- },
39
-
40
- // ===== Metadata Fields =====
41
- imageType: {
42
- type: DataTypes.TEXT,
43
- allowNull: true,
44
- field: "image_type",
45
- comment:
46
- "Best image type for this template (e.g., 'photo', 'illustration', 'render3d', 'collage', 'solid', 'cartoon', 'mixed')",
47
- },
48
- category: {
49
- type: DataTypes.TEXT,
50
- allowNull: true,
51
- comment: "Layout category (e.g., 'asymmetric-split', 'vertical-stack')",
52
- },
53
- tags: {
54
- type: DataTypes.JSON,
55
- allowNull: true,
56
- defaultValue: [],
57
- comment: "Array of descriptive tags for filtering",
58
- },
59
- elements: {
60
- type: DataTypes.JSON,
61
- allowNull: true,
62
- defaultValue: [],
63
- comment:
64
- "Array of visual elements (e.g., ['Photo', 'Headline', 'CTA'])",
65
- },
66
- complexity: {
67
- type: DataTypes.STRING(20),
68
- allowNull: true,
69
- comment: "Template complexity level (e.g., 'low', 'medium', 'high')",
70
- },
71
- textDensity: {
72
- type: DataTypes.STRING(20),
73
- allowNull: true,
74
- field: "text_density",
75
- comment:
76
- "Amount of text in template (e.g., 'none', 'low', 'medium', 'high')",
77
- },
78
- imageCount: {
79
- type: DataTypes.INTEGER,
80
- allowNull: true,
81
- field: "image_count",
82
- comment: "Number of image slots",
83
- },
84
-
85
- // ===== Layout Fields =====
86
- layoutStructure: {
87
- type: DataTypes.TEXT,
88
- allowNull: true,
89
- field: "layout_structure",
90
- comment: "Description of layout structure",
91
- },
92
- composition: {
93
- type: DataTypes.TEXT,
94
- allowNull: true,
95
- comment: "Description of visual composition",
96
- },
97
- textPlacement: {
98
- type: DataTypes.JSON,
99
- allowNull: true,
100
- defaultValue: [],
101
- field: "text_placement",
102
- comment: "Array of text placement descriptions",
103
- },
104
- imagePlacement: {
105
- type: DataTypes.JSON,
106
- allowNull: true,
107
- defaultValue: [],
108
- field: "image_placement",
109
- comment: "Array of image placement descriptions",
110
- },
111
-
112
- // ===== Prompt Fields (for AI generation) =====
113
- imageStyle: {
114
- type: DataTypes.TEXT,
115
- allowNull: true,
116
- field: "image_style",
117
- comment: "Image style for AI prompt (e.g., 'PHOTO', 'ILLUSTRATION')",
118
- },
119
- layoutDescription: {
120
- type: DataTypes.TEXT,
121
- allowNull: true,
122
- field: "layout_description",
123
- comment: "Detailed layout description for AI prompt",
124
- },
125
- textPositions: {
126
- type: DataTypes.JSON,
127
- allowNull: true,
128
- field: "text_positions",
129
- comment: "Text positioning info for AI prompt (headline, cta, subtext)",
130
- },
131
- backgroundType: {
132
- type: DataTypes.TEXT,
133
- allowNull: true,
134
- field: "background_type",
135
- comment: "Background type description",
136
- },
137
- colorPalette: {
138
- type: DataTypes.JSON,
139
- allowNull: true,
140
- defaultValue: [],
141
- field: "color_palette",
142
- comment: "Array of color palette hints",
143
- },
144
- mood: {
145
- type: DataTypes.TEXT,
146
- allowNull: true,
147
- comment: "Mood/aesthetic description",
148
- },
149
-
150
- // ===== Sample Images =====
151
- sampleImages: {
152
- type: DataTypes.JSON,
153
- allowNull: true,
154
- defaultValue: [],
155
- field: "sample_images",
156
- comment: "Array of sample image URLs",
157
- },
158
-
159
- // ===== User Uploaded Original Image =====
160
- userUploadedImageUrl: {
161
- type: DataTypes.TEXT,
162
- allowNull: true,
163
- field: "user_uploaded_image_url",
164
- comment:
165
- "URL of the original banner image uploaded by user (stored in GCP)",
166
- },
167
- uploadedBy: {
168
- type: DataTypes.STRING(100),
169
- allowNull: true,
170
- field: "uploaded_by",
171
- comment: "Username of the user who uploaded this template",
172
- },
173
- isUserGenerated: {
174
- type: DataTypes.BOOLEAN,
175
- allowNull: false,
176
- defaultValue: true,
177
- field: "is_user_generated",
178
- comment:
179
- "True if template was uploaded/analyzed by user, false if system template",
180
- },
181
-
182
- // ===== Preview =====
183
- layoutPreview: {
184
- type: DataTypes.TEXT,
185
- allowNull: true,
186
- field: "layout_preview",
187
- comment: "HTML/CSS preview generated by Gemini AI",
188
- },
189
-
190
- // ===== Template Specification (JSON) =====
191
- templateSpec: {
192
- type: DataTypes.JSON,
193
- allowNull: true,
194
- field: "template_spec",
195
- comment: "Detailed JSON specification for template reproduction (imageStyle, layout, positions)",
196
- },
197
-
198
- // ===== Legacy Grid Config (for backward compatibility) =====
199
- legacyGridConfig: {
200
- type: DataTypes.JSON,
201
- allowNull: true,
202
- field: "legacy_grid_config",
203
- comment: "Original Grid CSS config from templateConfig.json",
204
- },
205
- originalCreatedAt: {
206
- type: DataTypes.DATE,
207
- allowNull: true,
208
- field: "original_created_at",
209
- comment: "Original creation date from templateConfig.json",
210
- },
211
-
212
- // ===== Timestamps =====
213
- createdAt: {
214
- type: DataTypes.DATE,
215
- allowNull: false,
216
- defaultValue: DataTypes.NOW,
217
- field: "created_at",
218
- },
219
- updatedAt: {
220
- type: DataTypes.DATE,
221
- allowNull: false,
222
- defaultValue: DataTypes.NOW,
223
- field: "updated_at",
224
- },
225
- },
226
- {
227
- tableName: "template_metadata",
228
- timestamps: true,
229
- underscored: true,
230
- indexes: [
231
- {
232
- name: "idx_template_metadata_status",
233
- fields: ["status"],
234
- },
235
- {
236
- name: "idx_template_metadata_image_type",
237
- fields: ["image_type"],
238
- },
239
- {
240
- name: "idx_template_metadata_complexity",
241
- fields: ["complexity"],
242
- },
243
- {
244
- name: "idx_template_metadata_category",
245
- fields: ["category"],
246
- },
247
- {
248
- name: "idx_template_metadata_image_count",
249
- fields: ["image_count"],
250
- },
251
- {
252
- name: "idx_template_metadata_is_user_generated",
253
- fields: ["is_user_generated"],
254
- },
255
- ],
256
- }
257
- );
258
-
259
- return TemplateMetadata;
260
- };
1
+ /**
2
+ * TemplateMetadata Model
3
+ * Stores rich metadata for banner templates with AI-generated insights
4
+ * Used for advanced filtering, sorting, and template library management
5
+ */
6
+
7
+ module.exports = (sequelize, DataTypes) => {
8
+ const TemplateMetadata = sequelize.define(
9
+ "TemplateMetadata",
10
+ {
11
+ id: {
12
+ type: DataTypes.INTEGER,
13
+ primaryKey: true,
14
+ autoIncrement: true,
15
+ comment: "Auto-incremented primary key",
16
+ },
17
+ name: {
18
+ type: DataTypes.STRING(255),
19
+ allowNull: false,
20
+ comment: "Template name (e.g., 'Template 1')",
21
+ },
22
+ status: {
23
+ type: DataTypes.STRING(20),
24
+ allowNull: false,
25
+ defaultValue: "Active",
26
+ comment: "Template status (e.g., 'Active', 'Inactive')",
27
+ },
28
+ description: {
29
+ type: DataTypes.TEXT,
30
+ allowNull: true,
31
+ comment: "Short description (200 chars)",
32
+ },
33
+ detailedDescription: {
34
+ type: DataTypes.TEXT,
35
+ allowNull: true,
36
+ field: "detailed_description",
37
+ comment: "Full template description from templateDescriptions.js",
38
+ },
39
+
40
+ // ===== Metadata Fields =====
41
+ imageType: {
42
+ type: DataTypes.TEXT,
43
+ allowNull: true,
44
+ field: "image_type",
45
+ comment:
46
+ "Best image type for this template (e.g., 'photo', 'illustration', 'render3d', 'collage', 'solid', 'cartoon', 'mixed')",
47
+ },
48
+ category: {
49
+ type: DataTypes.TEXT,
50
+ allowNull: true,
51
+ comment: "Layout category (e.g., 'asymmetric-split', 'vertical-stack')",
52
+ },
53
+ tags: {
54
+ type: DataTypes.JSON,
55
+ allowNull: true,
56
+ defaultValue: [],
57
+ comment: "Array of descriptive tags for filtering",
58
+ },
59
+ elements: {
60
+ type: DataTypes.JSON,
61
+ allowNull: true,
62
+ defaultValue: [],
63
+ comment:
64
+ "Array of visual elements (e.g., ['Photo', 'Headline', 'CTA'])",
65
+ },
66
+ complexity: {
67
+ type: DataTypes.STRING(20),
68
+ allowNull: true,
69
+ comment: "Template complexity level (e.g., 'low', 'medium', 'high')",
70
+ },
71
+ textDensity: {
72
+ type: DataTypes.STRING(20),
73
+ allowNull: true,
74
+ field: "text_density",
75
+ comment:
76
+ "Amount of text in template (e.g., 'none', 'low', 'medium', 'high')",
77
+ },
78
+ imageCount: {
79
+ type: DataTypes.INTEGER,
80
+ allowNull: true,
81
+ field: "image_count",
82
+ comment: "Number of image slots",
83
+ },
84
+
85
+ // ===== Layout Fields =====
86
+ layoutStructure: {
87
+ type: DataTypes.TEXT,
88
+ allowNull: true,
89
+ field: "layout_structure",
90
+ comment: "Description of layout structure",
91
+ },
92
+ composition: {
93
+ type: DataTypes.TEXT,
94
+ allowNull: true,
95
+ comment: "Description of visual composition",
96
+ },
97
+ textPlacement: {
98
+ type: DataTypes.JSON,
99
+ allowNull: true,
100
+ defaultValue: [],
101
+ field: "text_placement",
102
+ comment: "Array of text placement descriptions",
103
+ },
104
+ imagePlacement: {
105
+ type: DataTypes.JSON,
106
+ allowNull: true,
107
+ defaultValue: [],
108
+ field: "image_placement",
109
+ comment: "Array of image placement descriptions",
110
+ },
111
+
112
+ // ===== Prompt Fields (for AI generation) =====
113
+ imageStyle: {
114
+ type: DataTypes.TEXT,
115
+ allowNull: true,
116
+ field: "image_style",
117
+ comment: "Image style for AI prompt (e.g., 'PHOTO', 'ILLUSTRATION')",
118
+ },
119
+ layoutDescription: {
120
+ type: DataTypes.TEXT,
121
+ allowNull: true,
122
+ field: "layout_description",
123
+ comment: "Detailed layout description for AI prompt",
124
+ },
125
+ textPositions: {
126
+ type: DataTypes.JSON,
127
+ allowNull: true,
128
+ field: "text_positions",
129
+ comment: "Text positioning info for AI prompt (headline, cta, subtext)",
130
+ },
131
+ backgroundType: {
132
+ type: DataTypes.TEXT,
133
+ allowNull: true,
134
+ field: "background_type",
135
+ comment: "Background type description",
136
+ },
137
+ colorPalette: {
138
+ type: DataTypes.JSON,
139
+ allowNull: true,
140
+ defaultValue: [],
141
+ field: "color_palette",
142
+ comment: "Array of color palette hints",
143
+ },
144
+ mood: {
145
+ type: DataTypes.TEXT,
146
+ allowNull: true,
147
+ comment: "Mood/aesthetic description",
148
+ },
149
+
150
+ // ===== Sample Images =====
151
+ sampleImages: {
152
+ type: DataTypes.JSON,
153
+ allowNull: true,
154
+ defaultValue: [],
155
+ field: "sample_images",
156
+ comment: "Array of sample image URLs",
157
+ },
158
+
159
+ // ===== User Uploaded Original Image =====
160
+ userUploadedImageUrl: {
161
+ type: DataTypes.TEXT,
162
+ allowNull: true,
163
+ field: "user_uploaded_image_url",
164
+ comment:
165
+ "URL of the original banner image uploaded by user (stored in GCP)",
166
+ },
167
+ uploadedBy: {
168
+ type: DataTypes.STRING(100),
169
+ allowNull: true,
170
+ field: "uploaded_by",
171
+ comment: "Username of the user who uploaded this template",
172
+ },
173
+ isUserGenerated: {
174
+ type: DataTypes.BOOLEAN,
175
+ allowNull: false,
176
+ defaultValue: true,
177
+ field: "is_user_generated",
178
+ comment:
179
+ "True if template was uploaded/analyzed by user, false if system template",
180
+ },
181
+
182
+ // ===== Preview =====
183
+ layoutPreview: {
184
+ type: DataTypes.TEXT,
185
+ allowNull: true,
186
+ field: "layout_preview",
187
+ comment: "HTML/CSS preview generated by Gemini AI",
188
+ },
189
+
190
+ // ===== Template Specification (JSON) =====
191
+ templateSpec: {
192
+ type: DataTypes.JSON,
193
+ allowNull: true,
194
+ field: "template_spec",
195
+ comment: "Detailed JSON specification for template reproduction (imageStyle, layout, positions)",
196
+ },
197
+
198
+ // ===== Legacy Grid Config (for backward compatibility) =====
199
+ legacyGridConfig: {
200
+ type: DataTypes.JSON,
201
+ allowNull: true,
202
+ field: "legacy_grid_config",
203
+ comment: "Original Grid CSS config from templateConfig.json",
204
+ },
205
+ originalCreatedAt: {
206
+ type: DataTypes.DATE,
207
+ allowNull: true,
208
+ field: "original_created_at",
209
+ comment: "Original creation date from templateConfig.json",
210
+ },
211
+
212
+ // ===== Timestamps =====
213
+ createdAt: {
214
+ type: DataTypes.DATE,
215
+ allowNull: false,
216
+ defaultValue: DataTypes.NOW,
217
+ field: "created_at",
218
+ },
219
+ updatedAt: {
220
+ type: DataTypes.DATE,
221
+ allowNull: false,
222
+ defaultValue: DataTypes.NOW,
223
+ field: "updated_at",
224
+ },
225
+ },
226
+ {
227
+ tableName: "template_metadata",
228
+ timestamps: true,
229
+ underscored: true,
230
+ indexes: [
231
+ {
232
+ name: "idx_template_metadata_status",
233
+ fields: ["status"],
234
+ },
235
+ {
236
+ name: "idx_template_metadata_image_type",
237
+ fields: ["image_type"],
238
+ },
239
+ {
240
+ name: "idx_template_metadata_complexity",
241
+ fields: ["complexity"],
242
+ },
243
+ {
244
+ name: "idx_template_metadata_category",
245
+ fields: ["category"],
246
+ },
247
+ {
248
+ name: "idx_template_metadata_image_count",
249
+ fields: ["image_count"],
250
+ },
251
+ {
252
+ name: "idx_template_metadata_is_user_generated",
253
+ fields: ["is_user_generated"],
254
+ },
255
+ ],
256
+ }
257
+ );
258
+
259
+ return TemplateMetadata;
260
+ };