agrs-sequelize-sdk 1.3.81 → 1.3.83

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 (64) 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/Article.js +196 -196
  14. package/models/AutomationRule.js +173 -173
  15. package/models/BannerTemplate.js +129 -129
  16. package/models/Buyers.js +25 -25
  17. package/models/Campaign.js +157 -157
  18. package/models/CampaignActionHistory.js +86 -86
  19. package/models/CampaignCreationLog.js +309 -309
  20. package/models/CampaignCreationLogV2.js +314 -314
  21. package/models/CampaignHistory.js +33 -33
  22. package/models/Channel.js +55 -55
  23. package/models/Domain.js +35 -35
  24. package/models/DynamicFeed.js +212 -212
  25. package/models/ExplorAdsChannel.js +61 -61
  26. package/models/FacebookRetryQueue.js +156 -0
  27. package/models/Feed.js +33 -33
  28. package/models/FeedArticleConfiguration.js +80 -80
  29. package/models/FrontStoryChannel.js +59 -59
  30. package/models/FrontStoryChannelV2.js +60 -60
  31. package/models/GenericFlowRequest.js +114 -114
  32. package/models/MidoWebChannel.js +47 -47
  33. package/models/MineChannel.js +42 -42
  34. package/models/Pages.js +92 -92
  35. package/models/PipelineExecution.js +59 -59
  36. package/models/PolicyDogsCreativeCache.js +50 -50
  37. package/models/PolicyDogsImageCache.js +30 -30
  38. package/models/Presets.js +34 -34
  39. package/models/RSOCFeedCampaign.js +375 -375
  40. package/models/RsocKeywordPerformance.js +110 -110
  41. package/models/RuleAction.js +90 -90
  42. package/models/RuleCondition.js +137 -137
  43. package/models/RuleExecution.js +107 -107
  44. package/models/RulesValues.js +56 -56
  45. package/models/SupportedLocale.js +23 -23
  46. package/models/SyncHistory.js +249 -249
  47. package/models/TTQChannel.js +42 -42
  48. package/models/TemplateMetadata.js +260 -260
  49. package/models/Tier2_AdAccounts.js +110 -110
  50. package/models/Tier2_Assets.js +70 -70
  51. package/models/Tier2_BusinessManagers.js +105 -105
  52. package/models/Tier2_CreditLines.js +99 -99
  53. package/models/Tier2_Pages.js +91 -91
  54. package/models/Tier2_Pixels.js +82 -82
  55. package/models/Tier2_Tokens.js +64 -64
  56. package/models/Tier2_UserAdAccounts.js +83 -83
  57. package/models/TokenRotationState.js +121 -121
  58. package/models/TonicRSOCKeywordPerformance.js +122 -122
  59. package/models/Users.js +143 -138
  60. package/models/Vertical.js +25 -25
  61. package/models/newFiles.js +137 -137
  62. package/package.json +19 -21
  63. package/run.sh +214 -214
  64. package/services/sequelizeService.js +110 -110
