agrs-sequelize-sdk 1.2.99 → 1.3.1

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 (47) hide show
  1. package/migrations/add-requested-from-dashboard-to-articles.js +17 -17
  2. package/models/AdAccountValues.js +25 -25
  3. package/models/AdHistory.js +30 -30
  4. package/models/AdPerformance.js +94 -94
  5. package/models/AdSet.js +289 -289
  6. package/models/AdSetHistory.js +30 -30
  7. package/models/AdsetPerformance.js +126 -126
  8. package/models/Article.js +190 -190
  9. package/models/AutomationRule.js +161 -127
  10. package/models/Buyers.js +25 -25
  11. package/models/Campaign.js +157 -157
  12. package/models/CampaignActionHistory.js +86 -86
  13. package/models/CampaignCreationLog.js +309 -309
  14. package/models/CampaignHistory.js +33 -33
  15. package/models/Channel.js +55 -55
  16. package/models/Domain.js +25 -25
  17. package/models/DynamicFeed.js +212 -212
  18. package/models/ExplorAdsChannel.js +61 -61
  19. package/models/Feed.js +33 -33
  20. package/models/FrontStoryChannel.js +59 -59
  21. package/models/MineChannel.js +42 -42
  22. package/models/Pages.js +81 -81
  23. package/models/PipelineExecution.js +59 -59
  24. package/models/Presets.js +34 -34
  25. package/models/RSOCFeedCampaign.js +357 -357
  26. package/models/RsocKeywordPerformance.js +110 -110
  27. package/models/RuleAction.js +90 -90
  28. package/models/RuleCondition.js +98 -98
  29. package/models/RuleExecution.js +107 -107
  30. package/models/RulesValues.js +56 -56
  31. package/models/SupportedLocale.js +23 -23
  32. package/models/SyncHistory.js +249 -249
  33. package/models/Tier2_AdAccounts.js +110 -110
  34. package/models/Tier2_Assets.js +70 -70
  35. package/models/Tier2_BusinessManagers.js +105 -105
  36. package/models/Tier2_CreditLines.js +99 -99
  37. package/models/Tier2_Pages.js +91 -91
  38. package/models/Tier2_Pixels.js +82 -82
  39. package/models/Tier2_Tokens.js +64 -64
  40. package/models/Tier2_UserAdAccounts.js +83 -83
  41. package/models/TokenRotationState.js +121 -121
  42. package/models/TonicRSOCKeywordPerformance.js +122 -122
  43. package/models/Vertical.js +25 -25
  44. package/models/newFiles.js +110 -110
  45. package/package.json +19 -21
  46. package/run.sh +214 -214
  47. package/services/sequelizeService.js +63 -63
