From 591fd2eac0c68df23559364afd3cc27e6088deff Mon Sep 17 00:00:00 2001 From: Claudiu Basescu Date: Wed, 12 Jul 2023 17:31:53 +0300 Subject: [PATCH 1/2] Add event_id into Pinterest events --- integrations/pinterest-tag/lib/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/integrations/pinterest-tag/lib/index.js b/integrations/pinterest-tag/lib/index.js index aaebee2fb..5b5246219 100644 --- a/integrations/pinterest-tag/lib/index.js +++ b/integrations/pinterest-tag/lib/index.js @@ -117,7 +117,8 @@ Pinterest.prototype.createPropertyMapping = function() { order_id: 'order_id', coupon: 'coupon', value: 'value', - currency: 'currency' + currency: 'currency', + messageIId: 'event_id' }; // This is a second map to allow us to loop over specific potentially-nested properties. From 6ab646a0730d3e367852eb5ff5de06fc19bd88b2 Mon Sep 17 00:00:00 2001 From: Claudiu Basescu Date: Thu, 3 Aug 2023 14:13:51 +0300 Subject: [PATCH 2/2] fix typo --- integrations/pinterest-tag/lib/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrations/pinterest-tag/lib/index.js b/integrations/pinterest-tag/lib/index.js index 5b5246219..109b45970 100644 --- a/integrations/pinterest-tag/lib/index.js +++ b/integrations/pinterest-tag/lib/index.js @@ -118,7 +118,7 @@ Pinterest.prototype.createPropertyMapping = function() { coupon: 'coupon', value: 'value', currency: 'currency', - messageIId: 'event_id' + messageId: 'event_id' }; // This is a second map to allow us to loop over specific potentially-nested properties.