File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -682,4 +682,4 @@ SPEC CHECKSUMS:
682
682
683
683
PODFILE CHECKSUM: 329483eb6daf495a1eab8db2c188f13aaa25dcf9
684
684
685
- COCOAPODS: 1.15 .2
685
+ COCOAPODS: 1.16 .2
Original file line number Diff line number Diff line change @@ -270,6 +270,10 @@ class Iterate {
270
270
// the correct event traits with it
271
271
const responseId = new Date ( ) . getTime ( ) ;
272
272
273
+ if ( response . event_traits != null ) {
274
+ eventTraits = { ...( eventTraits ?? { } ) , ...response . event_traits } ;
275
+ }
276
+
273
277
if ( eventTraits != null ) {
274
278
store . dispatch ( setEventTraits ( eventTraits , responseId ) ) ;
275
279
}
Original file line number Diff line number Diff line change @@ -119,6 +119,7 @@ export type ApiResponse<ResultsType> = {
119
119
120
120
export type EmbedResults = {
121
121
auth ?: Auth ;
122
+ event_traits ?: EventTraits ;
122
123
survey ?: Survey ;
123
124
triggers ?: Trigger [ ] ;
124
125
tracking ?: Tracking ;
You can’t perform that action at this time.
0 commit comments