@superbright/indexeddb-orm 1.0.8 → 1.0.10
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.
- package/dist/base/property.cjs +1 -1
- package/dist/base/property.cjs.map +1 -1
- package/dist/base/property.d.ts +3 -3
- package/dist/base/property.mjs +5 -5
- package/dist/base/property.mjs.map +1 -1
- package/dist/base/unit.cjs +1 -1
- package/dist/base/unit.cjs.map +1 -1
- package/dist/base/unit.d.ts +3 -3
- package/dist/base/unit.mjs +7 -7
- package/dist/base/unit.mjs.map +1 -1
- package/dist/features/analytics/analytics.cjs +1 -1
- package/dist/features/analytics/analytics.cjs.map +1 -1
- package/dist/features/analytics/analytics.d.ts +154 -87
- package/dist/features/analytics/analytics.mjs +101 -100
- package/dist/features/analytics/analytics.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -156,30 +156,31 @@ declare const unitEventSchema: z.ZodObject<{
|
|
|
156
156
|
propertySlug: z.ZodString;
|
|
157
157
|
} & {
|
|
158
158
|
unitId: z.ZodString;
|
|
159
|
-
|
|
159
|
+
unitName: z.ZodString;
|
|
160
160
|
unitSlug: z.ZodString;
|
|
161
161
|
}, "strip", z.ZodTypeAny, {
|
|
162
162
|
propertySlug: string;
|
|
163
163
|
propertyId: string;
|
|
164
164
|
unitId: string;
|
|
165
|
-
|
|
165
|
+
unitName: string;
|
|
166
166
|
unitSlug: string;
|
|
167
167
|
}, {
|
|
168
168
|
propertySlug: string;
|
|
169
169
|
propertyId: string;
|
|
170
170
|
unitId: string;
|
|
171
|
-
|
|
171
|
+
unitName: string;
|
|
172
172
|
unitSlug: string;
|
|
173
173
|
}>;
|
|
174
174
|
declare const getInTouchFormSchema: z.ZodObject<{
|
|
175
175
|
propertyId: z.ZodString;
|
|
176
176
|
propertySlug: z.ZodString;
|
|
177
|
+
} & {
|
|
178
|
+
propertyName: z.ZodString;
|
|
177
179
|
} & {
|
|
178
180
|
unitId: z.ZodString;
|
|
179
|
-
|
|
181
|
+
unitName: z.ZodString;
|
|
180
182
|
unitSlug: z.ZodString;
|
|
181
183
|
} & {
|
|
182
|
-
propertyName: z.ZodString;
|
|
183
184
|
buttonName: z.ZodString;
|
|
184
185
|
formName: z.ZodString;
|
|
185
186
|
styleId: z.ZodString;
|
|
@@ -192,7 +193,7 @@ declare const getInTouchFormSchema: z.ZodObject<{
|
|
|
192
193
|
unitId: string;
|
|
193
194
|
styleId: string;
|
|
194
195
|
propertyName: string;
|
|
195
|
-
|
|
196
|
+
unitName: string;
|
|
196
197
|
unitSlug: string;
|
|
197
198
|
buttonName: string;
|
|
198
199
|
formName: string;
|
|
@@ -205,7 +206,7 @@ declare const getInTouchFormSchema: z.ZodObject<{
|
|
|
205
206
|
unitId: string;
|
|
206
207
|
styleId: string;
|
|
207
208
|
propertyName: string;
|
|
208
|
-
|
|
209
|
+
unitName: string;
|
|
209
210
|
unitSlug: string;
|
|
210
211
|
buttonName: string;
|
|
211
212
|
formName: string;
|
|
@@ -216,9 +217,11 @@ declare const getInTouchFormSchema: z.ZodObject<{
|
|
|
216
217
|
declare const styleDrawerSchema: z.ZodObject<{
|
|
217
218
|
propertyId: z.ZodString;
|
|
218
219
|
propertySlug: z.ZodString;
|
|
220
|
+
} & {
|
|
221
|
+
propertyName: z.ZodString;
|
|
219
222
|
} & {
|
|
220
223
|
unitId: z.ZodString;
|
|
221
|
-
|
|
224
|
+
unitName: z.ZodString;
|
|
222
225
|
unitSlug: z.ZodString;
|
|
223
226
|
} & {
|
|
224
227
|
roomName: z.ZodString;
|
|
@@ -231,7 +234,8 @@ declare const styleDrawerSchema: z.ZodObject<{
|
|
|
231
234
|
propertyId: string;
|
|
232
235
|
unitId: string;
|
|
233
236
|
styleId: string;
|
|
234
|
-
|
|
237
|
+
propertyName: string;
|
|
238
|
+
unitName: string;
|
|
235
239
|
unitSlug: string;
|
|
236
240
|
styleName: string;
|
|
237
241
|
unitBedrooms: number;
|
|
@@ -242,7 +246,8 @@ declare const styleDrawerSchema: z.ZodObject<{
|
|
|
242
246
|
propertyId: string;
|
|
243
247
|
unitId: string;
|
|
244
248
|
styleId: string;
|
|
245
|
-
|
|
249
|
+
propertyName: string;
|
|
250
|
+
unitName: string;
|
|
246
251
|
unitSlug: string;
|
|
247
252
|
styleName: string;
|
|
248
253
|
unitBedrooms: number;
|
|
@@ -252,9 +257,11 @@ declare const styleDrawerSchema: z.ZodObject<{
|
|
|
252
257
|
declare const furnitureViewedSchema: z.ZodObject<{
|
|
253
258
|
propertyId: z.ZodString;
|
|
254
259
|
propertySlug: z.ZodString;
|
|
260
|
+
} & {
|
|
261
|
+
propertyName: z.ZodString;
|
|
255
262
|
} & {
|
|
256
263
|
unitId: z.ZodString;
|
|
257
|
-
|
|
264
|
+
unitName: z.ZodString;
|
|
258
265
|
unitSlug: z.ZodString;
|
|
259
266
|
} & {
|
|
260
267
|
roomName: z.ZodString;
|
|
@@ -269,7 +276,8 @@ declare const furnitureViewedSchema: z.ZodObject<{
|
|
|
269
276
|
unitId: string;
|
|
270
277
|
furnitureId: string;
|
|
271
278
|
styleId: string;
|
|
272
|
-
|
|
279
|
+
propertyName: string;
|
|
280
|
+
unitName: string;
|
|
273
281
|
unitSlug: string;
|
|
274
282
|
styleName: string;
|
|
275
283
|
unitBedrooms: number;
|
|
@@ -281,7 +289,8 @@ declare const furnitureViewedSchema: z.ZodObject<{
|
|
|
281
289
|
unitId: string;
|
|
282
290
|
furnitureId: string;
|
|
283
291
|
styleId: string;
|
|
284
|
-
|
|
292
|
+
propertyName: string;
|
|
293
|
+
unitName: string;
|
|
285
294
|
unitSlug: string;
|
|
286
295
|
styleName: string;
|
|
287
296
|
unitBedrooms: number;
|
|
@@ -291,9 +300,11 @@ declare const furnitureViewedSchema: z.ZodObject<{
|
|
|
291
300
|
declare const furnitureExternalUrlSchema: z.ZodObject<{
|
|
292
301
|
propertyId: z.ZodString;
|
|
293
302
|
propertySlug: z.ZodString;
|
|
303
|
+
} & {
|
|
304
|
+
propertyName: z.ZodString;
|
|
294
305
|
} & {
|
|
295
306
|
unitId: z.ZodString;
|
|
296
|
-
|
|
307
|
+
unitName: z.ZodString;
|
|
297
308
|
unitSlug: z.ZodString;
|
|
298
309
|
} & {
|
|
299
310
|
roomName: z.ZodString;
|
|
@@ -313,7 +324,8 @@ declare const furnitureExternalUrlSchema: z.ZodObject<{
|
|
|
313
324
|
link: string;
|
|
314
325
|
furnitureId: string;
|
|
315
326
|
styleId: string;
|
|
316
|
-
|
|
327
|
+
propertyName: string;
|
|
328
|
+
unitName: string;
|
|
317
329
|
unitSlug: string;
|
|
318
330
|
styleName: string;
|
|
319
331
|
unitBedrooms: number;
|
|
@@ -328,7 +340,8 @@ declare const furnitureExternalUrlSchema: z.ZodObject<{
|
|
|
328
340
|
link: string;
|
|
329
341
|
furnitureId: string;
|
|
330
342
|
styleId: string;
|
|
331
|
-
|
|
343
|
+
propertyName: string;
|
|
344
|
+
unitName: string;
|
|
332
345
|
unitSlug: string;
|
|
333
346
|
styleName: string;
|
|
334
347
|
unitBedrooms: number;
|
|
@@ -339,9 +352,11 @@ declare const furnitureExternalUrlSchema: z.ZodObject<{
|
|
|
339
352
|
declare const furnitureSavedSchema: z.ZodObject<{
|
|
340
353
|
propertyId: z.ZodString;
|
|
341
354
|
propertySlug: z.ZodString;
|
|
355
|
+
} & {
|
|
356
|
+
propertyName: z.ZodString;
|
|
342
357
|
} & {
|
|
343
358
|
unitId: z.ZodString;
|
|
344
|
-
|
|
359
|
+
unitName: z.ZodString;
|
|
345
360
|
unitSlug: z.ZodString;
|
|
346
361
|
} & {
|
|
347
362
|
roomName: z.ZodString;
|
|
@@ -356,7 +371,8 @@ declare const furnitureSavedSchema: z.ZodObject<{
|
|
|
356
371
|
unitId: string;
|
|
357
372
|
furnitureId: string;
|
|
358
373
|
styleId: string;
|
|
359
|
-
|
|
374
|
+
propertyName: string;
|
|
375
|
+
unitName: string;
|
|
360
376
|
unitSlug: string;
|
|
361
377
|
styleName: string;
|
|
362
378
|
unitBedrooms: number;
|
|
@@ -368,7 +384,8 @@ declare const furnitureSavedSchema: z.ZodObject<{
|
|
|
368
384
|
unitId: string;
|
|
369
385
|
furnitureId: string;
|
|
370
386
|
styleId: string;
|
|
371
|
-
|
|
387
|
+
propertyName: string;
|
|
388
|
+
unitName: string;
|
|
372
389
|
unitSlug: string;
|
|
373
390
|
styleName: string;
|
|
374
391
|
unitBedrooms: number;
|
|
@@ -378,9 +395,11 @@ declare const furnitureSavedSchema: z.ZodObject<{
|
|
|
378
395
|
declare const furnitureModalOpenedSchema: z.ZodObject<{
|
|
379
396
|
propertyId: z.ZodString;
|
|
380
397
|
propertySlug: z.ZodString;
|
|
398
|
+
} & {
|
|
399
|
+
propertyName: z.ZodString;
|
|
381
400
|
} & {
|
|
382
401
|
unitId: z.ZodString;
|
|
383
|
-
|
|
402
|
+
unitName: z.ZodString;
|
|
384
403
|
unitSlug: z.ZodString;
|
|
385
404
|
} & {
|
|
386
405
|
roomName: z.ZodString;
|
|
@@ -395,7 +414,8 @@ declare const furnitureModalOpenedSchema: z.ZodObject<{
|
|
|
395
414
|
unitId: string;
|
|
396
415
|
furnitureId: string;
|
|
397
416
|
styleId: string;
|
|
398
|
-
|
|
417
|
+
propertyName: string;
|
|
418
|
+
unitName: string;
|
|
399
419
|
unitSlug: string;
|
|
400
420
|
styleName: string;
|
|
401
421
|
unitBedrooms: number;
|
|
@@ -407,7 +427,8 @@ declare const furnitureModalOpenedSchema: z.ZodObject<{
|
|
|
407
427
|
unitId: string;
|
|
408
428
|
furnitureId: string;
|
|
409
429
|
styleId: string;
|
|
410
|
-
|
|
430
|
+
propertyName: string;
|
|
431
|
+
unitName: string;
|
|
411
432
|
unitSlug: string;
|
|
412
433
|
styleName: string;
|
|
413
434
|
unitBedrooms: number;
|
|
@@ -417,9 +438,11 @@ declare const furnitureModalOpenedSchema: z.ZodObject<{
|
|
|
417
438
|
declare const roomEnteredSchema: z.ZodObject<{
|
|
418
439
|
propertyId: z.ZodString;
|
|
419
440
|
propertySlug: z.ZodString;
|
|
441
|
+
} & {
|
|
442
|
+
propertyName: z.ZodString;
|
|
420
443
|
} & {
|
|
421
444
|
unitId: z.ZodString;
|
|
422
|
-
|
|
445
|
+
unitName: z.ZodString;
|
|
423
446
|
unitSlug: z.ZodString;
|
|
424
447
|
} & {
|
|
425
448
|
roomName: z.ZodString;
|
|
@@ -432,7 +455,8 @@ declare const roomEnteredSchema: z.ZodObject<{
|
|
|
432
455
|
propertyId: string;
|
|
433
456
|
unitId: string;
|
|
434
457
|
styleId: string;
|
|
435
|
-
|
|
458
|
+
propertyName: string;
|
|
459
|
+
unitName: string;
|
|
436
460
|
unitSlug: string;
|
|
437
461
|
styleName: string;
|
|
438
462
|
unitBedrooms: number;
|
|
@@ -443,7 +467,8 @@ declare const roomEnteredSchema: z.ZodObject<{
|
|
|
443
467
|
propertyId: string;
|
|
444
468
|
unitId: string;
|
|
445
469
|
styleId: string;
|
|
446
|
-
|
|
470
|
+
propertyName: string;
|
|
471
|
+
unitName: string;
|
|
447
472
|
unitSlug: string;
|
|
448
473
|
styleName: string;
|
|
449
474
|
unitBedrooms: number;
|
|
@@ -453,9 +478,11 @@ declare const roomEnteredSchema: z.ZodObject<{
|
|
|
453
478
|
declare const roomLeftSchema: z.ZodObject<{
|
|
454
479
|
propertyId: z.ZodString;
|
|
455
480
|
propertySlug: z.ZodString;
|
|
481
|
+
} & {
|
|
482
|
+
propertyName: z.ZodString;
|
|
456
483
|
} & {
|
|
457
484
|
unitId: z.ZodString;
|
|
458
|
-
|
|
485
|
+
unitName: z.ZodString;
|
|
459
486
|
unitSlug: z.ZodString;
|
|
460
487
|
} & {
|
|
461
488
|
roomName: z.ZodString;
|
|
@@ -470,7 +497,8 @@ declare const roomLeftSchema: z.ZodObject<{
|
|
|
470
497
|
propertyId: string;
|
|
471
498
|
unitId: string;
|
|
472
499
|
styleId: string;
|
|
473
|
-
|
|
500
|
+
propertyName: string;
|
|
501
|
+
unitName: string;
|
|
474
502
|
unitSlug: string;
|
|
475
503
|
styleName: string;
|
|
476
504
|
unitBedrooms: number;
|
|
@@ -482,7 +510,8 @@ declare const roomLeftSchema: z.ZodObject<{
|
|
|
482
510
|
propertyId: string;
|
|
483
511
|
unitId: string;
|
|
484
512
|
styleId: string;
|
|
485
|
-
|
|
513
|
+
propertyName: string;
|
|
514
|
+
unitName: string;
|
|
486
515
|
unitSlug: string;
|
|
487
516
|
styleName: string;
|
|
488
517
|
unitBedrooms: number;
|
|
@@ -493,9 +522,11 @@ declare const roomLeftSchema: z.ZodObject<{
|
|
|
493
522
|
declare const videoStartedSchema: z.ZodObject<{
|
|
494
523
|
propertyId: z.ZodString;
|
|
495
524
|
propertySlug: z.ZodString;
|
|
525
|
+
} & {
|
|
526
|
+
propertyName: z.ZodString;
|
|
496
527
|
} & {
|
|
497
528
|
unitId: z.ZodString;
|
|
498
|
-
|
|
529
|
+
unitName: z.ZodString;
|
|
499
530
|
unitSlug: z.ZodString;
|
|
500
531
|
} & {
|
|
501
532
|
roomName: z.ZodString;
|
|
@@ -512,7 +543,8 @@ declare const videoStartedSchema: z.ZodObject<{
|
|
|
512
543
|
propertyId: string;
|
|
513
544
|
unitId: string;
|
|
514
545
|
styleId: string;
|
|
515
|
-
|
|
546
|
+
propertyName: string;
|
|
547
|
+
unitName: string;
|
|
516
548
|
unitSlug: string;
|
|
517
549
|
styleName: string;
|
|
518
550
|
unitBedrooms: number;
|
|
@@ -527,7 +559,8 @@ declare const videoStartedSchema: z.ZodObject<{
|
|
|
527
559
|
propertyId: string;
|
|
528
560
|
unitId: string;
|
|
529
561
|
styleId: string;
|
|
530
|
-
|
|
562
|
+
propertyName: string;
|
|
563
|
+
unitName: string;
|
|
531
564
|
unitSlug: string;
|
|
532
565
|
styleName: string;
|
|
533
566
|
unitBedrooms: number;
|
|
@@ -541,9 +574,11 @@ declare const videoStartedSchema: z.ZodObject<{
|
|
|
541
574
|
declare const emailTrackedSchema: z.ZodObject<{
|
|
542
575
|
propertyId: z.ZodString;
|
|
543
576
|
propertySlug: z.ZodString;
|
|
577
|
+
} & {
|
|
578
|
+
propertyName: z.ZodString;
|
|
544
579
|
} & {
|
|
545
580
|
unitId: z.ZodString;
|
|
546
|
-
|
|
581
|
+
unitName: z.ZodString;
|
|
547
582
|
unitSlug: z.ZodString;
|
|
548
583
|
} & {
|
|
549
584
|
utmSource: z.ZodString;
|
|
@@ -558,7 +593,8 @@ declare const emailTrackedSchema: z.ZodObject<{
|
|
|
558
593
|
propertyId: string;
|
|
559
594
|
unitId: string;
|
|
560
595
|
styleId: string;
|
|
561
|
-
|
|
596
|
+
propertyName: string;
|
|
597
|
+
unitName: string;
|
|
562
598
|
unitSlug: string;
|
|
563
599
|
styleName: string;
|
|
564
600
|
unitBedrooms: number;
|
|
@@ -571,7 +607,8 @@ declare const emailTrackedSchema: z.ZodObject<{
|
|
|
571
607
|
propertyId: string;
|
|
572
608
|
unitId: string;
|
|
573
609
|
styleId: string;
|
|
574
|
-
|
|
610
|
+
propertyName: string;
|
|
611
|
+
unitName: string;
|
|
575
612
|
unitSlug: string;
|
|
576
613
|
styleName: string;
|
|
577
614
|
unitBedrooms: number;
|
|
@@ -583,9 +620,11 @@ declare const emailTrackedSchema: z.ZodObject<{
|
|
|
583
620
|
declare const toastSchema: z.ZodObject<{
|
|
584
621
|
propertyId: z.ZodString;
|
|
585
622
|
propertySlug: z.ZodString;
|
|
623
|
+
} & {
|
|
624
|
+
propertyName: z.ZodString;
|
|
586
625
|
} & {
|
|
587
626
|
unitId: z.ZodString;
|
|
588
|
-
|
|
627
|
+
unitName: z.ZodString;
|
|
589
628
|
unitSlug: z.ZodString;
|
|
590
629
|
} & {
|
|
591
630
|
toastCopy: z.ZodString;
|
|
@@ -593,14 +632,16 @@ declare const toastSchema: z.ZodObject<{
|
|
|
593
632
|
propertySlug: string;
|
|
594
633
|
propertyId: string;
|
|
595
634
|
unitId: string;
|
|
596
|
-
|
|
635
|
+
propertyName: string;
|
|
636
|
+
unitName: string;
|
|
597
637
|
unitSlug: string;
|
|
598
638
|
toastCopy: string;
|
|
599
639
|
}, {
|
|
600
640
|
propertySlug: string;
|
|
601
641
|
propertyId: string;
|
|
602
642
|
unitId: string;
|
|
603
|
-
|
|
643
|
+
propertyName: string;
|
|
644
|
+
unitName: string;
|
|
604
645
|
unitSlug: string;
|
|
605
646
|
toastCopy: string;
|
|
606
647
|
}>;
|
|
@@ -611,7 +652,7 @@ declare const hoverUnitSchema: z.ZodObject<{
|
|
|
611
652
|
propertyName: z.ZodString;
|
|
612
653
|
} & {
|
|
613
654
|
unitId: z.ZodString;
|
|
614
|
-
|
|
655
|
+
unitName: z.ZodString;
|
|
615
656
|
unitSlug: z.ZodString;
|
|
616
657
|
} & {
|
|
617
658
|
favoritedUnit: z.ZodBoolean;
|
|
@@ -620,7 +661,7 @@ declare const hoverUnitSchema: z.ZodObject<{
|
|
|
620
661
|
propertyId: string;
|
|
621
662
|
unitId: string;
|
|
622
663
|
propertyName: string;
|
|
623
|
-
|
|
664
|
+
unitName: string;
|
|
624
665
|
unitSlug: string;
|
|
625
666
|
favoritedUnit: boolean;
|
|
626
667
|
}, {
|
|
@@ -628,7 +669,7 @@ declare const hoverUnitSchema: z.ZodObject<{
|
|
|
628
669
|
propertyId: string;
|
|
629
670
|
unitId: string;
|
|
630
671
|
propertyName: string;
|
|
631
|
-
|
|
672
|
+
unitName: string;
|
|
632
673
|
unitSlug: string;
|
|
633
674
|
favoritedUnit: boolean;
|
|
634
675
|
}>;
|
|
@@ -792,7 +833,7 @@ declare const clickUnitSchema: z.ZodObject<{
|
|
|
792
833
|
propertyName: z.ZodString;
|
|
793
834
|
} & {
|
|
794
835
|
unitId: z.ZodString;
|
|
795
|
-
|
|
836
|
+
unitName: z.ZodString;
|
|
796
837
|
unitSlug: z.ZodString;
|
|
797
838
|
} & {
|
|
798
839
|
favoritedUnit: z.ZodBoolean;
|
|
@@ -801,7 +842,7 @@ declare const clickUnitSchema: z.ZodObject<{
|
|
|
801
842
|
propertyId: string;
|
|
802
843
|
unitId: string;
|
|
803
844
|
propertyName: string;
|
|
804
|
-
|
|
845
|
+
unitName: string;
|
|
805
846
|
unitSlug: string;
|
|
806
847
|
favoritedUnit: boolean;
|
|
807
848
|
}, {
|
|
@@ -809,7 +850,7 @@ declare const clickUnitSchema: z.ZodObject<{
|
|
|
809
850
|
propertyId: string;
|
|
810
851
|
unitId: string;
|
|
811
852
|
propertyName: string;
|
|
812
|
-
|
|
853
|
+
unitName: string;
|
|
813
854
|
unitSlug: string;
|
|
814
855
|
favoritedUnit: boolean;
|
|
815
856
|
}>;
|
|
@@ -820,7 +861,7 @@ declare const clickUnitFavoritesSchema: z.ZodObject<{
|
|
|
820
861
|
propertyName: z.ZodString;
|
|
821
862
|
} & {
|
|
822
863
|
unitId: z.ZodString;
|
|
823
|
-
|
|
864
|
+
unitName: z.ZodString;
|
|
824
865
|
unitSlug: z.ZodString;
|
|
825
866
|
} & {
|
|
826
867
|
favoritedUnit: z.ZodBoolean;
|
|
@@ -829,7 +870,7 @@ declare const clickUnitFavoritesSchema: z.ZodObject<{
|
|
|
829
870
|
propertyId: string;
|
|
830
871
|
unitId: string;
|
|
831
872
|
propertyName: string;
|
|
832
|
-
|
|
873
|
+
unitName: string;
|
|
833
874
|
unitSlug: string;
|
|
834
875
|
favoritedUnit: boolean;
|
|
835
876
|
}, {
|
|
@@ -837,7 +878,7 @@ declare const clickUnitFavoritesSchema: z.ZodObject<{
|
|
|
837
878
|
propertyId: string;
|
|
838
879
|
unitId: string;
|
|
839
880
|
propertyName: string;
|
|
840
|
-
|
|
881
|
+
unitName: string;
|
|
841
882
|
unitSlug: string;
|
|
842
883
|
favoritedUnit: boolean;
|
|
843
884
|
}>;
|
|
@@ -848,7 +889,7 @@ declare const unitUnfavoritedSchema: z.ZodObject<{
|
|
|
848
889
|
propertyName: z.ZodString;
|
|
849
890
|
} & {
|
|
850
891
|
unitId: z.ZodString;
|
|
851
|
-
|
|
892
|
+
unitName: z.ZodString;
|
|
852
893
|
unitSlug: z.ZodString;
|
|
853
894
|
resultsUnitCount: z.ZodNumber;
|
|
854
895
|
unitCountDate: z.ZodOptional<z.ZodString>;
|
|
@@ -858,7 +899,7 @@ declare const unitUnfavoritedSchema: z.ZodObject<{
|
|
|
858
899
|
unitId: string;
|
|
859
900
|
propertyName: string;
|
|
860
901
|
resultsUnitCount: number;
|
|
861
|
-
|
|
902
|
+
unitName: string;
|
|
862
903
|
unitSlug: string;
|
|
863
904
|
unitCountDate?: string | undefined;
|
|
864
905
|
}, {
|
|
@@ -867,7 +908,7 @@ declare const unitUnfavoritedSchema: z.ZodObject<{
|
|
|
867
908
|
unitId: string;
|
|
868
909
|
propertyName: string;
|
|
869
910
|
resultsUnitCount: number;
|
|
870
|
-
|
|
911
|
+
unitName: string;
|
|
871
912
|
unitSlug: string;
|
|
872
913
|
unitCountDate?: string | undefined;
|
|
873
914
|
}>;
|
|
@@ -914,7 +955,7 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn): {
|
|
|
914
955
|
propertyId: string;
|
|
915
956
|
unitId: string;
|
|
916
957
|
propertyName: string;
|
|
917
|
-
|
|
958
|
+
unitName: string;
|
|
918
959
|
unitSlug: string;
|
|
919
960
|
favoritedUnit: boolean;
|
|
920
961
|
}) => void;
|
|
@@ -923,7 +964,7 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn): {
|
|
|
923
964
|
propertyId: string;
|
|
924
965
|
unitId: string;
|
|
925
966
|
propertyName: string;
|
|
926
|
-
|
|
967
|
+
unitName: string;
|
|
927
968
|
unitSlug: string;
|
|
928
969
|
favoritedUnit: boolean;
|
|
929
970
|
}) => void;
|
|
@@ -971,7 +1012,7 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn): {
|
|
|
971
1012
|
propertyId: string;
|
|
972
1013
|
unitId: string;
|
|
973
1014
|
propertyName: string;
|
|
974
|
-
|
|
1015
|
+
unitName: string;
|
|
975
1016
|
unitSlug: string;
|
|
976
1017
|
favoritedUnit: boolean;
|
|
977
1018
|
}) => void;
|
|
@@ -981,7 +1022,7 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn): {
|
|
|
981
1022
|
unitId: string;
|
|
982
1023
|
propertyName: string;
|
|
983
1024
|
resultsUnitCount: number;
|
|
984
|
-
|
|
1025
|
+
unitName: string;
|
|
985
1026
|
unitSlug: string;
|
|
986
1027
|
unitCountDate?: string | undefined;
|
|
987
1028
|
}) => void;
|
|
@@ -1031,7 +1072,7 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn): {
|
|
|
1031
1072
|
unitId: string;
|
|
1032
1073
|
styleId: string;
|
|
1033
1074
|
propertyName: string;
|
|
1034
|
-
|
|
1075
|
+
unitName: string;
|
|
1035
1076
|
unitSlug: string;
|
|
1036
1077
|
buttonName: string;
|
|
1037
1078
|
formName: string;
|
|
@@ -1045,7 +1086,7 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn): {
|
|
|
1045
1086
|
unitId: string;
|
|
1046
1087
|
styleId: string;
|
|
1047
1088
|
propertyName: string;
|
|
1048
|
-
|
|
1089
|
+
unitName: string;
|
|
1049
1090
|
unitSlug: string;
|
|
1050
1091
|
buttonName: string;
|
|
1051
1092
|
formName: string;
|
|
@@ -1058,7 +1099,8 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn): {
|
|
|
1058
1099
|
propertyId: string;
|
|
1059
1100
|
unitId: string;
|
|
1060
1101
|
styleId: string;
|
|
1061
|
-
|
|
1102
|
+
propertyName: string;
|
|
1103
|
+
unitName: string;
|
|
1062
1104
|
unitSlug: string;
|
|
1063
1105
|
styleName: string;
|
|
1064
1106
|
unitBedrooms: number;
|
|
@@ -1070,7 +1112,8 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn): {
|
|
|
1070
1112
|
propertyId: string;
|
|
1071
1113
|
unitId: string;
|
|
1072
1114
|
styleId: string;
|
|
1073
|
-
|
|
1115
|
+
propertyName: string;
|
|
1116
|
+
unitName: string;
|
|
1074
1117
|
unitSlug: string;
|
|
1075
1118
|
styleName: string;
|
|
1076
1119
|
unitBedrooms: number;
|
|
@@ -1083,7 +1126,8 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn): {
|
|
|
1083
1126
|
unitId: string;
|
|
1084
1127
|
furnitureId: string;
|
|
1085
1128
|
styleId: string;
|
|
1086
|
-
|
|
1129
|
+
propertyName: string;
|
|
1130
|
+
unitName: string;
|
|
1087
1131
|
unitSlug: string;
|
|
1088
1132
|
styleName: string;
|
|
1089
1133
|
unitBedrooms: number;
|
|
@@ -1098,7 +1142,8 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn): {
|
|
|
1098
1142
|
link: string;
|
|
1099
1143
|
furnitureId: string;
|
|
1100
1144
|
styleId: string;
|
|
1101
|
-
|
|
1145
|
+
propertyName: string;
|
|
1146
|
+
unitName: string;
|
|
1102
1147
|
unitSlug: string;
|
|
1103
1148
|
styleName: string;
|
|
1104
1149
|
unitBedrooms: number;
|
|
@@ -1112,7 +1157,8 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn): {
|
|
|
1112
1157
|
unitId: string;
|
|
1113
1158
|
furnitureId: string;
|
|
1114
1159
|
styleId: string;
|
|
1115
|
-
|
|
1160
|
+
propertyName: string;
|
|
1161
|
+
unitName: string;
|
|
1116
1162
|
unitSlug: string;
|
|
1117
1163
|
styleName: string;
|
|
1118
1164
|
unitBedrooms: number;
|
|
@@ -1125,7 +1171,8 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn): {
|
|
|
1125
1171
|
unitId: string;
|
|
1126
1172
|
furnitureId: string;
|
|
1127
1173
|
styleId: string;
|
|
1128
|
-
|
|
1174
|
+
propertyName: string;
|
|
1175
|
+
unitName: string;
|
|
1129
1176
|
unitSlug: string;
|
|
1130
1177
|
styleName: string;
|
|
1131
1178
|
unitBedrooms: number;
|
|
@@ -1137,7 +1184,8 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn): {
|
|
|
1137
1184
|
propertyId: string;
|
|
1138
1185
|
unitId: string;
|
|
1139
1186
|
styleId: string;
|
|
1140
|
-
|
|
1187
|
+
propertyName: string;
|
|
1188
|
+
unitName: string;
|
|
1141
1189
|
unitSlug: string;
|
|
1142
1190
|
styleName: string;
|
|
1143
1191
|
unitBedrooms: number;
|
|
@@ -1149,7 +1197,8 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn): {
|
|
|
1149
1197
|
propertyId: string;
|
|
1150
1198
|
unitId: string;
|
|
1151
1199
|
styleId: string;
|
|
1152
|
-
|
|
1200
|
+
propertyName: string;
|
|
1201
|
+
unitName: string;
|
|
1153
1202
|
unitSlug: string;
|
|
1154
1203
|
styleName: string;
|
|
1155
1204
|
unitBedrooms: number;
|
|
@@ -1162,7 +1211,8 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn): {
|
|
|
1162
1211
|
propertyId: string;
|
|
1163
1212
|
unitId: string;
|
|
1164
1213
|
styleId: string;
|
|
1165
|
-
|
|
1214
|
+
propertyName: string;
|
|
1215
|
+
unitName: string;
|
|
1166
1216
|
unitSlug: string;
|
|
1167
1217
|
styleName: string;
|
|
1168
1218
|
unitBedrooms: number;
|
|
@@ -1178,7 +1228,8 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn): {
|
|
|
1178
1228
|
propertyId: string;
|
|
1179
1229
|
unitId: string;
|
|
1180
1230
|
styleId: string;
|
|
1181
|
-
|
|
1231
|
+
propertyName: string;
|
|
1232
|
+
unitName: string;
|
|
1182
1233
|
unitSlug: string;
|
|
1183
1234
|
styleName: string;
|
|
1184
1235
|
unitBedrooms: number;
|
|
@@ -1191,7 +1242,8 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn): {
|
|
|
1191
1242
|
propertySlug: string;
|
|
1192
1243
|
propertyId: string;
|
|
1193
1244
|
unitId: string;
|
|
1194
|
-
|
|
1245
|
+
propertyName: string;
|
|
1246
|
+
unitName: string;
|
|
1195
1247
|
unitSlug: string;
|
|
1196
1248
|
toastCopy: string;
|
|
1197
1249
|
}) => void;
|
|
@@ -1199,7 +1251,8 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn): {
|
|
|
1199
1251
|
propertySlug: string;
|
|
1200
1252
|
propertyId: string;
|
|
1201
1253
|
unitId: string;
|
|
1202
|
-
|
|
1254
|
+
propertyName: string;
|
|
1255
|
+
unitName: string;
|
|
1203
1256
|
unitSlug: string;
|
|
1204
1257
|
toastCopy: string;
|
|
1205
1258
|
}) => void;
|
|
@@ -1207,7 +1260,8 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn): {
|
|
|
1207
1260
|
propertySlug: string;
|
|
1208
1261
|
propertyId: string;
|
|
1209
1262
|
unitId: string;
|
|
1210
|
-
|
|
1263
|
+
propertyName: string;
|
|
1264
|
+
unitName: string;
|
|
1211
1265
|
unitSlug: string;
|
|
1212
1266
|
toastCopy: string;
|
|
1213
1267
|
}) => void;
|
|
@@ -1222,7 +1276,7 @@ export declare function useTrackingEvents(): {
|
|
|
1222
1276
|
propertyId: string;
|
|
1223
1277
|
unitId: string;
|
|
1224
1278
|
propertyName: string;
|
|
1225
|
-
|
|
1279
|
+
unitName: string;
|
|
1226
1280
|
unitSlug: string;
|
|
1227
1281
|
favoritedUnit: boolean;
|
|
1228
1282
|
}) => void;
|
|
@@ -1231,7 +1285,7 @@ export declare function useTrackingEvents(): {
|
|
|
1231
1285
|
propertyId: string;
|
|
1232
1286
|
unitId: string;
|
|
1233
1287
|
propertyName: string;
|
|
1234
|
-
|
|
1288
|
+
unitName: string;
|
|
1235
1289
|
unitSlug: string;
|
|
1236
1290
|
favoritedUnit: boolean;
|
|
1237
1291
|
}) => void;
|
|
@@ -1279,7 +1333,7 @@ export declare function useTrackingEvents(): {
|
|
|
1279
1333
|
propertyId: string;
|
|
1280
1334
|
unitId: string;
|
|
1281
1335
|
propertyName: string;
|
|
1282
|
-
|
|
1336
|
+
unitName: string;
|
|
1283
1337
|
unitSlug: string;
|
|
1284
1338
|
favoritedUnit: boolean;
|
|
1285
1339
|
}) => void;
|
|
@@ -1289,7 +1343,7 @@ export declare function useTrackingEvents(): {
|
|
|
1289
1343
|
unitId: string;
|
|
1290
1344
|
propertyName: string;
|
|
1291
1345
|
resultsUnitCount: number;
|
|
1292
|
-
|
|
1346
|
+
unitName: string;
|
|
1293
1347
|
unitSlug: string;
|
|
1294
1348
|
unitCountDate?: string | undefined;
|
|
1295
1349
|
}) => void;
|
|
@@ -1339,7 +1393,7 @@ export declare function useTrackingEvents(): {
|
|
|
1339
1393
|
unitId: string;
|
|
1340
1394
|
styleId: string;
|
|
1341
1395
|
propertyName: string;
|
|
1342
|
-
|
|
1396
|
+
unitName: string;
|
|
1343
1397
|
unitSlug: string;
|
|
1344
1398
|
buttonName: string;
|
|
1345
1399
|
formName: string;
|
|
@@ -1353,7 +1407,7 @@ export declare function useTrackingEvents(): {
|
|
|
1353
1407
|
unitId: string;
|
|
1354
1408
|
styleId: string;
|
|
1355
1409
|
propertyName: string;
|
|
1356
|
-
|
|
1410
|
+
unitName: string;
|
|
1357
1411
|
unitSlug: string;
|
|
1358
1412
|
buttonName: string;
|
|
1359
1413
|
formName: string;
|
|
@@ -1366,7 +1420,8 @@ export declare function useTrackingEvents(): {
|
|
|
1366
1420
|
propertyId: string;
|
|
1367
1421
|
unitId: string;
|
|
1368
1422
|
styleId: string;
|
|
1369
|
-
|
|
1423
|
+
propertyName: string;
|
|
1424
|
+
unitName: string;
|
|
1370
1425
|
unitSlug: string;
|
|
1371
1426
|
styleName: string;
|
|
1372
1427
|
unitBedrooms: number;
|
|
@@ -1378,7 +1433,8 @@ export declare function useTrackingEvents(): {
|
|
|
1378
1433
|
propertyId: string;
|
|
1379
1434
|
unitId: string;
|
|
1380
1435
|
styleId: string;
|
|
1381
|
-
|
|
1436
|
+
propertyName: string;
|
|
1437
|
+
unitName: string;
|
|
1382
1438
|
unitSlug: string;
|
|
1383
1439
|
styleName: string;
|
|
1384
1440
|
unitBedrooms: number;
|
|
@@ -1391,7 +1447,8 @@ export declare function useTrackingEvents(): {
|
|
|
1391
1447
|
unitId: string;
|
|
1392
1448
|
furnitureId: string;
|
|
1393
1449
|
styleId: string;
|
|
1394
|
-
|
|
1450
|
+
propertyName: string;
|
|
1451
|
+
unitName: string;
|
|
1395
1452
|
unitSlug: string;
|
|
1396
1453
|
styleName: string;
|
|
1397
1454
|
unitBedrooms: number;
|
|
@@ -1406,7 +1463,8 @@ export declare function useTrackingEvents(): {
|
|
|
1406
1463
|
link: string;
|
|
1407
1464
|
furnitureId: string;
|
|
1408
1465
|
styleId: string;
|
|
1409
|
-
|
|
1466
|
+
propertyName: string;
|
|
1467
|
+
unitName: string;
|
|
1410
1468
|
unitSlug: string;
|
|
1411
1469
|
styleName: string;
|
|
1412
1470
|
unitBedrooms: number;
|
|
@@ -1420,7 +1478,8 @@ export declare function useTrackingEvents(): {
|
|
|
1420
1478
|
unitId: string;
|
|
1421
1479
|
furnitureId: string;
|
|
1422
1480
|
styleId: string;
|
|
1423
|
-
|
|
1481
|
+
propertyName: string;
|
|
1482
|
+
unitName: string;
|
|
1424
1483
|
unitSlug: string;
|
|
1425
1484
|
styleName: string;
|
|
1426
1485
|
unitBedrooms: number;
|
|
@@ -1433,7 +1492,8 @@ export declare function useTrackingEvents(): {
|
|
|
1433
1492
|
unitId: string;
|
|
1434
1493
|
furnitureId: string;
|
|
1435
1494
|
styleId: string;
|
|
1436
|
-
|
|
1495
|
+
propertyName: string;
|
|
1496
|
+
unitName: string;
|
|
1437
1497
|
unitSlug: string;
|
|
1438
1498
|
styleName: string;
|
|
1439
1499
|
unitBedrooms: number;
|
|
@@ -1445,7 +1505,8 @@ export declare function useTrackingEvents(): {
|
|
|
1445
1505
|
propertyId: string;
|
|
1446
1506
|
unitId: string;
|
|
1447
1507
|
styleId: string;
|
|
1448
|
-
|
|
1508
|
+
propertyName: string;
|
|
1509
|
+
unitName: string;
|
|
1449
1510
|
unitSlug: string;
|
|
1450
1511
|
styleName: string;
|
|
1451
1512
|
unitBedrooms: number;
|
|
@@ -1457,7 +1518,8 @@ export declare function useTrackingEvents(): {
|
|
|
1457
1518
|
propertyId: string;
|
|
1458
1519
|
unitId: string;
|
|
1459
1520
|
styleId: string;
|
|
1460
|
-
|
|
1521
|
+
propertyName: string;
|
|
1522
|
+
unitName: string;
|
|
1461
1523
|
unitSlug: string;
|
|
1462
1524
|
styleName: string;
|
|
1463
1525
|
unitBedrooms: number;
|
|
@@ -1470,7 +1532,8 @@ export declare function useTrackingEvents(): {
|
|
|
1470
1532
|
propertyId: string;
|
|
1471
1533
|
unitId: string;
|
|
1472
1534
|
styleId: string;
|
|
1473
|
-
|
|
1535
|
+
propertyName: string;
|
|
1536
|
+
unitName: string;
|
|
1474
1537
|
unitSlug: string;
|
|
1475
1538
|
styleName: string;
|
|
1476
1539
|
unitBedrooms: number;
|
|
@@ -1486,7 +1549,8 @@ export declare function useTrackingEvents(): {
|
|
|
1486
1549
|
propertyId: string;
|
|
1487
1550
|
unitId: string;
|
|
1488
1551
|
styleId: string;
|
|
1489
|
-
|
|
1552
|
+
propertyName: string;
|
|
1553
|
+
unitName: string;
|
|
1490
1554
|
unitSlug: string;
|
|
1491
1555
|
styleName: string;
|
|
1492
1556
|
unitBedrooms: number;
|
|
@@ -1499,7 +1563,8 @@ export declare function useTrackingEvents(): {
|
|
|
1499
1563
|
propertySlug: string;
|
|
1500
1564
|
propertyId: string;
|
|
1501
1565
|
unitId: string;
|
|
1502
|
-
|
|
1566
|
+
propertyName: string;
|
|
1567
|
+
unitName: string;
|
|
1503
1568
|
unitSlug: string;
|
|
1504
1569
|
toastCopy: string;
|
|
1505
1570
|
}) => void;
|
|
@@ -1507,7 +1572,8 @@ export declare function useTrackingEvents(): {
|
|
|
1507
1572
|
propertySlug: string;
|
|
1508
1573
|
propertyId: string;
|
|
1509
1574
|
unitId: string;
|
|
1510
|
-
|
|
1575
|
+
propertyName: string;
|
|
1576
|
+
unitName: string;
|
|
1511
1577
|
unitSlug: string;
|
|
1512
1578
|
toastCopy: string;
|
|
1513
1579
|
}) => void;
|
|
@@ -1515,7 +1581,8 @@ export declare function useTrackingEvents(): {
|
|
|
1515
1581
|
propertySlug: string;
|
|
1516
1582
|
propertyId: string;
|
|
1517
1583
|
unitId: string;
|
|
1518
|
-
|
|
1584
|
+
propertyName: string;
|
|
1585
|
+
unitName: string;
|
|
1519
1586
|
unitSlug: string;
|
|
1520
1587
|
toastCopy: string;
|
|
1521
1588
|
}) => void;
|