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
@@ -1,83 +1,83 @@
1
- module.exports = (sequelize, DataTypes) => {
2
- const Tier2_UserAdAccounts = sequelize.define(
3
- "Tier2_UserAdAccounts",
4
- {
5
- id: {
6
- type: DataTypes.UUID,
7
- defaultValue: DataTypes.UUIDV4,
8
- primaryKey: true,
9
- },
10
- userId: {
11
- type: DataTypes.STRING,
12
- allowNull: false,
13
- comment: "User ID (can be internal system ID or external ID)",
14
- },
15
- adAccountId: {
16
- type: DataTypes.UUID,
17
- allowNull: false,
18
- references: {
19
- model: "Tier2_AdAccounts",
20
- key: "id",
21
- },
22
- onUpdate: "CASCADE",
23
- onDelete: "CASCADE",
24
- },
25
- facebookAdAccountId: {
26
- type: DataTypes.STRING,
27
- allowNull: false,
28
- comment: "Facebook Ad Account ID (for quick reference)",
29
- },
30
- permissions: {
31
- type: DataTypes.ARRAY(DataTypes.STRING),
32
- allowNull: false,
33
- defaultValue: ["view", "create_campaigns", "view_performance"],
34
- comment:
35
- "Permissions: view, create_campaigns, edit_campaigns, view_performance, manage_assets",
36
- },
37
- assignedAt: {
38
- type: DataTypes.DATE,
39
- allowNull: false,
40
- defaultValue: DataTypes.NOW,
41
- },
42
- assignedBy: {
43
- type: DataTypes.STRING,
44
- allowNull: true,
45
- comment: "User ID who assigned this ad account",
46
- },
47
- status: {
48
- type: DataTypes.ENUM("active", "suspended", "revoked"),
49
- allowNull: false,
50
- defaultValue: "active",
51
- },
52
- },
53
- {
54
- tableName: "Tier2_UserAdAccounts",
55
- indexes: [
56
- {
57
- fields: ["userId"],
58
- },
59
- {
60
- fields: ["adAccountId"],
61
- },
62
- {
63
- fields: ["facebookAdAccountId"],
64
- },
65
- {
66
- unique: true,
67
- fields: ["userId", "adAccountId"],
68
- name: "unique_user_ad_account",
69
- },
70
- ],
71
- }
72
- );
73
-
74
- Tier2_UserAdAccounts.associate = (models) => {
75
- // Association with Tier2_AdAccounts
76
- Tier2_UserAdAccounts.belongsTo(models.Tier2_AdAccounts, {
77
- foreignKey: "adAccountId",
78
- as: "adAccount",
79
- });
80
- };
81
-
82
- return Tier2_UserAdAccounts;
83
- };
1
+ module.exports = (sequelize, DataTypes) => {
2
+ const Tier2_UserAdAccounts = sequelize.define(
3
+ "Tier2_UserAdAccounts",
4
+ {
5
+ id: {
6
+ type: DataTypes.UUID,
7
+ defaultValue: DataTypes.UUIDV4,
8
+ primaryKey: true,
9
+ },
10
+ userId: {
11
+ type: DataTypes.STRING,
12
+ allowNull: false,
13
+ comment: "User ID (can be internal system ID or external ID)",
14
+ },
15
+ adAccountId: {
16
+ type: DataTypes.UUID,
17
+ allowNull: false,
18
+ references: {
19
+ model: "Tier2_AdAccounts",
20
+ key: "id",
21
+ },
22
+ onUpdate: "CASCADE",
23
+ onDelete: "CASCADE",
24
+ },
25
+ facebookAdAccountId: {
26
+ type: DataTypes.STRING,
27
+ allowNull: false,
28
+ comment: "Facebook Ad Account ID (for quick reference)",
29
+ },
30
+ permissions: {
31
+ type: DataTypes.ARRAY(DataTypes.STRING),
32
+ allowNull: false,
33
+ defaultValue: ["view", "create_campaigns", "view_performance"],
34
+ comment:
35
+ "Permissions: view, create_campaigns, edit_campaigns, view_performance, manage_assets",
36
+ },
37
+ assignedAt: {
38
+ type: DataTypes.DATE,
39
+ allowNull: false,
40
+ defaultValue: DataTypes.NOW,
41
+ },
42
+ assignedBy: {
43
+ type: DataTypes.STRING,
44
+ allowNull: true,
45
+ comment: "User ID who assigned this ad account",
46
+ },
47
+ status: {
48
+ type: DataTypes.ENUM("active", "suspended", "revoked"),
49
+ allowNull: false,
50
+ defaultValue: "active",
51
+ },
52
+ },
53
+ {
54
+ tableName: "Tier2_UserAdAccounts",
55
+ indexes: [
56
+ {
57
+ fields: ["userId"],
58
+ },
59
+ {
60
+ fields: ["adAccountId"],
61
+ },
62
+ {
63
+ fields: ["facebookAdAccountId"],
64
+ },
65
+ {
66
+ unique: true,
67
+ fields: ["userId", "adAccountId"],
68
+ name: "unique_user_ad_account",
69
+ },
70
+ ],
71
+ }
72
+ );
73
+
74
+ Tier2_UserAdAccounts.associate = (models) => {
75
+ // Association with Tier2_AdAccounts
76
+ Tier2_UserAdAccounts.belongsTo(models.Tier2_AdAccounts, {
77
+ foreignKey: "adAccountId",
78
+ as: "adAccount",
79
+ });
80
+ };
81
+
82
+ return Tier2_UserAdAccounts;
83
+ };
@@ -1,121 +1,121 @@
1
- // models/TokenRotationState.js
2
- module.exports = (sequelize, DataTypes) => {
3
- const TokenRotationState = sequelize.define(
4
- "TokenRotationState",
5
- {
6
- id: {
7
- type: DataTypes.INTEGER,
8
- primaryKey: true,
9
- autoIncrement: true,
10
- },
11
- tokenType: {
12
- type: DataTypes.STRING,
13
- allowNull: false,
14
- unique: true,
15
- defaultValue: "FACEBOOK_ACCESS_TOKEN",
16
- comment: "Type of token being rotated (e.g., FACEBOOK_ACCESS_TOKEN)",
17
- },
18
- currentIndex: {
19
- type: DataTypes.INTEGER,
20
- allowNull: false,
21
- defaultValue: 0,
22
- comment: "Current index in the token rotation (0-based)",
23
- },
24
- totalTokens: {
25
- type: DataTypes.INTEGER,
26
- allowNull: false,
27
- defaultValue: 10,
28
- comment: "Total number of tokens in rotation",
29
- },
30
- lastUsedAt: {
31
- type: DataTypes.DATE,
32
- allowNull: true,
33
- comment: "Timestamp of last token usage",
34
- },
35
- totalUsageCount: {
36
- type: DataTypes.BIGINT,
37
- allowNull: false,
38
- defaultValue: 0,
39
- comment: "Total number of times tokens have been used",
40
- },
41
- rotationStrategy: {
42
- type: DataTypes.ENUM("round_robin", "least_used", "random"),
43
- allowNull: false,
44
- defaultValue: "round_robin",
45
- comment: "Strategy for token rotation",
46
- },
47
- metadata: {
48
- type: DataTypes.JSONB,
49
- allowNull: true,
50
- comment: "Additional metadata (per-token usage stats, health, etc.)",
51
- },
52
- },
53
- {
54
- tableName: "TokenRotationState",
55
- timestamps: true, // Adds createdAt and updatedAt
56
- indexes: [
57
- {
58
- fields: ["tokenType"],
59
- unique: true,
60
- name: "idx_token_rotation_type",
61
- },
62
- {
63
- fields: ["lastUsedAt"],
64
- name: "idx_token_rotation_last_used",
65
- },
66
- ],
67
- }
68
- );
69
-
70
- // Instance methods
71
- TokenRotationState.prototype.incrementUsage = async function () {
72
- this.totalUsageCount = (
73
- BigInt(this.totalUsageCount) + BigInt(1)
74
- ).toString();
75
- this.lastUsedAt = new Date();
76
- await this.save();
77
- };
78
-
79
- TokenRotationState.prototype.rotateToNext = async function () {
80
- this.currentIndex = (this.currentIndex + 1) % this.totalTokens;
81
- await this.save();
82
- };
83
-
84
- TokenRotationState.prototype.getCurrentTokenNumber = function () {
85
- return this.currentIndex + 1; // Return 1-based index
86
- };
87
-
88
- // Static methods
89
- TokenRotationState.getOrCreate = async function (
90
- tokenType = "FACEBOOK_ACCESS_TOKEN"
91
- ) {
92
- const [state, created] = await this.findOrCreate({
93
- where: { tokenType },
94
- defaults: {
95
- tokenType,
96
- currentIndex: 0,
97
- totalTokens: 10,
98
- rotationStrategy: "round_robin",
99
- },
100
- });
101
- return state;
102
- };
103
-
104
- TokenRotationState.getStats = async function (
105
- tokenType = "FACEBOOK_ACCESS_TOKEN"
106
- ) {
107
- const state = await this.findOne({ where: { tokenType } });
108
- if (!state) return null;
109
-
110
- return {
111
- currentTokenNumber: state.getCurrentTokenNumber(),
112
- totalTokens: state.totalTokens,
113
- totalUsageCount: state.totalUsageCount.toString(),
114
- lastUsedAt: state.lastUsedAt,
115
- rotationStrategy: state.rotationStrategy,
116
- metadata: state.metadata,
117
- };
118
- };
119
-
120
- return TokenRotationState;
121
- };
1
+ // models/TokenRotationState.js
2
+ module.exports = (sequelize, DataTypes) => {
3
+ const TokenRotationState = sequelize.define(
4
+ "TokenRotationState",
5
+ {
6
+ id: {
7
+ type: DataTypes.INTEGER,
8
+ primaryKey: true,
9
+ autoIncrement: true,
10
+ },
11
+ tokenType: {
12
+ type: DataTypes.STRING,
13
+ allowNull: false,
14
+ unique: true,
15
+ defaultValue: "FACEBOOK_ACCESS_TOKEN",
16
+ comment: "Type of token being rotated (e.g., FACEBOOK_ACCESS_TOKEN)",
17
+ },
18
+ currentIndex: {
19
+ type: DataTypes.INTEGER,
20
+ allowNull: false,
21
+ defaultValue: 0,
22
+ comment: "Current index in the token rotation (0-based)",
23
+ },
24
+ totalTokens: {
25
+ type: DataTypes.INTEGER,
26
+ allowNull: false,
27
+ defaultValue: 10,
28
+ comment: "Total number of tokens in rotation",
29
+ },
30
+ lastUsedAt: {
31
+ type: DataTypes.DATE,
32
+ allowNull: true,
33
+ comment: "Timestamp of last token usage",
34
+ },
35
+ totalUsageCount: {
36
+ type: DataTypes.BIGINT,
37
+ allowNull: false,
38
+ defaultValue: 0,
39
+ comment: "Total number of times tokens have been used",
40
+ },
41
+ rotationStrategy: {
42
+ type: DataTypes.ENUM("round_robin", "least_used", "random"),
43
+ allowNull: false,
44
+ defaultValue: "round_robin",
45
+ comment: "Strategy for token rotation",
46
+ },
47
+ metadata: {
48
+ type: DataTypes.JSONB,
49
+ allowNull: true,
50
+ comment: "Additional metadata (per-token usage stats, health, etc.)",
51
+ },
52
+ },
53
+ {
54
+ tableName: "TokenRotationState",
55
+ timestamps: true, // Adds createdAt and updatedAt
56
+ indexes: [
57
+ {
58
+ fields: ["tokenType"],
59
+ unique: true,
60
+ name: "idx_token_rotation_type",
61
+ },
62
+ {
63
+ fields: ["lastUsedAt"],
64
+ name: "idx_token_rotation_last_used",
65
+ },
66
+ ],
67
+ }
68
+ );
69
+
70
+ // Instance methods
71
+ TokenRotationState.prototype.incrementUsage = async function () {
72
+ this.totalUsageCount = (
73
+ BigInt(this.totalUsageCount) + BigInt(1)
74
+ ).toString();
75
+ this.lastUsedAt = new Date();
76
+ await this.save();
77
+ };
78
+
79
+ TokenRotationState.prototype.rotateToNext = async function () {
80
+ this.currentIndex = (this.currentIndex + 1) % this.totalTokens;
81
+ await this.save();
82
+ };
83
+
84
+ TokenRotationState.prototype.getCurrentTokenNumber = function () {
85
+ return this.currentIndex + 1; // Return 1-based index
86
+ };
87
+
88
+ // Static methods
89
+ TokenRotationState.getOrCreate = async function (
90
+ tokenType = "FACEBOOK_ACCESS_TOKEN"
91
+ ) {
92
+ const [state, created] = await this.findOrCreate({
93
+ where: { tokenType },
94
+ defaults: {
95
+ tokenType,
96
+ currentIndex: 0,
97
+ totalTokens: 10,
98
+ rotationStrategy: "round_robin",
99
+ },
100
+ });
101
+ return state;
102
+ };
103
+
104
+ TokenRotationState.getStats = async function (
105
+ tokenType = "FACEBOOK_ACCESS_TOKEN"
106
+ ) {
107
+ const state = await this.findOne({ where: { tokenType } });
108
+ if (!state) return null;
109
+
110
+ return {
111
+ currentTokenNumber: state.getCurrentTokenNumber(),
112
+ totalTokens: state.totalTokens,
113
+ totalUsageCount: state.totalUsageCount.toString(),
114
+ lastUsedAt: state.lastUsedAt,
115
+ rotationStrategy: state.rotationStrategy,
116
+ metadata: state.metadata,
117
+ };
118
+ };
119
+
120
+ return TokenRotationState;
121
+ };
@@ -1,123 +1,123 @@
1
- module.exports = (sequelize, DataTypes) => {
2
- const TonicRSOCKeywordPerformance = sequelize.define(
3
- "TonicRSOCKeywordPerformance",
4
- {
5
- Date: {
6
- type: DataTypes.DATEONLY,
7
- primaryKey: true,
8
- },
9
- adID: {
10
- type: DataTypes.STRING,
11
- references: {
12
- model: "Ad",
13
- key: "AdID",
14
- },
15
- foreignKey: true,
16
- primaryKey: true,
17
- },
18
- Keyword: {
19
- type: DataTypes.STRING,
20
- allowNull: false,
21
- primaryKey: true,
22
- },
23
- Country: {
24
- type: DataTypes.STRING,
25
- allowNull: false,
26
- primaryKey: true, // ✅ Country is now part of primary key
27
- },
28
- Revenue: {
29
- type: DataTypes.FLOAT,
30
- allowNull: false,
31
- },
32
- Clicks: {
33
- type: DataTypes.INTEGER,
34
- allowNull: false,
35
- },
36
- TemplatedKeyword: {
37
- type: DataTypes.STRING,
38
- allowNull: true,
39
- },
40
- FirstAppearanceDate: {
41
- type: DataTypes.DATEONLY,
42
- allowNull: true,
43
- },
44
- },
45
- {
46
- tableName: "TonicRSOCKeywordPerformance",
47
- indexes: [
48
- {
49
- unique: true,
50
- fields: ["Date", "adID", "Keyword", "Country"],
51
- name: "tonic_primary_idx" // ✅ Custom short name
52
- },
53
- {
54
- fields: ["Date"],
55
- name: "tonic_date_idx"
56
- },
57
- {
58
- fields: ["adID"],
59
- name: "tonic_adid_idx"
60
- },
61
- {
62
- fields: ["Keyword"],
63
- name: "tonic_keyword_idx"
64
- },
65
- {
66
- fields: ["Country"],
67
- name: "tonic_country_idx"
68
- },
69
- {
70
- fields: ["Revenue"],
71
- name: "tonic_revenue_idx"
72
- },
73
- {
74
- fields: ["Clicks"],
75
- name: "tonic_clicks_idx"
76
- },
77
- {
78
- fields: ["Country", "Date"],
79
- name: "tonic_country_date_idx"
80
- },
81
- {
82
- fields: ["Keyword", "Country"],
83
- name: "tonic_keyword_country_idx"
84
- },
85
- {
86
- fields: ["Date", "Revenue"],
87
- name: "tonic_date_revenue_idx"
88
- },
89
- ],
90
- hooks: {
91
- beforeCreate: async (record, options) => {
92
- try {
93
- const existingKeyword = await sequelize.models.TonicRSOCKeywordPerformance.findOne({
94
- where: {
95
- Keyword: sequelize.where(
96
- sequelize.fn("LOWER", sequelize.col("Keyword")),
97
- sequelize.fn("LOWER", record.Keyword)
98
- ),
99
- Country: record.Country,
100
- },
101
- attributes: ["FirstAppearanceDate"],
102
- transaction: options.transaction,
103
- });
104
-
105
- record.FirstAppearanceDate =
106
- existingKeyword?.FirstAppearanceDate || record.Date;
107
- } catch (error) {
108
- console.error("Error in TonicRSOCKeywordPerformance FirstAppearanceDate hook:", error);
109
- throw error;
110
- }
111
- },
112
- },
113
- }
114
- );
115
-
116
- TonicRSOCKeywordPerformance.associate = (models) => {
117
- TonicRSOCKeywordPerformance.belongsTo(models.Ad, {
118
- foreignKey: "adID",
119
- });
120
- };
121
-
122
- return TonicRSOCKeywordPerformance;
1
+ module.exports = (sequelize, DataTypes) => {
2
+ const TonicRSOCKeywordPerformance = sequelize.define(
3
+ "TonicRSOCKeywordPerformance",
4
+ {
5
+ Date: {
6
+ type: DataTypes.DATEONLY,
7
+ primaryKey: true,
8
+ },
9
+ adID: {
10
+ type: DataTypes.STRING,
11
+ references: {
12
+ model: "Ad",
13
+ key: "AdID",
14
+ },
15
+ foreignKey: true,
16
+ primaryKey: true,
17
+ },
18
+ Keyword: {
19
+ type: DataTypes.STRING,
20
+ allowNull: false,
21
+ primaryKey: true,
22
+ },
23
+ Country: {
24
+ type: DataTypes.STRING,
25
+ allowNull: false,
26
+ primaryKey: true, // ✅ Country is now part of primary key
27
+ },
28
+ Revenue: {
29
+ type: DataTypes.FLOAT,
30
+ allowNull: false,
31
+ },
32
+ Clicks: {
33
+ type: DataTypes.INTEGER,
34
+ allowNull: false,
35
+ },
36
+ TemplatedKeyword: {
37
+ type: DataTypes.STRING,
38
+ allowNull: true,
39
+ },
40
+ FirstAppearanceDate: {
41
+ type: DataTypes.DATEONLY,
42
+ allowNull: true,
43
+ },
44
+ },
45
+ {
46
+ tableName: "TonicRSOCKeywordPerformance",
47
+ indexes: [
48
+ {
49
+ unique: true,
50
+ fields: ["Date", "adID", "Keyword", "Country"],
51
+ name: "tonic_primary_idx" // ✅ Custom short name
52
+ },
53
+ {
54
+ fields: ["Date"],
55
+ name: "tonic_date_idx"
56
+ },
57
+ {
58
+ fields: ["adID"],
59
+ name: "tonic_adid_idx"
60
+ },
61
+ {
62
+ fields: ["Keyword"],
63
+ name: "tonic_keyword_idx"
64
+ },
65
+ {
66
+ fields: ["Country"],
67
+ name: "tonic_country_idx"
68
+ },
69
+ {
70
+ fields: ["Revenue"],
71
+ name: "tonic_revenue_idx"
72
+ },
73
+ {
74
+ fields: ["Clicks"],
75
+ name: "tonic_clicks_idx"
76
+ },
77
+ {
78
+ fields: ["Country", "Date"],
79
+ name: "tonic_country_date_idx"
80
+ },
81
+ {
82
+ fields: ["Keyword", "Country"],
83
+ name: "tonic_keyword_country_idx"
84
+ },
85
+ {
86
+ fields: ["Date", "Revenue"],
87
+ name: "tonic_date_revenue_idx"
88
+ },
89
+ ],
90
+ hooks: {
91
+ beforeCreate: async (record, options) => {
92
+ try {
93
+ const existingKeyword = await sequelize.models.TonicRSOCKeywordPerformance.findOne({
94
+ where: {
95
+ Keyword: sequelize.where(
96
+ sequelize.fn("LOWER", sequelize.col("Keyword")),
97
+ sequelize.fn("LOWER", record.Keyword)
98
+ ),
99
+ Country: record.Country,
100
+ },
101
+ attributes: ["FirstAppearanceDate"],
102
+ transaction: options.transaction,
103
+ });
104
+
105
+ record.FirstAppearanceDate =
106
+ existingKeyword?.FirstAppearanceDate || record.Date;
107
+ } catch (error) {
108
+ console.error("Error in TonicRSOCKeywordPerformance FirstAppearanceDate hook:", error);
109
+ throw error;
110
+ }
111
+ },
112
+ },
113
+ }
114
+ );
115
+
116
+ TonicRSOCKeywordPerformance.associate = (models) => {
117
+ TonicRSOCKeywordPerformance.belongsTo(models.Ad, {
118
+ foreignKey: "adID",
119
+ });
120
+ };
121
+
122
+ return TonicRSOCKeywordPerformance;
123
123
  };