-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: klaviyo remove duplicate profile due anonymousId mapped as exter…
…nalId
- Loading branch information
1 parent
f8a275c
commit e10099e
Showing
3 changed files
with
8 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,6 +50,7 @@ const commonTraits = { | |
const commonTraits2 = { ...commonTraits, street: '63, Shibuya' }; | ||
|
||
const commonOutputUserProps = { | ||
anonymous_id: '97c46c81-3140-456d-b2a9-690d70aaca35', | ||
external_id: 'user@1', | ||
email: '[email protected]', | ||
first_name: 'Test', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -253,6 +253,7 @@ export const data: RouterTestData[] = [ | |
type: 'profile', | ||
attributes: { | ||
external_id: 'test', | ||
anonymous_id: '97c46c81-3140-456d-b2a9-690d70aaca35', | ||
email: '[email protected]', | ||
first_name: 'Test', | ||
last_name: 'Rudderlabs', | ||
|
@@ -301,6 +302,7 @@ export const data: RouterTestData[] = [ | |
type: 'profile', | ||
attributes: { | ||
external_id: 'test', | ||
anonymous_id: '97c46c81-3140-456d-b2a9-690d70aaca35', | ||
email: '[email protected]', | ||
first_name: 'Test', | ||
last_name: 'Rudderlabs', | ||
|