Skip to content

Commit

Permalink
fix: fixed userId mapping, now mapping to uid instead of id
Browse files Browse the repository at this point in the history
  • Loading branch information
sandeepdsvs committed Apr 8, 2024
1 parent 8eb4c4e commit d7e02d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cdk/v2/destinations/fullstory/procWorkflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ steps:
"use_most_recent": .message.properties.useMostRecent,
};
$.context.payload.user = {
"id": .message.properties.userId ?? .message.userId,
"uid": .message.properties.userId ?? .message.userId,
}
- name: cleanPayload
Expand Down
2 changes: 1 addition & 1 deletion test/integrations/destinations/fullstory/processor/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export const data = [
id: 's001',
},
user: {
id: 'u001',
uid: 'u001',
},
},
JSON_ARRAY: {},
Expand Down

0 comments on commit d7e02d7

Please sign in to comment.