agrs-sequelize-sdk 1.4.12 → 1.4.13

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 (65) hide show
  1. package/migrations/add-requested-from-dashboard-to-articles.js +17 -17
  2. package/migrations/change-adset-name-to-text.js +79 -79
  3. package/models/AICampaignQueue.js +136 -136
  4. package/models/AIGenerationLog.js +85 -85
  5. package/models/AIGenerationRequest.js +212 -212
  6. package/models/AdAccountValues.js +25 -25
  7. package/models/AdHistory.js +30 -30
  8. package/models/AdPerformance.js +94 -94
  9. package/models/AdSet.js +289 -289
  10. package/models/AdSetHistory.js +30 -30
  11. package/models/AdsetPerformance.js +126 -126
  12. package/models/AiArticleRetryQueue.js +150 -150
  13. package/models/AiCreationRetryQueue.js +127 -127
  14. package/models/Article.js +206 -206
  15. package/models/AutomationRule.js +173 -173
  16. package/models/BannerTemplate.js +129 -129
  17. package/models/Buyers.js +25 -25
  18. package/models/Campaign.js +157 -157
  19. package/models/CampaignActionHistory.js +86 -86
  20. package/models/CampaignCreationLog.js +309 -309
  21. package/models/CampaignCreationLogV2.js +314 -314
  22. package/models/CampaignHistory.js +33 -33
  23. package/models/Channel.js +55 -55
  24. package/models/Domain.js +43 -43
  25. package/models/DynamicFeed.js +212 -212
  26. package/models/ExplorAdsChannel.js +61 -61
  27. package/models/FacebookRetryQueue.js +156 -156
  28. package/models/Feed.js +33 -33
  29. package/models/FeedArticleConfiguration.js +80 -80
  30. package/models/FrontStoryChannel.js +59 -59
  31. package/models/FrontStoryChannelV2.js +60 -60
  32. package/models/GenericFlowRequest.js +114 -114
  33. package/models/MidoWebChannel.js +47 -47
  34. package/models/MineChannel.js +42 -42
  35. package/models/Pages.js +99 -99
  36. package/models/PipelineExecution.js +59 -59
  37. package/models/PolicyDogsCreativeCache.js +50 -50
  38. package/models/PolicyDogsImageCache.js +30 -30
  39. package/models/Presets.js +34 -34
  40. package/models/RSOCFeedCampaign.js +375 -375
  41. package/models/RsocKeywordPerformance.js +110 -110
  42. package/models/RuleAction.js +90 -90
  43. package/models/RuleCondition.js +137 -137
  44. package/models/RuleExecution.js +107 -107
  45. package/models/RulesValues.js +56 -56
  46. package/models/SupportedLocale.js +23 -23
  47. package/models/SyncHistory.js +249 -249
  48. package/models/TTQChannel.js +42 -42
  49. package/models/TemplateMetadata.js +260 -260
  50. package/models/Tier2_AdAccounts.js +110 -110
  51. package/models/Tier2_Assets.js +70 -70
  52. package/models/Tier2_BusinessManagers.js +105 -105
  53. package/models/Tier2_CreditLines.js +99 -99
  54. package/models/Tier2_Pages.js +91 -91
  55. package/models/Tier2_Pixels.js +82 -82
  56. package/models/Tier2_Tokens.js +64 -64
  57. package/models/Tier2_UserAdAccounts.js +83 -83
  58. package/models/TokenRotationState.js +121 -121
  59. package/models/TonicRSOCKeywordPerformance.js +122 -122
  60. package/models/Users.js +148 -148
  61. package/models/Vertical.js +25 -25
  62. package/models/newFiles.js +137 -137
  63. package/package.json +19 -21
  64. package/run.sh +214 -214
  65. package/services/sequelizeService.js +110 -110
package/models/Pages.js CHANGED
@@ -1,99 +1,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
- },
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
+ },
93
+ {
94
+ tableName: "Pages",
95
+ }
96
+ );
97
+
98
+ return Pages;
99
+ };
@@ -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,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
- }, {
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
+ }, {
26
+ tableName: "Presets",
27
+ });
28
+
29
+ Presets.associate = (models) => {
30
+ Presets.belongsTo(models.Users, { foreignKey: 'userId', as: 'user' });
31
+ };
32
+
33
+ return Presets;
34
+ };