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.
Files changed (84) 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/Article.js +212 -206
  33. package/models/AutomationRule.js +173 -173
  34. package/models/BannerTemplate.js +129 -129
  35. package/models/Buyers.js +25 -25
  36. package/models/Campaign.js +163 -157
  37. package/models/CampaignActionHistory.js +86 -86
  38. package/models/CampaignCreationLog.js +309 -309
  39. package/models/CampaignCreationLogV2.js +314 -314
  40. package/models/CampaignHistory.js +33 -33
  41. package/models/Channel.js +55 -55
  42. package/models/CodefuelCampaign.js +6 -0
  43. package/models/Domain.js +39 -47
  44. package/models/DynamicFeed.js +218 -212
  45. package/models/ExplorAdsChannel.js +61 -61
  46. package/models/FacebookRetryQueue.js +163 -156
  47. package/models/Feed.js +33 -33
  48. package/models/FeedArticleConfiguration.js +80 -80
  49. package/models/FrontStoryChannel.js +59 -59
  50. package/models/FrontStoryChannelV2.js +60 -60
  51. package/models/GenericFlowRequest.js +114 -114
  52. package/models/MidoWebChannel.js +47 -47
  53. package/models/MineChannel.js +42 -42
  54. package/models/Pages.js +105 -99
  55. package/models/PipelineExecution.js +59 -59
  56. package/models/PolicyDogsCreativeCache.js +50 -50
  57. package/models/PolicyDogsImageCache.js +30 -30
  58. package/models/Presets.js +40 -34
  59. package/models/RSOCFeedCampaign.js +375 -375
  60. package/models/RsocKeywordPerformance.js +110 -110
  61. package/models/RuleAction.js +90 -90
  62. package/models/RuleCondition.js +137 -137
  63. package/models/RuleExecution.js +107 -107
  64. package/models/RulesValues.js +56 -56
  65. package/models/SupportedLocale.js +23 -23
  66. package/models/SyncHistory.js +249 -249
  67. package/models/TTQChannel.js +42 -42
  68. package/models/TemplateMetadata.js +260 -260
  69. package/models/Tier2_AdAccounts.js +110 -110
  70. package/models/Tier2_Assets.js +70 -70
  71. package/models/Tier2_BusinessManagers.js +105 -105
  72. package/models/Tier2_CreditLines.js +99 -99
  73. package/models/Tier2_Pages.js +91 -91
  74. package/models/Tier2_Pixels.js +82 -82
  75. package/models/Tier2_Tokens.js +64 -64
  76. package/models/Tier2_UserAdAccounts.js +83 -83
  77. package/models/TokenRotationState.js +121 -121
  78. package/models/TonicRSOCKeywordPerformance.js +122 -122
  79. package/models/Users.js +148 -148
  80. package/models/Vertical.js +25 -25
  81. package/models/newFiles.js +137 -137
  82. package/package.json +19 -21
  83. package/run.sh +214 -214
  84. package/services/sequelizeService.js +110 -110