@@ -1,60 +1,60 @@
1
- module.exports = (sequelize, DataTypes) => {
2
- const FrontStoryChannelV2 = sequelize.define(
3
- "FrontStoryChannelV2",
4
- {
5
- channelId: {
6
- type: DataTypes.STRING,
7
- allowNull: false,
8
- // Not setting as primary key or unique since duplicates are allowed
9
- },
10
- channelName: {
11
- type: DataTypes.STRING,
12
- allowNull: true,
13
- comment: 'Human-readable name for the channel'
14
- },
15
- styleId: {
16
- type: DataTypes.STRING,
17
- allowNull: false,
18
- },
19
- status: {
20
- type: DataTypes.STRING,
21
- allowNull: false,
22
- defaultValue: "free",
23
- validate: {
24
- isIn: [["free", "used", "archived"]],
25
- },
26
- },
27
- connectedCampaigns: {
28
- type: DataTypes.JSONB, // Use JSONB for better querying capabilities
29
- allowNull: false,
30
- defaultValue: [],
31
- },
32
- },
33
- {
34
- tableName: "front_story_channels_v2",
35
- timestamps: true,
36
- // indexes: [
37
- // // Add a composite unique index on channelId and styleId if needed
38
- // {
39
- // unique: true,
40
- // fields: ["channelId", "styleId"],
41
- // name: "unique_front_story_channel_v2_style",
42
- // },
43
- // ],
44
- }
45
- );
46
-
47
- // Define associations without enforcing constraints
48
- FrontStoryChannelV2.associate = (models) => {
49
- if (models.RSOCFeedCampaign) {
50
- FrontStoryChannelV2.hasMany(models.RSOCFeedCampaign, {
51
- foreignKey: "channelId",
52
- sourceKey: "channelId",
53
- as: "RSOCFeedCampaigns",
54
- constraints: false, // Disable FK constraint
55
- });
56
- }
57
- };
58
-
59
- return FrontStoryChannelV2;
60
- };
1
+ module.exports = (sequelize, DataTypes) => {
2
+ const FrontStoryChannelV2 = sequelize.define(
3
+ "FrontStoryChannelV2",
4
+ {
5
+ channelId: {
6
+ type: DataTypes.STRING,
7
+ allowNull: false,
8
+ // Not setting as primary key or unique since duplicates are allowed
9
+ },
10
+ channelName: {
11
+ type: DataTypes.STRING,
12
+ allowNull: true,
13
+ comment: 'Human-readable name for the channel'
14
+ },
15
+ styleId: {
16
+ type: DataTypes.STRING,
17
+ allowNull: false,
18
+ },
19
+ status: {
20
+ type: DataTypes.STRING,
21
+ allowNull: false,
22
+ defaultValue: "free",
23
+ validate: {
24
+ isIn: [["free", "used", "archived"]],
25
+ },
26
+ },
27
+ connectedCampaigns: {
28
+ type: DataTypes.JSONB, // Use JSONB for better querying capabilities
29
+ allowNull: false,
30
+ defaultValue: [],
31
+ },
32
+ },
33
+ {
34
+ tableName: "front_story_channels_v2",
35
+ timestamps: true,
36
+ // indexes: [
37
+ // // Add a composite unique index on channelId and styleId if needed
38
+ // {
39
+ // unique: true,
40
+ // fields: ["channelId", "styleId"],
41
+ // name: "unique_front_story_channel_v2_style",
42
+ // },
43
+ // ],
44
+ }
45
+ );
46
+
47
+ // Define associations without enforcing constraints
48
+ FrontStoryChannelV2.associate = (models) => {
49
+ if (models.RSOCFeedCampaign) {
50
+ FrontStoryChannelV2.hasMany(models.RSOCFeedCampaign, {
51
+ foreignKey: "channelId",
52
+ sourceKey: "channelId",
53
+ as: "RSOCFeedCampaigns",
54
+ constraints: false, // Disable FK constraint
55
+ });
56
+ }
57
+ };
58
+
59
+ return FrontStoryChannelV2;
60
+ };
@@ -1,115 +1,115 @@
1
- // models/GenericFlowRequest.js
2
- module.exports = (sequelize, DataTypes) => {
3
- const GenericFlowRequest = sequelize.define(
4
- "GenericFlowRequest",
5
- {
6
- id: {
7
- type: DataTypes.BIGINT,
8
- autoIncrement: true,
9
- primaryKey: true,
10
- },
11
- request_id: {
12
- type: DataTypes.STRING,
13
- allowNull: false,
14
- unique: true,
15
- field: "request_id",
16
- },
17
- flow_type: {
18
- type: DataTypes.ENUM("article", "texts", "keywords", "creative"),
19
- allowNull: false,
20
- field: "flow_type",
21
- },
22
- status: {
23
- type: DataTypes.ENUM("pending", "processing", "completed", "failed", "retrying"),
24
- defaultValue: "pending",
25
- allowNull: false,
26
- },
27
- retry_count: {
28
- type: DataTypes.INTEGER,
29
- defaultValue: 0,
30
- field: "retry_count",
31
- },
32
- max_retries: {
33
- type: DataTypes.INTEGER,
34
- defaultValue: 3,
35
- field: "max_retries",
36
- },
37
- input_params: {
38
- type: DataTypes.JSONB,
39
- allowNull: true,
40
- field: "input_params",
41
- },
42
- output_result: {
43
- type: DataTypes.JSONB,
44
- allowNull: true,
45
- field: "output_result",
46
- },
47
- error_message: {
48
- type: DataTypes.TEXT,
49
- allowNull: true,
50
- field: "error_message",
51
- },
52
- error_stack: {
53
- type: DataTypes.TEXT,
54
- allowNull: true,
55
- field: "error_stack",
56
- },
57
- AGRS_CID: {
58
- type: DataTypes.STRING,
59
- allowNull: true,
60
- field: "AGRS_CID",
61
- },
62
- process_id: {
63
- type: DataTypes.STRING,
64
- allowNull: true,
65
- field: "process_id",
66
- },
67
- parent_request_id: {
68
- type: DataTypes.STRING,
69
- allowNull: true,
70
- field: "parent_request_id",
71
- },
72
- related_request_ids: {
73
- type: DataTypes.JSONB,
74
- allowNull: true,
75
- field: "related_request_ids",
76
- },
77
- metadata: {
78
- type: DataTypes.JSONB,
79
- allowNull: true,
80
- },
81
- processing_time_ms: {
82
- type: DataTypes.INTEGER,
83
- allowNull: true,
84
- field: "processing_time_ms",
85
- },
86
- started_at: {
87
- type: DataTypes.DATE,
88
- allowNull: true,
89
- field: "started_at",
90
- },
91
- completed_at: {
92
- type: DataTypes.DATE,
93
- allowNull: true,
94
- field: "completed_at",
95
- },
96
- failed_at: {
97
- type: DataTypes.DATE,
98
- allowNull: true,
99
- field: "failed_at",
100
- },
101
- last_retry_at: {
102
- type: DataTypes.DATE,
103
- allowNull: true,
104
- field: "last_retry_at",
105
- },
106
- },
107
- {
108
- tableName: "generic_flow_requests",
109
- timestamps: true, // Adds createdAt and updatedAt
110
- underscored: false, // We're using explicit field mappings
111
- }
112
- );
113
-
114
- return GenericFlowRequest;
1
+ // models/GenericFlowRequest.js
2
+ module.exports = (sequelize, DataTypes) => {
3
+ const GenericFlowRequest = sequelize.define(
4
+ "GenericFlowRequest",
5
+ {
6
+ id: {
7
+ type: DataTypes.BIGINT,
8
+ autoIncrement: true,
9
+ primaryKey: true,
10
+ },
11
+ request_id: {
12
+ type: DataTypes.STRING,
13
+ allowNull: false,
14
+ unique: true,
15
+ field: "request_id",
16
+ },
17
+ flow_type: {
18
+ type: DataTypes.ENUM("article", "texts", "keywords", "creative"),
19
+ allowNull: false,
20
+ field: "flow_type",
21
+ },
22
+ status: {
23
+ type: DataTypes.ENUM("pending", "processing", "completed", "failed", "retrying"),
24
+ defaultValue: "pending",
25
+ allowNull: false,
26
+ },
27
+ retry_count: {
28
+ type: DataTypes.INTEGER,
29
+ defaultValue: 0,
30
+ field: "retry_count",
31
+ },
32
+ max_retries: {
33
+ type: DataTypes.INTEGER,
34
+ defaultValue: 3,
35
+ field: "max_retries",
36
+ },
37
+ input_params: {
38
+ type: DataTypes.JSONB,
39
+ allowNull: true,
40
+ field: "input_params",
41
+ },
42
+ output_result: {
43
+ type: DataTypes.JSONB,
44
+ allowNull: true,
45
+ field: "output_result",
46
+ },
47
+ error_message: {
48
+ type: DataTypes.TEXT,
49
+ allowNull: true,
50
+ field: "error_message",
51
+ },
52
+ error_stack: {
53
+ type: DataTypes.TEXT,
54
+ allowNull: true,
55
+ field: "error_stack",
56
+ },
57
+ AGRS_CID: {
58
+ type: DataTypes.STRING,
59
+ allowNull: true,
60
+ field: "AGRS_CID",
61
+ },
62
+ process_id: {
63
+ type: DataTypes.STRING,
64
+ allowNull: true,
65
+ field: "process_id",
66
+ },
67
+ parent_request_id: {
68
+ type: DataTypes.STRING,
69
+ allowNull: true,
70
+ field: "parent_request_id",
71
+ },
72
+ related_request_ids: {
73
+ type: DataTypes.JSONB,
74
+ allowNull: true,
75
+ field: "related_request_ids",
76
+ },
77
+ metadata: {
78
+ type: DataTypes.JSONB,
79
+ allowNull: true,
80
+ },
81
+ processing_time_ms: {
82
+ type: DataTypes.INTEGER,
83
+ allowNull: true,
84
+ field: "processing_time_ms",
85
+ },
86
+ started_at: {
87
+ type: DataTypes.DATE,
88
+ allowNull: true,
89
+ field: "started_at",
90
+ },
91
+ completed_at: {
92
+ type: DataTypes.DATE,
93
+ allowNull: true,
94
+ field: "completed_at",
95
+ },
96
+ failed_at: {
97
+ type: DataTypes.DATE,
98
+ allowNull: true,
99
+ field: "failed_at",
100
+ },
101
+ last_retry_at: {
102
+ type: DataTypes.DATE,
103
+ allowNull: true,
104
+ field: "last_retry_at",
105
+ },
106
+ },
107
+ {
108
+ tableName: "generic_flow_requests",
109
+ timestamps: true, // Adds createdAt and updatedAt
110
+ underscored: false, // We're using explicit field mappings
111
+ }
112
+ );
113
+
114
+ return GenericFlowRequest;
115
115
  };
@@ -1,47 +1,47 @@
1
- module.exports = (sequelize, DataTypes) => {
2
- const MidoWebChannel = sequelize.define(
3
- "MidoWebChannel",
4
- {
5
- channelId: {
6
- type: DataTypes.STRING,
7
- allowNull: false,
8
- unique: true,
9
- },
10
- styleId: {
11
- type: DataTypes.STRING,
12
- allowNull: false,
13
- },
14
- status: {
15
- type: DataTypes.STRING,
16
- allowNull: false,
17
- defaultValue: "free",
18
- validate: {
19
- isIn: [["free", "used", "archived"]],
20
- },
21
- },
22
- connectedCampaigns: {
23
- type: DataTypes.JSONB, // Use JSONB for better querying capabilities
24
- allowNull: false,
25
- defaultValue: [],
26
- },
27
- },
28
- {
29
- tableName: "mido_web_channels",
30
- timestamps: true,
31
- }
32
- );
33
-
34
- // Define associations without enforcing constraints
35
- MidoWebChannel.associate = (models) => {
36
- if (models.RSOCFeedCampaign) {
37
- MidoWebChannel.hasMany(models.RSOCFeedCampaign, {
38
- foreignKey: "channelId",
39
- sourceKey: "channelId",
40
- as: "RSOCFeedCampaigns",
41
- constraints: false, // Disable FK constraint
42
- });
43
- }
44
- };
45
-
46
- return MidoWebChannel;
47
- };
1
+ module.exports = (sequelize, DataTypes) => {
2
+ const MidoWebChannel = sequelize.define(
3
+ "MidoWebChannel",
4
+ {
5
+ channelId: {
6
+ type: DataTypes.STRING,
7
+ allowNull: false,
8
+ unique: true,
9
+ },
10
+ styleId: {
11
+ type: DataTypes.STRING,
12
+ allowNull: false,
13
+ },
14
+ status: {
15
+ type: DataTypes.STRING,
16
+ allowNull: false,
17
+ defaultValue: "free",
18
+ validate: {
19
+ isIn: [["free", "used", "archived"]],
20
+ },
21
+ },
22
+ connectedCampaigns: {
23
+ type: DataTypes.JSONB, // Use JSONB for better querying capabilities
24
+ allowNull: false,
25
+ defaultValue: [],
26
+ },
27
+ },
28
+ {
29
+ tableName: "mido_web_channels",
30
+ timestamps: true,
31
+ }
32
+ );
33
+
34
+ // Define associations without enforcing constraints
35
+ MidoWebChannel.associate = (models) => {
36
+ if (models.RSOCFeedCampaign) {
37
+ MidoWebChannel.hasMany(models.RSOCFeedCampaign, {
38
+ foreignKey: "channelId",
39
+ sourceKey: "channelId",
40
+ as: "RSOCFeedCampaigns",
41
+ constraints: false, // Disable FK constraint
42
+ });
43
+ }
44
+ };
45
+
46
+ return MidoWebChannel;
47
+ };
@@ -1,43 +1,43 @@
1
- module.exports = (sequelize, DataTypes) => {
2
- const MineChannel = sequelize.define(
3
- "MineChannel",
4
- {
5
- channelId: {
6
- type: DataTypes.STRING,
7
- allowNull: false,
8
- // Not setting as primary key or unique since duplicates are allowed
9
- },
10
- status: {
11
- type: DataTypes.STRING,
12
- allowNull: false,
13
- defaultValue: "free",
14
- validate: {
15
- isIn: [["free", "used", "archived"]],
16
- },
17
- },
18
- connectedCampaigns: {
19
- type: DataTypes.JSONB, // Use JSONB for better querying capabilities
20
- allowNull: false,
21
- defaultValue: [],
22
- },
23
- },
24
- {
25
- tableName: "mine_channels",
26
- timestamps: true,
27
- }
28
- );
29
-
30
- // Define associations without enforcing constraints
31
- MineChannel.associate = (models) => {
32
- if (models.RSOCFeedCampaign) {
33
- MineChannel.hasMany(models.RSOCFeedCampaign, {
34
- foreignKey: "channelId",
35
- sourceKey: "channelId",
36
- as: "RSOCFeedCampaigns",
37
- constraints: false, // Disable FK constraint
38
- });
39
- }
40
- };
41
-
42
- return MineChannel;
1
+ module.exports = (sequelize, DataTypes) => {
2
+ const MineChannel = sequelize.define(
3
+ "MineChannel",
4
+ {
5
+ channelId: {
6
+ type: DataTypes.STRING,
7
+ allowNull: false,
8
+ // Not setting as primary key or unique since duplicates are allowed
9
+ },
10
+ status: {
11
+ type: DataTypes.STRING,
12
+ allowNull: false,
13
+ defaultValue: "free",
14
+ validate: {
15
+ isIn: [["free", "used", "archived"]],
16
+ },
17
+ },
18
+ connectedCampaigns: {
19
+ type: DataTypes.JSONB, // Use JSONB for better querying capabilities
20
+ allowNull: false,
21
+ defaultValue: [],
22
+ },
23
+ },
24
+ {
25
+ tableName: "mine_channels",
26
+ timestamps: true,
27
+ }
28
+ );
29
+
30
+ // Define associations without enforcing constraints
31
+ MineChannel.associate = (models) => {
32
+ if (models.RSOCFeedCampaign) {
33
+ MineChannel.hasMany(models.RSOCFeedCampaign, {
34
+ foreignKey: "channelId",
35
+ sourceKey: "channelId",
36
+ as: "RSOCFeedCampaigns",
37
+ constraints: false, // Disable FK constraint
38
+ });
39
+ }
40
+ };
41
+
42
+ return MineChannel;
43
43
  };