Skip to content

Commit

Permalink
fix(tracking): pick content_ids
Browse files Browse the repository at this point in the history
Add `content_ids` to UserImpressionData type
  • Loading branch information
slin12 authored May 13, 2022
1 parent 6403fc7 commit bd8b0a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/tracking/src/events/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ export type UserVisitData = UserSharedData & {

export type UserImpressionData = Pick<
UserSharedData,
'context' | 'source_codebase'
'context' | 'source_codebase' | 'content_ids'
> & {
page_name: string;
target: string;
Expand Down

0 comments on commit bd8b0a6

Please sign in to comment.