package/models/Pages.js CHANGED
@@ -1,99 +1,105 @@
1
- module.exports = (sequelize, DataTypes) => {
2
- const Pages = sequelize.define(
3
- "Pages",
4
- {
5
- id: {
6
- type: DataTypes.UUID,
7
- defaultValue: DataTypes.UUIDV4,
8
- primaryKey: true,
9
- },
10
- name: {
11
- type: DataTypes.STRING,
12
- allowNull: false,
13
- },
14
- code: {
15
- type: DataTypes.STRING,
16
- allowNull: false,
17
- unique: true,
18
- },
19
- link: {
20
- type: DataTypes.STRING,
21
- allowNull: true,
22
- },
23
- feedProvider: {
24
- type: DataTypes.ARRAY(DataTypes.STRING),
25
- allowNull: false,
26
- defaultValue: [], // Default value is an empty array
27
- },
28
- tasks: {
29
- type: DataTypes.ARRAY(DataTypes.STRING),
30
- allowNull: false,
31
- defaultValue: [], // Default value is an empty array
32
- },
33
- is_published: {
34
- type: DataTypes.BOOLEAN,
35
- allowNull: false,
36
- defaultValue: true,
37
- },
38
- Category: {
39
- type: DataTypes.STRING,
40
- allowNull: true,
41
- },
42
- Owner: {
43
- type: DataTypes.STRING,
44
- allowNull: true,
45
- },
46
- Status: {
47
- type: DataTypes.STRING,
48
- allowNull: true,
49
- },
50
- AdLibrary: {
51
- type: DataTypes.STRING,
52
- allowNull: true,
53
- },
54
- BusinessManager: {
55
- type: DataTypes.STRING,
56
- allowNull: true,
57
- },
58
- Users: {
59
- type: DataTypes.ARRAY(DataTypes.STRING),
60
- allowNull: false,
61
- defaultValue: [],
62
- },
63
- Archived: {
64
- type: DataTypes.BOOLEAN,
65
- allowNull: true,
66
- },
67
- ads_limit: {
68
- type: DataTypes.INTEGER,
69
- allowNull: true,
70
- defaultValue: 0,
71
- comment:
72
- "Number of currently active ads running on this page (Max limit: 250)",
73
- },
74
- instagram_user_id: {
75
- type: DataTypes.STRING,
76
- allowNull: true,
77
- comment:
78
- "Instagram User ID (Page-backed Instagram Account ID) for this page",
79
- },
80
- promotion_eligible: {
81
- type: DataTypes.BOOLEAN,
82
- allowNull: true,
83
- defaultValue: true,
84
- comment:
85
- "Whether this page is eligible for advertising (synced from Facebook promotion_eligible field)",
86
- },
87
- // access_token: {
88
- // type: DataTypes.STRING,
89
- // allowNull: true,
90
- // comment: "Facebook page access token",
91
- // },
92
- },
93
- {
94
- tableName: "Pages",
95
- }
96
- );
97
-
98
- return Pages;
99
- };
1
+ module.exports = (sequelize, DataTypes) => {
2
+ const Pages = sequelize.define(
3
+ "Pages",
4
+ {
5
+ id: {
6
+ type: DataTypes.UUID,
7
+ defaultValue: DataTypes.UUIDV4,
8
+ primaryKey: true,
9
+ },
10
+ name: {
11
+ type: DataTypes.STRING,
12
+ allowNull: false,
13
+ },
14
+ code: {
15
+ type: DataTypes.STRING,
16
+ allowNull: false,
17
+ unique: true,
18
+ },
19
+ link: {
20
+ type: DataTypes.STRING,
21
+ allowNull: true,
22
+ },
23
+ feedProvider: {
24
+ type: DataTypes.ARRAY(DataTypes.STRING),
25
+ allowNull: false,
26
+ defaultValue: [], // Default value is an empty array
27
+ },
28
+ tasks: {
29
+ type: DataTypes.ARRAY(DataTypes.STRING),
30
+ allowNull: false,
31
+ defaultValue: [], // Default value is an empty array
32
+ },
33
+ is_published: {
34
+ type: DataTypes.BOOLEAN,
35
+ allowNull: false,
36
+ defaultValue: true,
37
+ },
38
+ Category: {
39
+ type: DataTypes.STRING,
40
+ allowNull: true,
41
+ },
42
+ Owner: {
43
+ type: DataTypes.STRING,
44
+ allowNull: true,
45
+ },
46
+ Status: {
47
+ type: DataTypes.STRING,
48
+ allowNull: true,
49
+ },
50
+ AdLibrary: {
51
+ type: DataTypes.STRING,
52
+ allowNull: true,
53
+ },
54
+ BusinessManager: {
55
+ type: DataTypes.STRING,
56
+ allowNull: true,
57
+ },
58
+ Users: {
59
+ type: DataTypes.ARRAY(DataTypes.STRING),
60
+ allowNull: false,
61
+ defaultValue: [],
62
+ },
63
+ Archived: {
64
+ type: DataTypes.BOOLEAN,
65
+ allowNull: true,
66
+ },
67
+ ads_limit: {
68
+ type: DataTypes.INTEGER,
69
+ allowNull: true,
70
+ defaultValue: 0,
71
+ comment:
72
+ "Number of currently active ads running on this page (Max limit: 250)",
73
+ },
74
+ instagram_user_id: {
75
+ type: DataTypes.STRING,
76
+ allowNull: true,
77
+ comment:
78
+ "Instagram User ID (Page-backed Instagram Account ID) for this page",
79
+ },
80
+ promotion_eligible: {
81
+ type: DataTypes.BOOLEAN,
82
+ allowNull: true,
83
+ defaultValue: true,
84
+ comment:
85
+ "Whether this page is eligible for advertising (synced from Facebook promotion_eligible field)",
86
+ },
87
+ // access_token: {
88
+ // type: DataTypes.STRING,
89
+ // allowNull: true,
90
+ // comment: "Facebook page access token",
91
+ // },
92
+ platform: {
93
+ type: DataTypes.ENUM("fb", "tt", "snp"),
94
+ allowNull: false,
95
+ defaultValue: "fb",
96
+ comment: "Ad platform identifier: fb=Facebook, tt=TikTok, snp=Snapchat",
97
+ },
98
+ },
99
+ {
100
+ tableName: "Pages",
101
+ }
102
+ );
103
+
104
+ return Pages;
105
+ };
@@ -1,59 +1,59 @@
1
- module.exports = (sequelize, DataTypes) => {
2
- const PipelineExecution = sequelize.define(
3
- "PipelineExecution",
4
- {
5
- id: {
6
- type: DataTypes.UUID,
7
- defaultValue: DataTypes.UUIDV4,
8
- primaryKey: true,
9
- },
10
- startTime: {
11
- type: DataTypes.DATE,
12
- allowNull: false,
13
- },
14
- endTime: {
15
- type: DataTypes.DATE,
16
- allowNull: false,
17
- },
18
- status: {
19
- type: DataTypes.ENUM("success", "failed"),
20
- allowNull: false,
21
- },
22
- fbDaysBack: {
23
- type: DataTypes.INTEGER,
24
- allowNull: true,
25
- },
26
- codeFuelDaysBack: {
27
- type: DataTypes.INTEGER,
28
- allowNull: true,
29
- },
30
- tonicDaysBack: {
31
- type: DataTypes.INTEGER,
32
- allowNull: true,
33
- },
34
- compadoDaysBack: { // Added missing column
35
- type: DataTypes.INTEGER,
36
- allowNull: true,
37
- },
38
- cfn2sDaysBack: { // Added missing column
39
- type: DataTypes.INTEGER,
40
- allowNull: true,
41
- },
42
- error: {
43
- type: DataTypes.TEXT,
44
- allowNull: true,
45
- },
46
- feedTimestamps: { // Added new column for feed timestamps
47
- type: DataTypes.JSONB, // Use JSONB for PostgreSQL
48
- allowNull: true,
49
- field: 'feed_timestamps', // Map to snake_case column name
50
- },
51
- },
52
- {
53
- tableName: "pipeline_executions",
54
- timestamps: true,
55
- }
56
- );
57
-
58
- return PipelineExecution;
59
- };
1
+ module.exports = (sequelize, DataTypes) => {
2
+ const PipelineExecution = sequelize.define(
3
+ "PipelineExecution",
4
+ {
5
+ id: {
6
+ type: DataTypes.UUID,
7
+ defaultValue: DataTypes.UUIDV4,
8
+ primaryKey: true,
9
+ },
10
+ startTime: {
11
+ type: DataTypes.DATE,
12
+ allowNull: false,
13
+ },
14
+ endTime: {
15
+ type: DataTypes.DATE,
16
+ allowNull: false,
17
+ },
18
+ status: {
19
+ type: DataTypes.ENUM("success", "failed"),
20
+ allowNull: false,
21
+ },
22
+ fbDaysBack: {
23
+ type: DataTypes.INTEGER,
24
+ allowNull: true,
25
+ },
26
+ codeFuelDaysBack: {
27
+ type: DataTypes.INTEGER,
28
+ allowNull: true,
29
+ },
30
+ tonicDaysBack: {
31
+ type: DataTypes.INTEGER,
32
+ allowNull: true,
33
+ },
34
+ compadoDaysBack: { // Added missing column
35
+ type: DataTypes.INTEGER,
36
+ allowNull: true,
37
+ },
38
+ cfn2sDaysBack: { // Added missing column
39
+ type: DataTypes.INTEGER,
40
+ allowNull: true,
41
+ },
42
+ error: {
43
+ type: DataTypes.TEXT,
44
+ allowNull: true,
45
+ },
46
+ feedTimestamps: { // Added new column for feed timestamps
47
+ type: DataTypes.JSONB, // Use JSONB for PostgreSQL
48
+ allowNull: true,
49
+ field: 'feed_timestamps', // Map to snake_case column name
50
+ },
51
+ },
52
+ {
53
+ tableName: "pipeline_executions",
54
+ timestamps: true,
55
+ }
56
+ );
57
+
58
+ return PipelineExecution;
59
+ };
@@ -1,50 +1,50 @@
1
- module.exports = (sequelize, DataTypes) => {
2
- const PolicyDogsCreativeCache = sequelize.define(
3
- "PolicyDogsCreativeCache",
4
- {
5
- id: {
6
- type: DataTypes.INTEGER,
7
- primaryKey: true,
8
- autoIncrement: true,
9
- },
10
- ad_account_id: {
11
- type: DataTypes.STRING,
12
- allowNull: false,
13
- comment: "Facebook ad account ID (e.g., act_123456)",
14
- },
15
- page_id: {
16
- type: DataTypes.STRING,
17
- allowNull: false,
18
- comment: "Facebook page ID used in the creative",
19
- },
20
- dog_url: {
21
- type: DataTypes.TEXT,
22
- allowNull: false,
23
- comment: "The dog article URL used in the creative",
24
- },
25
- creative_id: {
26
- type: DataTypes.STRING,
27
- allowNull: false,
28
- comment: "Facebook creative ID to reuse",
29
- },
30
- created_at: {
31
- type: DataTypes.DATE,
32
- allowNull: false,
33
- defaultValue: DataTypes.NOW,
34
- },
35
- },
36
- {
37
- tableName: "policy_dogs_creative_cache",
38
- timestamps: false,
39
- indexes: [
40
- {
41
- unique: true,
42
- fields: ["ad_account_id", "page_id", "dog_url"],
43
- name: "idx_dogs_creative_cache_unique",
44
- },
45
- ],
46
- }
47
- );
48
-
49
- return PolicyDogsCreativeCache;
50
- };
1
+ module.exports = (sequelize, DataTypes) => {
2
+ const PolicyDogsCreativeCache = sequelize.define(
3
+ "PolicyDogsCreativeCache",
4
+ {
5
+ id: {
6
+ type: DataTypes.INTEGER,
7
+ primaryKey: true,
8
+ autoIncrement: true,
9
+ },
10
+ ad_account_id: {
11
+ type: DataTypes.STRING,
12
+ allowNull: false,
13
+ comment: "Facebook ad account ID (e.g., act_123456)",
14
+ },
15
+ page_id: {
16
+ type: DataTypes.STRING,
17
+ allowNull: false,
18
+ comment: "Facebook page ID used in the creative",
19
+ },
20
+ dog_url: {
21
+ type: DataTypes.TEXT,
22
+ allowNull: false,
23
+ comment: "The dog article URL used in the creative",
24
+ },
25
+ creative_id: {
26
+ type: DataTypes.STRING,
27
+ allowNull: false,
28
+ comment: "Facebook creative ID to reuse",
29
+ },
30
+ created_at: {
31
+ type: DataTypes.DATE,
32
+ allowNull: false,
33
+ defaultValue: DataTypes.NOW,
34
+ },
35
+ },
36
+ {
37
+ tableName: "policy_dogs_creative_cache",
38
+ timestamps: false,
39
+ indexes: [
40
+ {
41
+ unique: true,
42
+ fields: ["ad_account_id", "page_id", "dog_url"],
43
+ name: "idx_dogs_creative_cache_unique",
44
+ },
45
+ ],
46
+ }
47
+ );
48
+
49
+ return PolicyDogsCreativeCache;
50
+ };
@@ -1,30 +1,30 @@
1
- module.exports = (sequelize, DataTypes) => {
2
- const PolicyDogsImageCache = sequelize.define(
3
- "PolicyDogsImageCache",
4
- {
5
- ad_account_id: {
6
- type: DataTypes.STRING,
7
- primaryKey: true,
8
- allowNull: false,
9
- comment: "Facebook ad account ID (e.g., act_123456)",
10
- },
11
- image_hash: {
12
- type: DataTypes.STRING,
13
- allowNull: false,
14
- comment: "Facebook image hash for the dog image uploaded to this account",
15
- },
16
- uploaded_at: {
17
- type: DataTypes.DATE,
18
- allowNull: false,
19
- defaultValue: DataTypes.NOW,
20
- comment: "When the image was uploaded to this ad account",
21
- },
22
- },
23
- {
24
- tableName: "policy_dogs_image_cache",
25
- timestamps: false,
26
- }
27
- );
28
-
29
- return PolicyDogsImageCache;
30
- };
1
+ module.exports = (sequelize, DataTypes) => {
2
+ const PolicyDogsImageCache = sequelize.define(
3
+ "PolicyDogsImageCache",
4
+ {
5
+ ad_account_id: {
6
+ type: DataTypes.STRING,
7
+ primaryKey: true,
8
+ allowNull: false,
9
+ comment: "Facebook ad account ID (e.g., act_123456)",
10
+ },
11
+ image_hash: {
12
+ type: DataTypes.STRING,
13
+ allowNull: false,
14
+ comment: "Facebook image hash for the dog image uploaded to this account",
15
+ },
16
+ uploaded_at: {
17
+ type: DataTypes.DATE,
18
+ allowNull: false,
19
+ defaultValue: DataTypes.NOW,
20
+ comment: "When the image was uploaded to this ad account",
21
+ },
22
+ },
23
+ {
24
+ tableName: "policy_dogs_image_cache",
25
+ timestamps: false,
26
+ }
27
+ );
28
+
29
+ return PolicyDogsImageCache;
30
+ };
package/models/Presets.js CHANGED
@@ -1,34 +1,40 @@
1
- // models/Presets.js
2
- module.exports = (sequelize, DataTypes) => {
3
- const Presets = sequelize.define("Presets", {
4
- id: {
5
- type: DataTypes.UUID,
6
- defaultValue: DataTypes.UUIDV4,
7
- primaryKey: true,
8
- },
9
- name: {
10
- type: DataTypes.STRING,
11
- allowNull: false,
12
- },
13
- feeds: {
14
- type: DataTypes.JSONB,
15
- allowNull: true,
16
- },
17
- userId: {
18
- type: DataTypes.UUID,
19
- allowNull: false,
20
- references: {
21
- model: 'Users',
22
- key: 'id',
23
- },
24
- },
25
- }, {
26
- tableName: "Presets",
27
- });
28
-
29
- Presets.associate = (models) => {
30
- Presets.belongsTo(models.Users, { foreignKey: 'userId', as: 'user' });
31
- };
32
-
33
- return Presets;
34
- };
1
+ // models/Presets.js
2
+ module.exports = (sequelize, DataTypes) => {
3
+ const Presets = sequelize.define("Presets", {
4
+ id: {
5
+ type: DataTypes.UUID,
6
+ defaultValue: DataTypes.UUIDV4,
7
+ primaryKey: true,
8
+ },
9
+ name: {
10
+ type: DataTypes.STRING,
11
+ allowNull: false,
12
+ },
13
+ feeds: {
14
+ type: DataTypes.JSONB,
15
+ allowNull: true,
16
+ },
17
+ userId: {
18
+ type: DataTypes.UUID,
19
+ allowNull: false,
20
+ references: {
21
+ model: 'Users',
22
+ key: 'id',
23
+ },
24
+ },
25
+ platform: {
26
+ type: DataTypes.ENUM("fb", "tt", "snp"),
27
+ allowNull: false,
28
+ defaultValue: "fb",
29
+ comment: "Ad platform identifier: fb=Facebook, tt=TikTok, snp=Snapchat",
30
+ },
31
+ }, {
32
+ tableName: "Presets",
33
+ });
34
+
35
+ Presets.associate = (models) => {
36
+ Presets.belongsTo(models.Users, { foreignKey: 'userId', as: 'user' });
37
+ };
38
+
39
+ return Presets;
40
+ };