@@ -1,107 +1,107 @@
1
- const { DataTypes } = require("sequelize");
2
-
3
- module.exports = (sequelize) => {
4
- const RuleExecution = sequelize.define(
5
- "RuleExecution",
6
- {
7
- id: {
8
- type: DataTypes.UUID,
9
- defaultValue: DataTypes.UUIDV4,
10
- primaryKey: true,
11
- },
12
- ruleId: {
13
- type: DataTypes.UUID,
14
- allowNull: false,
15
- references: {
16
- model: "AutomationRule",
17
- key: "id",
18
- },
19
- comment: "Reference to the executed rule",
20
- },
21
- executionType: {
22
- type: DataTypes.ENUM("SCHEDULED", "MANUAL", "API_TRIGGER"),
23
- allowNull: false,
24
- comment: "How the rule was triggered",
25
- },
26
- status: {
27
- type: DataTypes.ENUM("RUNNING", "SUCCESS", "FAILED", "PARTIAL_SUCCESS"),
28
- allowNull: false,
29
- comment: "Execution status",
30
- },
31
- startTime: {
32
- type: DataTypes.DATE,
33
- allowNull: false,
34
- comment: "When execution started",
35
- },
36
- endTime: {
37
- type: DataTypes.DATE,
38
- allowNull: true,
39
- comment: "When execution completed",
40
- },
41
- duration: {
42
- type: DataTypes.INTEGER,
43
- allowNull: true,
44
- comment: "Execution duration in milliseconds",
45
- },
46
- itemsEvaluated: {
47
- type: DataTypes.INTEGER,
48
- defaultValue: 0,
49
- allowNull: false,
50
- comment: "Number of items (campaigns/adsets/ads) evaluated",
51
- },
52
- itemsMatched: {
53
- type: DataTypes.INTEGER,
54
- defaultValue: 0,
55
- allowNull: false,
56
- comment: "Number of items that matched the conditions",
57
- },
58
- actionsExecuted: {
59
- type: DataTypes.INTEGER,
60
- defaultValue: 0,
61
- allowNull: false,
62
- comment: "Number of actions successfully executed",
63
- },
64
- actionsFailed: {
65
- type: DataTypes.INTEGER,
66
- defaultValue: 0,
67
- allowNull: false,
68
- comment: "Number of actions that failed",
69
- },
70
- errorMessage: {
71
- type: DataTypes.TEXT,
72
- allowNull: true,
73
- comment: "Error message if execution failed",
74
- },
75
- executionDetails: {
76
- type: DataTypes.JSONB,
77
- allowNull: true,
78
- comment: "Detailed execution results and logs",
79
- },
80
- matchedItems: {
81
- type: DataTypes.JSONB,
82
- allowNull: true,
83
- comment: "List of items that matched the rule conditions and had actions applied",
84
- },
85
- triggeredBy: {
86
- type: DataTypes.STRING(255),
87
- allowNull: true,
88
- comment: "User or system that triggered the execution",
89
- },
90
- },
91
- {
92
- tableName: "RuleExecutions",
93
- timestamps: true,
94
- // Remove indexes from model definition - they will be created by migration
95
- }
96
- );
97
-
98
- RuleExecution.associate = (models) => {
99
- // An execution belongs to a rule
100
- RuleExecution.belongsTo(models.AutomationRule, {
101
- foreignKey: "ruleId",
102
- as: "rule",
103
- });
104
- };
105
-
106
- return RuleExecution;
107
- };
1
+ const { DataTypes } = require("sequelize");
2
+
3
+ module.exports = (sequelize) => {
4
+ const RuleExecution = sequelize.define(
5
+ "RuleExecution",
6
+ {
7
+ id: {
8
+ type: DataTypes.UUID,
9
+ defaultValue: DataTypes.UUIDV4,
10
+ primaryKey: true,
11
+ },
12
+ ruleId: {
13
+ type: DataTypes.UUID,
14
+ allowNull: false,
15
+ references: {
16
+ model: "AutomationRule",
17
+ key: "id",
18
+ },
19
+ comment: "Reference to the executed rule",
20
+ },
21
+ executionType: {
22
+ type: DataTypes.ENUM("SCHEDULED", "MANUAL", "API_TRIGGER"),
23
+ allowNull: false,
24
+ comment: "How the rule was triggered",
25
+ },
26
+ status: {
27
+ type: DataTypes.ENUM("RUNNING", "SUCCESS", "FAILED", "PARTIAL_SUCCESS"),
28
+ allowNull: false,
29
+ comment: "Execution status",
30
+ },
31
+ startTime: {
32
+ type: DataTypes.DATE,
33
+ allowNull: false,
34
+ comment: "When execution started",
35
+ },
36
+ endTime: {
37
+ type: DataTypes.DATE,
38
+ allowNull: true,
39
+ comment: "When execution completed",
40
+ },
41
+ duration: {
42
+ type: DataTypes.INTEGER,
43
+ allowNull: true,
44
+ comment: "Execution duration in milliseconds",
45
+ },
46
+ itemsEvaluated: {
47
+ type: DataTypes.INTEGER,
48
+ defaultValue: 0,
49
+ allowNull: false,
50
+ comment: "Number of items (campaigns/adsets/ads) evaluated",
51
+ },
52
+ itemsMatched: {
53
+ type: DataTypes.INTEGER,
54
+ defaultValue: 0,
55
+ allowNull: false,
56
+ comment: "Number of items that matched the conditions",
57
+ },
58
+ actionsExecuted: {
59
+ type: DataTypes.INTEGER,
60
+ defaultValue: 0,
61
+ allowNull: false,
62
+ comment: "Number of actions successfully executed",
63
+ },
64
+ actionsFailed: {
65
+ type: DataTypes.INTEGER,
66
+ defaultValue: 0,
67
+ allowNull: false,
68
+ comment: "Number of actions that failed",
69
+ },
70
+ errorMessage: {
71
+ type: DataTypes.TEXT,
72
+ allowNull: true,
73
+ comment: "Error message if execution failed",
74
+ },
75
+ executionDetails: {
76
+ type: DataTypes.JSONB,
77
+ allowNull: true,
78
+ comment: "Detailed execution results and logs",
79
+ },
80
+ matchedItems: {
81
+ type: DataTypes.JSONB,
82
+ allowNull: true,
83
+ comment: "List of items that matched the rule conditions and had actions applied",
84
+ },
85
+ triggeredBy: {
86
+ type: DataTypes.STRING(255),
87
+ allowNull: true,
88
+ comment: "User or system that triggered the execution",
89
+ },
90
+ },
91
+ {
92
+ tableName: "RuleExecutions",
93
+ timestamps: true,
94
+ // Remove indexes from model definition - they will be created by migration
95
+ }
96
+ );
97
+
98
+ RuleExecution.associate = (models) => {
99
+ // An execution belongs to a rule
100
+ RuleExecution.belongsTo(models.AutomationRule, {
101
+ foreignKey: "ruleId",
102
+ as: "rule",
103
+ });
104
+ };
105
+
106
+ return RuleExecution;
107
+ };
@@ -1,56 +1,56 @@
1
- module.exports = (sequelize, DataTypes) => {
2
- const RulesValues = sequelize.define(
3
- "RulesValues",
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
- permissions: {
20
- type: DataTypes.ARRAY(DataTypes.STRING),
21
- allowNull: false,
22
- defaultValue: [],
23
- },
24
- feature: {
25
- type: DataTypes.STRING,
26
- allowNull: true,
27
- },
28
- parentId: {
29
- type: DataTypes.UUID,
30
- allowNull: true,
31
- references: {
32
- model: "RulesValues",
33
- key: "id",
34
- },
35
- onDelete: "CASCADE",
36
- },
37
- },
38
- {
39
- tableName: "RulesValues",
40
- }
41
- );
42
-
43
- // Self-referential association to define sub-rules
44
- RulesValues.hasMany(RulesValues, {
45
- as: "subRules",
46
- foreignKey: "parentId",
47
- onDelete: "CASCADE",
48
- });
49
-
50
- RulesValues.belongsTo(RulesValues, {
51
- as: "parentRule",
52
- foreignKey: "parentId",
53
- });
54
-
55
- return RulesValues;
56
- };
1
+ module.exports = (sequelize, DataTypes) => {
2
+ const RulesValues = sequelize.define(
3
+ "RulesValues",
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
+ permissions: {
20
+ type: DataTypes.ARRAY(DataTypes.STRING),
21
+ allowNull: false,
22
+ defaultValue: [],
23
+ },
24
+ feature: {
25
+ type: DataTypes.STRING,
26
+ allowNull: true,
27
+ },
28
+ parentId: {
29
+ type: DataTypes.UUID,
30
+ allowNull: true,
31
+ references: {
32
+ model: "RulesValues",
33
+ key: "id",
34
+ },
35
+ onDelete: "CASCADE",
36
+ },
37
+ },
38
+ {
39
+ tableName: "RulesValues",
40
+ }
41
+ );
42
+
43
+ // Self-referential association to define sub-rules
44
+ RulesValues.hasMany(RulesValues, {
45
+ as: "subRules",
46
+ foreignKey: "parentId",
47
+ onDelete: "CASCADE",
48
+ });
49
+
50
+ RulesValues.belongsTo(RulesValues, {
51
+ as: "parentRule",
52
+ foreignKey: "parentId",
53
+ });
54
+
55
+ return RulesValues;
56
+ };
@@ -1,24 +1,24 @@
1
- module.exports = (sequelize, DataTypes) => {
2
- const SupportedLocale = sequelize.define('SupportedLocale', {
3
- country: {
4
- type: DataTypes.STRING,
5
- allowNull: false,
6
- },
7
- locale: {
8
- type: DataTypes.STRING,
9
- allowNull: false,
10
- },
11
- language: {
12
- type: DataTypes.STRING,
13
- allowNull: true,
14
- comment: 'Language code (e.g., en, es, fr)'
15
- }
16
- });
17
-
18
- // Define associations if needed in the future
19
- // SupportedLocale.associate = (models) => {
20
- // // e.g., SupportedLocale.hasMany(models.OtherModel);
21
- // };
22
-
23
- return SupportedLocale;
1
+ module.exports = (sequelize, DataTypes) => {
2
+ const SupportedLocale = sequelize.define('SupportedLocale', {
3
+ country: {
4
+ type: DataTypes.STRING,
5
+ allowNull: false,
6
+ },
7
+ locale: {
8
+ type: DataTypes.STRING,
9
+ allowNull: false,
10
+ },
11
+ language: {
12
+ type: DataTypes.STRING,
13
+ allowNull: true,
14
+ comment: 'Language code (e.g., en, es, fr)'
15
+ }
16
+ });
17
+
18
+ // Define associations if needed in the future
19
+ // SupportedLocale.associate = (models) => {
20
+ // // e.g., SupportedLocale.hasMany(models.OtherModel);
21
+ // };
22
+
23
+ return SupportedLocale;
24
24
  };