File tree 3 files changed +15
-0
lines changed
plugin-server/src/utils/db
3 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,11 @@ const PERSON_PROPERTIES_ADAPTED_FROM_EVENT = new Set([
46
46
'$os_version' ,
47
47
'$referring_domain' ,
48
48
'$referrer' ,
49
+ '$screen_height' ,
50
+ '$screen_width' ,
51
+ '$viewport_height' ,
52
+ '$viewport_width' ,
53
+ '$raw_user_agent' ,
49
54
...CAMPAIGN_PROPERTIES ,
50
55
] )
51
56
Original file line number Diff line number Diff line change @@ -103,6 +103,11 @@ export const eventToPersonProperties = new Set([
103
103
'$os_version' ,
104
104
'$referring_domain' ,
105
105
'$referrer' ,
106
+ '$screen_height' ,
107
+ '$screen_width' ,
108
+ '$viewport_height' ,
109
+ '$viewport_width' ,
110
+ '$raw_user_agent' ,
106
111
107
112
...campaignParams ,
108
113
] )
Original file line number Diff line number Diff line change @@ -50,6 +50,11 @@ class CoreFilterDefinition(TypedDict):
50
50
"$os_version" ,
51
51
"$referring_domain" ,
52
52
"$referrer" ,
53
+ "$screen_height" ,
54
+ "$screen_width" ,
55
+ "$viewport_height" ,
56
+ "$viewport_width" ,
57
+ "$raw_user_agent" ,
53
58
* CAMPAIGN_PROPERTIES ,
54
59
}
55
60
You can’t perform that action at this time.
0 commit comments