Skip to content

Commit da03368

Browse files
Innovative-GauravKocharGaurav Kochar
and
Gaurav Kochar
authored
KLAVIYO - Mapped total key in klaviyo payload (#745)
* added total key * updated klaviyo version * removed total from whitelist * test case if revenue missing --------- Co-authored-by: Gaurav Kochar <[email protected]>
1 parent 277e940 commit da03368

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

integrations/klaviyo/lib/index.js

-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,6 @@ Klaviyo.prototype.orderCompleted = function(track) {
144144
'itemNames',
145145
'items',
146146
'revenue',
147-
'total',
148147
'products'
149148
];
150149
// strip standard props and leave custom props only

integrations/klaviyo/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@segment/analytics.js-integration-klaviyo",
33
"description": "The Klaviyo analytics.js integration.",
4-
"version": "2.2.5",
4+
"version": "2.2.6",
55
"keywords": [
66
"analytics.js",
77
"analytics.js-integration",

integrations/klaviyo/test/index.test.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,7 @@ describe('Klaviyo', function() {
228228
$value: 25,
229229
Categories: ['Games', 'Interwebs'],
230230
ItemNames: ['Monopoly: 3rd Edition', 'Suh dude'],
231+
total: 30,
231232
Items: [
232233
{
233234
id: '507f1f77bcf86cd799439011',
@@ -291,6 +292,7 @@ describe('Klaviyo', function() {
291292
$value: 25,
292293
Categories: ['Games'],
293294
ItemNames: ['Monopoly: 3rd Edition'],
295+
total: 30,
294296
Items: [
295297
{
296298
id: '507f1f77bcf86cd799439011',
@@ -414,7 +416,6 @@ describe('Klaviyo', function() {
414416
letMePass: 'hi',
415417
customProp: true,
416418
total: 30,
417-
revenue: 25,
418419
shipping: 3,
419420
tax: 2,
420421
discount: 2.5,
@@ -449,9 +450,10 @@ describe('Klaviyo', function() {
449450
'Completed Order',
450451
{
451452
$event_id: '50314b8e9bcf000000000000',
452-
$value: 25,
453+
$value: 30,
453454
Categories: ['Games', 'Interwebs'],
454455
ItemNames: ['Monopoly: 3rd Edition', 'Suh dude'],
456+
total: 30,
455457
Items: [
456458
{
457459
id: '507f1f77bcf86cd799439011',

0 commit comments

Comments
 (0)