Skip to content

Commit

Permalink
Merge branch 'main' of github.com:fixthestatusquo/proca-sync
Browse files Browse the repository at this point in the history
  • Loading branch information
tttp committed Sep 5, 2024
2 parents 859f88e + cbb1a95 commit cb3e7b2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/crm/gpdedatahub.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class gpdedatahubCRM extends crm_1.CRM {
// CRM will take double actions and respond with 200 status
this.handleContact = (message) => __awaiter(this, void 0, void 0, function* () {
const camp = yield this.campaign(message.campaign);
console.log("Taken from the queue", message.action.id);
console.log("Taken from the queue", message.action.id, "test:", message.action.testing);
const actionPayload = (0, data_1.formatAction)(message, camp.config);
if (this.verbose) {
console.log(actionPayload);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"dependencies": {
"@mailchimp/mailchimp_marketing": "^3.0.80",
"@proca/crypto": "^3.4.0",
"@proca/queue": "^5.2.4",
"@proca/queue": "^5.2.3",
"@sendinblue/client": "^3.3.1",
"@sentry/node": "^8.25.0",
"@supabase/supabase-js": "^2.39.8",
Expand Down
2 changes: 1 addition & 1 deletion src/crm/gpdedatahub.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class gpdedatahubCRM extends CRM {
message: ActionMessage
): Promise<handleResult | boolean> => {
const camp = await this.campaign(message.campaign);
console.log("Taken from the queue", message.action.id);
console.log("Taken from the queue", message.action.id, "test:", message.action.testing);
const actionPayload = formatAction(message, camp.config);

if (this.verbose) {
Expand Down

0 comments on commit cb3e7b2

Please sign in to comment.