@superbright/indexeddb-orm 1.0.44 → 1.0.46

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -24,7 +24,6 @@ declare const propertyContextSchema: z.ZodObject<{
24
24
  declare const viewAllUnitsSchema: z.ZodObject<{
25
25
  propertyId: z.ZodString;
26
26
  propertySlug: z.ZodString;
27
- } & {
28
27
  propertyName: z.ZodString;
29
28
  } & {
30
29
  totalUnitsAvailable: z.ZodNumber;
@@ -48,7 +47,6 @@ declare const viewAllUnitsSchema: z.ZodObject<{
48
47
  declare const loadMoreSchema: z.ZodObject<{
49
48
  propertyId: z.ZodString;
50
49
  propertySlug: z.ZodString;
51
- } & {
52
50
  propertyName: z.ZodString;
53
51
  } & {
54
52
  totalUnitsAvailable: z.ZodNumber;
@@ -72,7 +70,6 @@ declare const loadMoreSchema: z.ZodObject<{
72
70
  declare const scheduleTourFormSchema: z.ZodObject<{
73
71
  propertyId: z.ZodString;
74
72
  propertySlug: z.ZodString;
75
- } & {
76
73
  propertyName: z.ZodString;
77
74
  } & {
78
75
  totalUnitsAvailable: z.ZodNumber;
@@ -99,7 +96,6 @@ declare const scheduleTourFormSchema: z.ZodObject<{
99
96
  declare const questionnaireEventSchema: z.ZodObject<{
100
97
  propertyId: z.ZodString;
101
98
  propertySlug: z.ZodString;
102
- } & {
103
99
  propertyName: z.ZodString;
104
100
  } & {
105
101
  funnelStep: z.ZodNumber;
@@ -126,7 +122,6 @@ declare const questionnaireEventSchema: z.ZodObject<{
126
122
  declare const continueQuestionnaireEventSchema: z.ZodObject<{
127
123
  propertyId: z.ZodString;
128
124
  propertySlug: z.ZodString;
129
- } & {
130
125
  propertyName: z.ZodString;
131
126
  } & {
132
127
  funnelStep: z.ZodNumber;
@@ -177,10 +172,36 @@ declare const unitEventSchema: z.ZodObject<{
177
172
  unitName: string;
178
173
  unitSlug: string;
179
174
  }>;
180
- declare const getInTouchFormSchema: z.ZodObject<{
175
+ declare const similarUnitEventSchema: z.ZodObject<{
181
176
  propertyId: z.ZodString;
182
177
  propertySlug: z.ZodString;
178
+ propertyName: z.ZodString;
179
+ } & {
180
+ unitId: z.ZodString;
181
+ unitName: z.ZodString;
182
+ unitSlug: z.ZodString;
183
183
  } & {
184
+ favoritedUnit: z.ZodBoolean;
185
+ }, "strip", z.ZodTypeAny, {
186
+ propertyId: string;
187
+ propertySlug: string;
188
+ unitId: string;
189
+ propertyName: string;
190
+ unitName: string;
191
+ unitSlug: string;
192
+ favoritedUnit: boolean;
193
+ }, {
194
+ propertyId: string;
195
+ propertySlug: string;
196
+ unitId: string;
197
+ propertyName: string;
198
+ unitName: string;
199
+ unitSlug: string;
200
+ favoritedUnit: boolean;
201
+ }>;
202
+ declare const getInTouchFormSchema: z.ZodObject<{
203
+ propertyId: z.ZodString;
204
+ propertySlug: z.ZodString;
184
205
  propertyName: z.ZodString;
185
206
  } & {
186
207
  unitId: z.ZodString;
@@ -201,11 +222,11 @@ declare const getInTouchFormSchema: z.ZodObject<{
201
222
  propertyName: string;
202
223
  unitName: string;
203
224
  unitSlug: string;
225
+ favoritedUnit: boolean;
204
226
  buttonName: string;
205
227
  formName: string;
206
228
  styleName: string;
207
229
  unitBedrooms: number;
208
- favoritedUnit: boolean;
209
230
  }, {
210
231
  propertyId: string;
211
232
  propertySlug: string;
@@ -214,16 +235,15 @@ declare const getInTouchFormSchema: z.ZodObject<{
214
235
  propertyName: string;
215
236
  unitName: string;
216
237
  unitSlug: string;
238
+ favoritedUnit: boolean;
217
239
  buttonName: string;
218
240
  formName: string;
219
241
  styleName: string;
220
242
  unitBedrooms: number;
221
- favoritedUnit: boolean;
222
243
  }>;
223
244
  declare const styleDrawerSchema: z.ZodObject<{
224
245
  propertyId: z.ZodString;
225
246
  propertySlug: z.ZodString;
226
- } & {
227
247
  propertyName: z.ZodString;
228
248
  } & {
229
249
  unitId: z.ZodString;
@@ -243,9 +263,9 @@ declare const styleDrawerSchema: z.ZodObject<{
243
263
  propertyName: string;
244
264
  unitName: string;
245
265
  unitSlug: string;
266
+ favoritedUnit: boolean;
246
267
  styleName: string;
247
268
  unitBedrooms: number;
248
- favoritedUnit: boolean;
249
269
  roomName: string;
250
270
  }, {
251
271
  propertyId: string;
@@ -255,15 +275,14 @@ declare const styleDrawerSchema: z.ZodObject<{
255
275
  propertyName: string;
256
276
  unitName: string;
257
277
  unitSlug: string;
278
+ favoritedUnit: boolean;
258
279
  styleName: string;
259
280
  unitBedrooms: number;
260
- favoritedUnit: boolean;
261
281
  roomName: string;
262
282
  }>;
263
283
  declare const furnitureInteractionSchema: z.ZodObject<{
264
284
  propertyId: z.ZodString;
265
285
  propertySlug: z.ZodString;
266
- } & {
267
286
  propertyName: z.ZodString;
268
287
  } & {
269
288
  unitId: z.ZodString;
@@ -315,7 +334,6 @@ declare const furnitureInteractionSchema: z.ZodObject<{
315
334
  declare const furnitureExternalUrlSchema: z.ZodObject<{
316
335
  propertyId: z.ZodString;
317
336
  propertySlug: z.ZodString;
318
- } & {
319
337
  propertyName: z.ZodString;
320
338
  } & {
321
339
  unitId: z.ZodString;
@@ -344,9 +362,9 @@ declare const furnitureExternalUrlSchema: z.ZodObject<{
344
362
  propertyName: string;
345
363
  unitName: string;
346
364
  unitSlug: string;
365
+ favoritedUnit: boolean;
347
366
  styleName: string;
348
367
  unitBedrooms: number;
349
- favoritedUnit: boolean;
350
368
  roomName: string;
351
369
  furnitureName: string;
352
370
  brandName: string;
@@ -362,9 +380,9 @@ declare const furnitureExternalUrlSchema: z.ZodObject<{
362
380
  propertyName: string;
363
381
  unitName: string;
364
382
  unitSlug: string;
383
+ favoritedUnit: boolean;
365
384
  styleName: string;
366
385
  unitBedrooms: number;
367
- favoritedUnit: boolean;
368
386
  roomName: string;
369
387
  furnitureName: string;
370
388
  brandName: string;
@@ -373,7 +391,6 @@ declare const furnitureExternalUrlSchema: z.ZodObject<{
373
391
  declare const furnitureSavedSchema: z.ZodObject<{
374
392
  propertyId: z.ZodString;
375
393
  propertySlug: z.ZodString;
376
- } & {
377
394
  propertyName: z.ZodString;
378
395
  } & {
379
396
  unitId: z.ZodString;
@@ -422,7 +439,6 @@ declare const furnitureSavedSchema: z.ZodObject<{
422
439
  declare const furnitureModalOpenedSchema: z.ZodObject<{
423
440
  propertyId: z.ZodString;
424
441
  propertySlug: z.ZodString;
425
- } & {
426
442
  propertyName: z.ZodString;
427
443
  } & {
428
444
  unitId: z.ZodString;
@@ -471,7 +487,6 @@ declare const furnitureModalOpenedSchema: z.ZodObject<{
471
487
  declare const furnitureCarouselSchema: z.ZodObject<{
472
488
  propertyId: z.ZodString;
473
489
  propertySlug: z.ZodString;
474
- } & {
475
490
  propertyName: z.ZodString;
476
491
  } & {
477
492
  unitId: z.ZodString;
@@ -523,7 +538,6 @@ declare const furnitureCarouselSchema: z.ZodObject<{
523
538
  declare const roomEnteredSchema: z.ZodObject<{
524
539
  propertyId: z.ZodString;
525
540
  propertySlug: z.ZodString;
526
- } & {
527
541
  propertyName: z.ZodString;
528
542
  } & {
529
543
  unitId: z.ZodString;
@@ -563,7 +577,6 @@ declare const roomEnteredSchema: z.ZodObject<{
563
577
  declare const roomLeftSchema: z.ZodObject<{
564
578
  propertyId: z.ZodString;
565
579
  propertySlug: z.ZodString;
566
- } & {
567
580
  propertyName: z.ZodString;
568
581
  } & {
569
582
  unitId: z.ZodString;
@@ -607,7 +620,6 @@ declare const roomLeftSchema: z.ZodObject<{
607
620
  declare const videoStartedSchema: z.ZodObject<{
608
621
  propertyId: z.ZodString;
609
622
  propertySlug: z.ZodString;
610
- } & {
611
623
  propertyName: z.ZodString;
612
624
  } & {
613
625
  unitId: z.ZodString;
@@ -659,7 +671,6 @@ declare const videoStartedSchema: z.ZodObject<{
659
671
  declare const emailTrackedSchema: z.ZodObject<{
660
672
  propertyId: z.ZodString;
661
673
  propertySlug: z.ZodString;
662
- } & {
663
674
  propertyName: z.ZodString;
664
675
  } & {
665
676
  unitId: z.ZodString;
@@ -681,9 +692,9 @@ declare const emailTrackedSchema: z.ZodObject<{
681
692
  propertyName: string;
682
693
  unitName: string;
683
694
  unitSlug: string;
695
+ favoritedUnit: boolean;
684
696
  styleName: string;
685
697
  unitBedrooms: number;
686
- favoritedUnit: boolean;
687
698
  utmSource: string;
688
699
  utmMedium: string;
689
700
  utmName: string;
@@ -695,9 +706,9 @@ declare const emailTrackedSchema: z.ZodObject<{
695
706
  propertyName: string;
696
707
  unitName: string;
697
708
  unitSlug: string;
709
+ favoritedUnit: boolean;
698
710
  styleName: string;
699
711
  unitBedrooms: number;
700
- favoritedUnit: boolean;
701
712
  utmSource: string;
702
713
  utmMedium: string;
703
714
  utmName: string;
@@ -705,7 +716,6 @@ declare const emailTrackedSchema: z.ZodObject<{
705
716
  declare const webPageViewedSchema: z.ZodObject<{
706
717
  propertyId: z.ZodString;
707
718
  propertySlug: z.ZodString;
708
- } & {
709
719
  propertyName: z.ZodString;
710
720
  } & {
711
721
  unitId: z.ZodString;
@@ -740,7 +750,6 @@ declare const webPageViewedSchema: z.ZodObject<{
740
750
  declare const webPageRoomViewedSchema: z.ZodObject<{
741
751
  propertyId: z.ZodString;
742
752
  propertySlug: z.ZodString;
743
- } & {
744
753
  propertyName: z.ZodString;
745
754
  } & {
746
755
  unitId: z.ZodString;
@@ -775,7 +784,6 @@ declare const webPageRoomViewedSchema: z.ZodObject<{
775
784
  declare const toastSchema: z.ZodObject<{
776
785
  propertyId: z.ZodString;
777
786
  propertySlug: z.ZodString;
778
- } & {
779
787
  propertyName: z.ZodString;
780
788
  } & {
781
789
  unitId: z.ZodString;
@@ -803,7 +811,6 @@ declare const toastSchema: z.ZodObject<{
803
811
  declare const contentModalOpenedSchema: z.ZodObject<{
804
812
  propertyId: z.ZodString;
805
813
  propertySlug: z.ZodString;
806
- } & {
807
814
  propertyName: z.ZodString;
808
815
  } & {
809
816
  unitId: z.ZodString;
@@ -837,7 +844,6 @@ declare const contentModalOpenedSchema: z.ZodObject<{
837
844
  declare const buildingDetailsModalSchema: z.ZodObject<{
838
845
  propertyId: z.ZodString;
839
846
  propertySlug: z.ZodString;
840
- } & {
841
847
  propertyName: z.ZodString;
842
848
  }, "strip", z.ZodTypeAny, {
843
849
  propertyId: string;
@@ -851,7 +857,6 @@ declare const buildingDetailsModalSchema: z.ZodObject<{
851
857
  declare const subscriptionImpressionSchema: z.ZodObject<{
852
858
  propertyId: z.ZodString;
853
859
  propertySlug: z.ZodString;
854
- } & {
855
860
  propertyName: z.ZodString;
856
861
  } & {
857
862
  name: z.ZodString;
@@ -1010,7 +1015,6 @@ declare const subscriptionSubmittedSchema: z.ZodObject<{
1010
1015
  declare const subscriptionRemovedSchema: z.ZodObject<{
1011
1016
  propertyId: z.ZodString;
1012
1017
  propertySlug: z.ZodString;
1013
- } & {
1014
1018
  propertyName: z.ZodString;
1015
1019
  } & {
1016
1020
  bedrooms: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
@@ -1040,7 +1044,6 @@ declare const subscriptionRemovedSchema: z.ZodObject<{
1040
1044
  declare const hoverUnitSchema: z.ZodObject<{
1041
1045
  propertyId: z.ZodString;
1042
1046
  propertySlug: z.ZodString;
1043
- } & {
1044
1047
  propertyName: z.ZodString;
1045
1048
  } & {
1046
1049
  unitId: z.ZodString;
@@ -1071,7 +1074,6 @@ declare const hoverUnitSchema: z.ZodObject<{
1071
1074
  declare const filterOpenSchema: z.ZodObject<{
1072
1075
  propertyId: z.ZodString;
1073
1076
  propertySlug: z.ZodString;
1074
- } & {
1075
1077
  propertyName: z.ZodString;
1076
1078
  } & {
1077
1079
  filterIndex: z.ZodNumber;
@@ -1098,7 +1100,6 @@ declare const filterOpenSchema: z.ZodObject<{
1098
1100
  declare const filterMutationSchema: z.ZodObject<{
1099
1101
  propertyId: z.ZodString;
1100
1102
  propertySlug: z.ZodString;
1101
- } & {
1102
1103
  propertyName: z.ZodString;
1103
1104
  } & {
1104
1105
  filterIndex: z.ZodNumber;
@@ -1142,7 +1143,6 @@ declare const sortEventSchema: z.ZodObject<{
1142
1143
  declare const sortOpenSchema: z.ZodObject<{
1143
1144
  propertyId: z.ZodString;
1144
1145
  propertySlug: z.ZodString;
1145
- } & {
1146
1146
  propertyName: z.ZodString;
1147
1147
  } & {
1148
1148
  sortIndex: z.ZodNumber;
@@ -1230,7 +1230,6 @@ declare const questionnaireResultSchema: z.ZodObject<{
1230
1230
  declare const clickUnitSchema: z.ZodObject<{
1231
1231
  propertyId: z.ZodString;
1232
1232
  propertySlug: z.ZodString;
1233
- } & {
1234
1233
  propertyName: z.ZodString;
1235
1234
  } & {
1236
1235
  unitId: z.ZodString;
@@ -1261,7 +1260,6 @@ declare const clickUnitSchema: z.ZodObject<{
1261
1260
  declare const clickUnitFavoritesSchema: z.ZodObject<{
1262
1261
  propertyId: z.ZodString;
1263
1262
  propertySlug: z.ZodString;
1264
- } & {
1265
1263
  propertyName: z.ZodString;
1266
1264
  } & {
1267
1265
  unitId: z.ZodString;
@@ -1292,7 +1290,6 @@ declare const clickUnitFavoritesSchema: z.ZodObject<{
1292
1290
  declare const unitUnfavoritedSchema: z.ZodObject<{
1293
1291
  propertyId: z.ZodString;
1294
1292
  propertySlug: z.ZodString;
1295
- } & {
1296
1293
  propertyName: z.ZodString;
1297
1294
  } & {
1298
1295
  unitId: z.ZodString;
@@ -1358,6 +1355,10 @@ export type SubscriptionSubmittedEvent = z.infer<typeof subscriptionSubmittedSch
1358
1355
  export type SubscriptionRemovedEvent = z.infer<typeof subscriptionRemovedSchema>;
1359
1356
  export type WebPageViewedEvent = z.infer<typeof webPageViewedSchema>;
1360
1357
  export type WebPageRoomViewedEvent = z.infer<typeof webPageRoomViewedSchema>;
1358
+ export type SimilarUnitsImpressionEvent = z.infer<typeof similarUnitEventSchema>;
1359
+ export type SimilarUnitClickEvent = z.infer<typeof similarUnitEventSchema>;
1360
+ export type SimilarUnitJumpSuccessEvent = z.infer<typeof similarUnitEventSchema>;
1361
+ export type SimilarUnitJumpErrorEvent = z.infer<typeof similarUnitEventSchema>;
1361
1362
  export type TrackingEventWithUnits = FilterEvent & {
1362
1363
  trackingEvent: (payload: FilterEvent) => void;
1363
1364
  [metadata: string]: unknown;
@@ -1500,11 +1501,11 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn, isDev?: bo
1500
1501
  propertyName: string;
1501
1502
  unitName: string;
1502
1503
  unitSlug: string;
1504
+ favoritedUnit: boolean;
1503
1505
  buttonName: string;
1504
1506
  formName: string;
1505
1507
  styleName: string;
1506
1508
  unitBedrooms: number;
1507
- favoritedUnit: boolean;
1508
1509
  }) => void;
1509
1510
  trackGetInTouchFormSubmitted: (payload: {
1510
1511
  propertyId: string;
@@ -1514,11 +1515,11 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn, isDev?: bo
1514
1515
  propertyName: string;
1515
1516
  unitName: string;
1516
1517
  unitSlug: string;
1518
+ favoritedUnit: boolean;
1517
1519
  buttonName: string;
1518
1520
  formName: string;
1519
1521
  styleName: string;
1520
1522
  unitBedrooms: number;
1521
- favoritedUnit: boolean;
1522
1523
  }) => void;
1523
1524
  trackStyleDrawerOpened: (payload: {
1524
1525
  propertyId: string;
@@ -1528,9 +1529,9 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn, isDev?: bo
1528
1529
  propertyName: string;
1529
1530
  unitName: string;
1530
1531
  unitSlug: string;
1532
+ favoritedUnit: boolean;
1531
1533
  styleName: string;
1532
1534
  unitBedrooms: number;
1533
- favoritedUnit: boolean;
1534
1535
  roomName: string;
1535
1536
  }) => void;
1536
1537
  trackStyleDrawerChanged: (payload: {
@@ -1541,9 +1542,9 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn, isDev?: bo
1541
1542
  propertyName: string;
1542
1543
  unitName: string;
1543
1544
  unitSlug: string;
1545
+ favoritedUnit: boolean;
1544
1546
  styleName: string;
1545
1547
  unitBedrooms: number;
1546
- favoritedUnit: boolean;
1547
1548
  roomName: string;
1548
1549
  }) => void;
1549
1550
  trackOpeningStyleImpression: (payload: {
@@ -1554,9 +1555,9 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn, isDev?: bo
1554
1555
  propertyName: string;
1555
1556
  unitName: string;
1556
1557
  unitSlug: string;
1558
+ favoritedUnit: boolean;
1557
1559
  styleName: string;
1558
1560
  unitBedrooms: number;
1559
- favoritedUnit: boolean;
1560
1561
  roomName: string;
1561
1562
  }) => void;
1562
1563
  trackOpeningStyleSlected: (payload: {
@@ -1567,9 +1568,9 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn, isDev?: bo
1567
1568
  propertyName: string;
1568
1569
  unitName: string;
1569
1570
  unitSlug: string;
1571
+ favoritedUnit: boolean;
1570
1572
  styleName: string;
1571
1573
  unitBedrooms: number;
1572
- favoritedUnit: boolean;
1573
1574
  roomName: string;
1574
1575
  }) => void;
1575
1576
  trackFurnitureViewed: (payload: {
@@ -1600,9 +1601,9 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn, isDev?: bo
1600
1601
  propertyName: string;
1601
1602
  unitName: string;
1602
1603
  unitSlug: string;
1604
+ favoritedUnit: boolean;
1603
1605
  styleName: string;
1604
1606
  unitBedrooms: number;
1605
- favoritedUnit: boolean;
1606
1607
  roomName: string;
1607
1608
  furnitureName: string;
1608
1609
  brandName: string;
@@ -1709,9 +1710,9 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn, isDev?: bo
1709
1710
  propertyName: string;
1710
1711
  unitName: string;
1711
1712
  unitSlug: string;
1713
+ favoritedUnit: boolean;
1712
1714
  styleName: string;
1713
1715
  unitBedrooms: number;
1714
- favoritedUnit: boolean;
1715
1716
  utmSource: string;
1716
1717
  utmMedium: string;
1717
1718
  utmName: string;
@@ -1835,6 +1836,38 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn, isDev?: bo
1835
1836
  unitSlug: string;
1836
1837
  unitBedrooms: number;
1837
1838
  }) => void;
1839
+ trackSimilarUnitsImpression: (payload: {
1840
+ propertyId: string;
1841
+ propertySlug: string;
1842
+ unitId: string;
1843
+ propertyName: string;
1844
+ unitName: string;
1845
+ unitSlug: string;
1846
+ }) => void;
1847
+ trackSimilarUnitClick: (payload: {
1848
+ propertyId: string;
1849
+ propertySlug: string;
1850
+ unitId: string;
1851
+ propertyName: string;
1852
+ unitName: string;
1853
+ unitSlug: string;
1854
+ }) => void;
1855
+ trackSimilarUnitJumpSuccess: (payload: {
1856
+ propertyId: string;
1857
+ propertySlug: string;
1858
+ unitId: string;
1859
+ propertyName: string;
1860
+ unitName: string;
1861
+ unitSlug: string;
1862
+ }) => void;
1863
+ trackSimilarUnitJumpError: (payload: {
1864
+ propertyId: string;
1865
+ propertySlug: string;
1866
+ unitId: string;
1867
+ propertyName: string;
1868
+ unitName: string;
1869
+ unitSlug: string;
1870
+ }) => void;
1838
1871
  trackEmailClickGeneric: (data: {
1839
1872
  event_name: string;
1840
1873
  }) => (payload: {
@@ -2007,11 +2040,11 @@ export declare function useTrackingEvents(): {
2007
2040
  propertyName: string;
2008
2041
  unitName: string;
2009
2042
  unitSlug: string;
2043
+ favoritedUnit: boolean;
2010
2044
  buttonName: string;
2011
2045
  formName: string;
2012
2046
  styleName: string;
2013
2047
  unitBedrooms: number;
2014
- favoritedUnit: boolean;
2015
2048
  }) => void;
2016
2049
  trackGetInTouchFormSubmitted: (payload: {
2017
2050
  propertyId: string;
@@ -2021,11 +2054,11 @@ export declare function useTrackingEvents(): {
2021
2054
  propertyName: string;
2022
2055
  unitName: string;
2023
2056
  unitSlug: string;
2057
+ favoritedUnit: boolean;
2024
2058
  buttonName: string;
2025
2059
  formName: string;
2026
2060
  styleName: string;
2027
2061
  unitBedrooms: number;
2028
- favoritedUnit: boolean;
2029
2062
  }) => void;
2030
2063
  trackStyleDrawerOpened: (payload: {
2031
2064
  propertyId: string;
@@ -2035,9 +2068,9 @@ export declare function useTrackingEvents(): {
2035
2068
  propertyName: string;
2036
2069
  unitName: string;
2037
2070
  unitSlug: string;
2071
+ favoritedUnit: boolean;
2038
2072
  styleName: string;
2039
2073
  unitBedrooms: number;
2040
- favoritedUnit: boolean;
2041
2074
  roomName: string;
2042
2075
  }) => void;
2043
2076
  trackStyleDrawerChanged: (payload: {
@@ -2048,9 +2081,9 @@ export declare function useTrackingEvents(): {
2048
2081
  propertyName: string;
2049
2082
  unitName: string;
2050
2083
  unitSlug: string;
2084
+ favoritedUnit: boolean;
2051
2085
  styleName: string;
2052
2086
  unitBedrooms: number;
2053
- favoritedUnit: boolean;
2054
2087
  roomName: string;
2055
2088
  }) => void;
2056
2089
  trackOpeningStyleImpression: (payload: {
@@ -2061,9 +2094,9 @@ export declare function useTrackingEvents(): {
2061
2094
  propertyName: string;
2062
2095
  unitName: string;
2063
2096
  unitSlug: string;
2097
+ favoritedUnit: boolean;
2064
2098
  styleName: string;
2065
2099
  unitBedrooms: number;
2066
- favoritedUnit: boolean;
2067
2100
  roomName: string;
2068
2101
  }) => void;
2069
2102
  trackOpeningStyleSlected: (payload: {
@@ -2074,9 +2107,9 @@ export declare function useTrackingEvents(): {
2074
2107
  propertyName: string;
2075
2108
  unitName: string;
2076
2109
  unitSlug: string;
2110
+ favoritedUnit: boolean;
2077
2111
  styleName: string;
2078
2112
  unitBedrooms: number;
2079
- favoritedUnit: boolean;
2080
2113
  roomName: string;
2081
2114
  }) => void;
2082
2115
  trackFurnitureViewed: (payload: {
@@ -2107,9 +2140,9 @@ export declare function useTrackingEvents(): {
2107
2140
  propertyName: string;
2108
2141
  unitName: string;
2109
2142
  unitSlug: string;
2143
+ favoritedUnit: boolean;
2110
2144
  styleName: string;
2111
2145
  unitBedrooms: number;
2112
- favoritedUnit: boolean;
2113
2146
  roomName: string;
2114
2147
  furnitureName: string;
2115
2148
  brandName: string;
@@ -2216,9 +2249,9 @@ export declare function useTrackingEvents(): {
2216
2249
  propertyName: string;
2217
2250
  unitName: string;
2218
2251
  unitSlug: string;
2252
+ favoritedUnit: boolean;
2219
2253
  styleName: string;
2220
2254
  unitBedrooms: number;
2221
- favoritedUnit: boolean;
2222
2255
  utmSource: string;
2223
2256
  utmMedium: string;
2224
2257
  utmName: string;
@@ -2342,6 +2375,38 @@ export declare function useTrackingEvents(): {
2342
2375
  unitSlug: string;
2343
2376
  unitBedrooms: number;
2344
2377
  }) => void;
2378
+ trackSimilarUnitsImpression: (payload: {
2379
+ propertyId: string;
2380
+ propertySlug: string;
2381
+ unitId: string;
2382
+ propertyName: string;
2383
+ unitName: string;
2384
+ unitSlug: string;
2385
+ }) => void;
2386
+ trackSimilarUnitClick: (payload: {
2387
+ propertyId: string;
2388
+ propertySlug: string;
2389
+ unitId: string;
2390
+ propertyName: string;
2391
+ unitName: string;
2392
+ unitSlug: string;
2393
+ }) => void;
2394
+ trackSimilarUnitJumpSuccess: (payload: {
2395
+ propertyId: string;
2396
+ propertySlug: string;
2397
+ unitId: string;
2398
+ propertyName: string;
2399
+ unitName: string;
2400
+ unitSlug: string;
2401
+ }) => void;
2402
+ trackSimilarUnitJumpError: (payload: {
2403
+ propertyId: string;
2404
+ propertySlug: string;
2405
+ unitId: string;
2406
+ propertyName: string;
2407
+ unitName: string;
2408
+ unitSlug: string;
2409
+ }) => void;
2345
2410
  trackEmailClickGeneric: (data: {
2346
2411
  event_name: string;
2347
2412
  }) => (payload: {