@superbright/indexeddb-orm 1.0.48 → 1.0.50
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/README.md +24 -1
- package/dist/api/api.generated.d.ts +146 -0
- package/dist/api/cms-schemas.generated.cjs +2 -0
- package/dist/api/cms-schemas.generated.cjs.map +1 -0
- package/dist/api/cms-schemas.generated.d.ts +3087 -0
- package/dist/api/cms-schemas.generated.mjs +133 -0
- package/dist/api/cms-schemas.generated.mjs.map +1 -0
- package/dist/api/{response-schemas.generated.cjs → embed-schemas.generated.cjs} +1 -1
- package/dist/api/embed-schemas.generated.cjs.map +1 -0
- package/dist/api/{response-schemas.generated.d.ts → embed-schemas.generated.d.ts} +744 -744
- package/dist/api/{response-schemas.generated.mjs → embed-schemas.generated.mjs} +1 -1
- package/dist/api/embed-schemas.generated.mjs.map +1 -0
- package/dist/api/schemas.generated.d.ts +262 -262
- package/dist/base/floorplan.d.ts +4 -4
- package/dist/base/furniture.d.ts +4 -4
- package/dist/base/media.d.ts +14 -14
- package/dist/base/property.d.ts +8 -8
- package/dist/base/propertylink.d.ts +2 -2
- package/dist/base/room.d.ts +2 -2
- package/dist/base/style.d.ts +2 -2
- package/dist/base/unit.d.ts +16 -16
- package/dist/base/userinquiry.d.ts +2 -2
- package/dist/base/visitor.d.ts +2 -2
- package/dist/base/visitorfilter.d.ts +2 -2
- package/dist/base/visitorquestionnaire.d.ts +2 -2
- package/dist/base/visitorunitengagement.d.ts +4 -4
- package/dist/cms-schemas.cjs +2 -0
- package/dist/cms-schemas.cjs.map +1 -0
- package/dist/cms-schemas.d.ts +1 -0
- package/dist/cms-schemas.mjs +25 -0
- package/dist/cms-schemas.mjs.map +1 -0
- package/dist/embed-schemas.cjs +2 -0
- package/dist/embed-schemas.cjs.map +1 -0
- package/dist/embed-schemas.d.ts +1 -0
- package/dist/{response-schemas.mjs → embed-schemas.mjs} +2 -2
- package/dist/embed-schemas.mjs.map +1 -0
- package/dist/features/analytics/analytics.d.ts +102 -102
- package/dist/schema.d.ts +253 -253
- package/package.json +10 -5
- package/dist/api/response-schemas.generated.cjs.map +0 -1
- package/dist/api/response-schemas.generated.mjs.map +0 -1
- package/dist/response-schemas.cjs +0 -2
- package/dist/response-schemas.cjs.map +0 -1
- package/dist/response-schemas.d.ts +0 -1
- package/dist/response-schemas.mjs.map +0 -1
|
@@ -216,9 +216,9 @@ declare const getInTouchFormSchema: z.ZodObject<{
|
|
|
216
216
|
favoritedUnit: z.ZodBoolean;
|
|
217
217
|
}, "strip", z.ZodTypeAny, {
|
|
218
218
|
propertyId: string;
|
|
219
|
+
styleId: string;
|
|
219
220
|
propertySlug: string;
|
|
220
221
|
unitId: string;
|
|
221
|
-
styleId: string;
|
|
222
222
|
propertyName: string;
|
|
223
223
|
unitName: string;
|
|
224
224
|
unitSlug: string;
|
|
@@ -229,9 +229,9 @@ declare const getInTouchFormSchema: z.ZodObject<{
|
|
|
229
229
|
unitBedrooms: number;
|
|
230
230
|
}, {
|
|
231
231
|
propertyId: string;
|
|
232
|
+
styleId: string;
|
|
232
233
|
propertySlug: string;
|
|
233
234
|
unitId: string;
|
|
234
|
-
styleId: string;
|
|
235
235
|
propertyName: string;
|
|
236
236
|
unitName: string;
|
|
237
237
|
unitSlug: string;
|
|
@@ -257,9 +257,9 @@ declare const styleDrawerSchema: z.ZodObject<{
|
|
|
257
257
|
favoritedUnit: z.ZodBoolean;
|
|
258
258
|
}, "strip", z.ZodTypeAny, {
|
|
259
259
|
propertyId: string;
|
|
260
|
+
styleId: string;
|
|
260
261
|
propertySlug: string;
|
|
261
262
|
unitId: string;
|
|
262
|
-
styleId: string;
|
|
263
263
|
propertyName: string;
|
|
264
264
|
unitName: string;
|
|
265
265
|
unitSlug: string;
|
|
@@ -269,9 +269,9 @@ declare const styleDrawerSchema: z.ZodObject<{
|
|
|
269
269
|
roomName: string;
|
|
270
270
|
}, {
|
|
271
271
|
propertyId: string;
|
|
272
|
+
styleId: string;
|
|
272
273
|
propertySlug: string;
|
|
273
274
|
unitId: string;
|
|
274
|
-
styleId: string;
|
|
275
275
|
propertyName: string;
|
|
276
276
|
unitName: string;
|
|
277
277
|
unitSlug: string;
|
|
@@ -300,11 +300,12 @@ declare const furnitureInteractionSchema: z.ZodObject<{
|
|
|
300
300
|
category: z.ZodString;
|
|
301
301
|
}, "strip", z.ZodTypeAny, {
|
|
302
302
|
type: "click" | "hover_on" | "hover_off";
|
|
303
|
+
furnitureId: string;
|
|
303
304
|
propertyId: string;
|
|
305
|
+
styleId: string;
|
|
306
|
+
category: string;
|
|
304
307
|
propertySlug: string;
|
|
305
|
-
furnitureId: string;
|
|
306
308
|
unitId: string;
|
|
307
|
-
styleId: string;
|
|
308
309
|
propertyName: string;
|
|
309
310
|
unitName: string;
|
|
310
311
|
unitSlug: string;
|
|
@@ -313,14 +314,14 @@ declare const furnitureInteractionSchema: z.ZodObject<{
|
|
|
313
314
|
roomName: string;
|
|
314
315
|
furnitureName: string;
|
|
315
316
|
brandName: string;
|
|
316
|
-
category: string;
|
|
317
317
|
}, {
|
|
318
318
|
type: "click" | "hover_on" | "hover_off";
|
|
319
|
+
furnitureId: string;
|
|
319
320
|
propertyId: string;
|
|
321
|
+
styleId: string;
|
|
322
|
+
category: string;
|
|
320
323
|
propertySlug: string;
|
|
321
|
-
furnitureId: string;
|
|
322
324
|
unitId: string;
|
|
323
|
-
styleId: string;
|
|
324
325
|
propertyName: string;
|
|
325
326
|
unitName: string;
|
|
326
327
|
unitSlug: string;
|
|
@@ -329,7 +330,6 @@ declare const furnitureInteractionSchema: z.ZodObject<{
|
|
|
329
330
|
roomName: string;
|
|
330
331
|
furnitureName: string;
|
|
331
332
|
brandName: string;
|
|
332
|
-
category: string;
|
|
333
333
|
}>;
|
|
334
334
|
declare const furnitureExternalUrlSchema: z.ZodObject<{
|
|
335
335
|
propertyId: z.ZodString;
|
|
@@ -353,12 +353,13 @@ declare const furnitureExternalUrlSchema: z.ZodObject<{
|
|
|
353
353
|
category: z.ZodString;
|
|
354
354
|
}, "strip", z.ZodTypeAny, {
|
|
355
355
|
type: string;
|
|
356
|
+
furnitureId: string;
|
|
356
357
|
propertyId: string;
|
|
358
|
+
styleId: string;
|
|
359
|
+
category: string;
|
|
357
360
|
link: string;
|
|
358
361
|
propertySlug: string;
|
|
359
|
-
furnitureId: string;
|
|
360
362
|
unitId: string;
|
|
361
|
-
styleId: string;
|
|
362
363
|
propertyName: string;
|
|
363
364
|
unitName: string;
|
|
364
365
|
unitSlug: string;
|
|
@@ -368,15 +369,15 @@ declare const furnitureExternalUrlSchema: z.ZodObject<{
|
|
|
368
369
|
roomName: string;
|
|
369
370
|
furnitureName: string;
|
|
370
371
|
brandName: string;
|
|
371
|
-
category: string;
|
|
372
372
|
}, {
|
|
373
373
|
type: string;
|
|
374
|
+
furnitureId: string;
|
|
374
375
|
propertyId: string;
|
|
376
|
+
styleId: string;
|
|
377
|
+
category: string;
|
|
375
378
|
link: string;
|
|
376
379
|
propertySlug: string;
|
|
377
|
-
furnitureId: string;
|
|
378
380
|
unitId: string;
|
|
379
|
-
styleId: string;
|
|
380
381
|
propertyName: string;
|
|
381
382
|
unitName: string;
|
|
382
383
|
unitSlug: string;
|
|
@@ -386,7 +387,6 @@ declare const furnitureExternalUrlSchema: z.ZodObject<{
|
|
|
386
387
|
roomName: string;
|
|
387
388
|
furnitureName: string;
|
|
388
389
|
brandName: string;
|
|
389
|
-
category: string;
|
|
390
390
|
}>;
|
|
391
391
|
declare const furnitureSavedSchema: z.ZodObject<{
|
|
392
392
|
propertyId: z.ZodString;
|
|
@@ -406,11 +406,12 @@ declare const furnitureSavedSchema: z.ZodObject<{
|
|
|
406
406
|
brandName: z.ZodString;
|
|
407
407
|
category: z.ZodString;
|
|
408
408
|
}, "strip", z.ZodTypeAny, {
|
|
409
|
+
furnitureId: string;
|
|
409
410
|
propertyId: string;
|
|
411
|
+
styleId: string;
|
|
412
|
+
category: string;
|
|
410
413
|
propertySlug: string;
|
|
411
|
-
furnitureId: string;
|
|
412
414
|
unitId: string;
|
|
413
|
-
styleId: string;
|
|
414
415
|
propertyName: string;
|
|
415
416
|
unitName: string;
|
|
416
417
|
unitSlug: string;
|
|
@@ -419,13 +420,13 @@ declare const furnitureSavedSchema: z.ZodObject<{
|
|
|
419
420
|
roomName: string;
|
|
420
421
|
furnitureName: string;
|
|
421
422
|
brandName: string;
|
|
422
|
-
category: string;
|
|
423
423
|
}, {
|
|
424
|
+
furnitureId: string;
|
|
424
425
|
propertyId: string;
|
|
426
|
+
styleId: string;
|
|
427
|
+
category: string;
|
|
425
428
|
propertySlug: string;
|
|
426
|
-
furnitureId: string;
|
|
427
429
|
unitId: string;
|
|
428
|
-
styleId: string;
|
|
429
430
|
propertyName: string;
|
|
430
431
|
unitName: string;
|
|
431
432
|
unitSlug: string;
|
|
@@ -434,7 +435,6 @@ declare const furnitureSavedSchema: z.ZodObject<{
|
|
|
434
435
|
roomName: string;
|
|
435
436
|
furnitureName: string;
|
|
436
437
|
brandName: string;
|
|
437
|
-
category: string;
|
|
438
438
|
}>;
|
|
439
439
|
declare const furnitureModalOpenedSchema: z.ZodObject<{
|
|
440
440
|
propertyId: z.ZodString;
|
|
@@ -454,11 +454,12 @@ declare const furnitureModalOpenedSchema: z.ZodObject<{
|
|
|
454
454
|
brandName: z.ZodString;
|
|
455
455
|
category: z.ZodString;
|
|
456
456
|
}, "strip", z.ZodTypeAny, {
|
|
457
|
+
furnitureId: string;
|
|
457
458
|
propertyId: string;
|
|
459
|
+
styleId: string;
|
|
460
|
+
category: string;
|
|
458
461
|
propertySlug: string;
|
|
459
|
-
furnitureId: string;
|
|
460
462
|
unitId: string;
|
|
461
|
-
styleId: string;
|
|
462
463
|
propertyName: string;
|
|
463
464
|
unitName: string;
|
|
464
465
|
unitSlug: string;
|
|
@@ -467,13 +468,13 @@ declare const furnitureModalOpenedSchema: z.ZodObject<{
|
|
|
467
468
|
roomName: string;
|
|
468
469
|
furnitureName: string;
|
|
469
470
|
brandName: string;
|
|
470
|
-
category: string;
|
|
471
471
|
}, {
|
|
472
|
+
furnitureId: string;
|
|
472
473
|
propertyId: string;
|
|
474
|
+
styleId: string;
|
|
475
|
+
category: string;
|
|
473
476
|
propertySlug: string;
|
|
474
|
-
furnitureId: string;
|
|
475
477
|
unitId: string;
|
|
476
|
-
styleId: string;
|
|
477
478
|
propertyName: string;
|
|
478
479
|
unitName: string;
|
|
479
480
|
unitSlug: string;
|
|
@@ -482,7 +483,6 @@ declare const furnitureModalOpenedSchema: z.ZodObject<{
|
|
|
482
483
|
roomName: string;
|
|
483
484
|
furnitureName: string;
|
|
484
485
|
brandName: string;
|
|
485
|
-
category: string;
|
|
486
486
|
}>;
|
|
487
487
|
declare const furnitureCarouselSchema: z.ZodObject<{
|
|
488
488
|
propertyId: z.ZodString;
|
|
@@ -503,11 +503,12 @@ declare const furnitureCarouselSchema: z.ZodObject<{
|
|
|
503
503
|
brandName: z.ZodString;
|
|
504
504
|
category: z.ZodString;
|
|
505
505
|
}, "strip", z.ZodTypeAny, {
|
|
506
|
+
furnitureId: string;
|
|
506
507
|
propertyId: string;
|
|
508
|
+
styleId: string;
|
|
509
|
+
category: string;
|
|
507
510
|
propertySlug: string;
|
|
508
|
-
furnitureId: string;
|
|
509
511
|
unitId: string;
|
|
510
|
-
styleId: string;
|
|
511
512
|
propertyName: string;
|
|
512
513
|
unitName: string;
|
|
513
514
|
unitSlug: string;
|
|
@@ -516,14 +517,14 @@ declare const furnitureCarouselSchema: z.ZodObject<{
|
|
|
516
517
|
roomName: string;
|
|
517
518
|
furnitureName: string;
|
|
518
519
|
brandName: string;
|
|
519
|
-
category: string;
|
|
520
520
|
method: "Prev" | "Next";
|
|
521
521
|
}, {
|
|
522
|
+
furnitureId: string;
|
|
522
523
|
propertyId: string;
|
|
524
|
+
styleId: string;
|
|
525
|
+
category: string;
|
|
523
526
|
propertySlug: string;
|
|
524
|
-
furnitureId: string;
|
|
525
527
|
unitId: string;
|
|
526
|
-
styleId: string;
|
|
527
528
|
propertyName: string;
|
|
528
529
|
unitName: string;
|
|
529
530
|
unitSlug: string;
|
|
@@ -532,7 +533,6 @@ declare const furnitureCarouselSchema: z.ZodObject<{
|
|
|
532
533
|
roomName: string;
|
|
533
534
|
furnitureName: string;
|
|
534
535
|
brandName: string;
|
|
535
|
-
category: string;
|
|
536
536
|
method: "Prev" | "Next";
|
|
537
537
|
}>;
|
|
538
538
|
declare const roomEnteredSchema: z.ZodObject<{
|
|
@@ -551,9 +551,9 @@ declare const roomEnteredSchema: z.ZodObject<{
|
|
|
551
551
|
method: z.ZodEnum<["Navigation", "Map"]>;
|
|
552
552
|
}, "strip", z.ZodTypeAny, {
|
|
553
553
|
propertyId: string;
|
|
554
|
+
styleId: string;
|
|
554
555
|
propertySlug: string;
|
|
555
556
|
unitId: string;
|
|
556
|
-
styleId: string;
|
|
557
557
|
propertyName: string;
|
|
558
558
|
unitName: string;
|
|
559
559
|
unitSlug: string;
|
|
@@ -563,9 +563,9 @@ declare const roomEnteredSchema: z.ZodObject<{
|
|
|
563
563
|
method: "Navigation" | "Map";
|
|
564
564
|
}, {
|
|
565
565
|
propertyId: string;
|
|
566
|
+
styleId: string;
|
|
566
567
|
propertySlug: string;
|
|
567
568
|
unitId: string;
|
|
568
|
-
styleId: string;
|
|
569
569
|
propertyName: string;
|
|
570
570
|
unitName: string;
|
|
571
571
|
unitSlug: string;
|
|
@@ -592,9 +592,9 @@ declare const roomLeftSchema: z.ZodObject<{
|
|
|
592
592
|
timeInRoom: z.ZodNumber;
|
|
593
593
|
}, "strip", z.ZodTypeAny, {
|
|
594
594
|
propertyId: string;
|
|
595
|
+
styleId: string;
|
|
595
596
|
propertySlug: string;
|
|
596
597
|
unitId: string;
|
|
597
|
-
styleId: string;
|
|
598
598
|
propertyName: string;
|
|
599
599
|
unitName: string;
|
|
600
600
|
unitSlug: string;
|
|
@@ -605,9 +605,9 @@ declare const roomLeftSchema: z.ZodObject<{
|
|
|
605
605
|
timeInRoom: number;
|
|
606
606
|
}, {
|
|
607
607
|
propertyId: string;
|
|
608
|
+
styleId: string;
|
|
608
609
|
propertySlug: string;
|
|
609
610
|
unitId: string;
|
|
610
|
-
styleId: string;
|
|
611
611
|
propertyName: string;
|
|
612
612
|
unitName: string;
|
|
613
613
|
unitSlug: string;
|
|
@@ -637,9 +637,9 @@ declare const videoStartedSchema: z.ZodObject<{
|
|
|
637
637
|
videoFilename: z.ZodString;
|
|
638
638
|
}, "strip", z.ZodTypeAny, {
|
|
639
639
|
propertyId: string;
|
|
640
|
+
styleId: string;
|
|
640
641
|
propertySlug: string;
|
|
641
642
|
unitId: string;
|
|
642
|
-
styleId: string;
|
|
643
643
|
propertyName: string;
|
|
644
644
|
unitName: string;
|
|
645
645
|
unitSlug: string;
|
|
@@ -653,9 +653,9 @@ declare const videoStartedSchema: z.ZodObject<{
|
|
|
653
653
|
videoFilename: string;
|
|
654
654
|
}, {
|
|
655
655
|
propertyId: string;
|
|
656
|
+
styleId: string;
|
|
656
657
|
propertySlug: string;
|
|
657
658
|
unitId: string;
|
|
658
|
-
styleId: string;
|
|
659
659
|
propertyName: string;
|
|
660
660
|
unitName: string;
|
|
661
661
|
unitSlug: string;
|
|
@@ -686,9 +686,9 @@ declare const emailTrackedSchema: z.ZodObject<{
|
|
|
686
686
|
favoritedUnit: z.ZodBoolean;
|
|
687
687
|
}, "strip", z.ZodTypeAny, {
|
|
688
688
|
propertyId: string;
|
|
689
|
+
styleId: string;
|
|
689
690
|
propertySlug: string;
|
|
690
691
|
unitId: string;
|
|
691
|
-
styleId: string;
|
|
692
692
|
propertyName: string;
|
|
693
693
|
unitName: string;
|
|
694
694
|
unitSlug: string;
|
|
@@ -700,9 +700,9 @@ declare const emailTrackedSchema: z.ZodObject<{
|
|
|
700
700
|
utmName: string;
|
|
701
701
|
}, {
|
|
702
702
|
propertyId: string;
|
|
703
|
+
styleId: string;
|
|
703
704
|
propertySlug: string;
|
|
704
705
|
unitId: string;
|
|
705
|
-
styleId: string;
|
|
706
706
|
propertyName: string;
|
|
707
707
|
unitName: string;
|
|
708
708
|
unitSlug: string;
|
|
@@ -822,9 +822,9 @@ declare const contentModalOpenedSchema: z.ZodObject<{
|
|
|
822
822
|
styleName: z.ZodString;
|
|
823
823
|
}, "strip", z.ZodTypeAny, {
|
|
824
824
|
propertyId: string;
|
|
825
|
+
styleId: string;
|
|
825
826
|
propertySlug: string;
|
|
826
827
|
unitId: string;
|
|
827
|
-
styleId: string;
|
|
828
828
|
propertyName: string;
|
|
829
829
|
unitName: string;
|
|
830
830
|
unitSlug: string;
|
|
@@ -832,9 +832,9 @@ declare const contentModalOpenedSchema: z.ZodObject<{
|
|
|
832
832
|
unitBedrooms: number;
|
|
833
833
|
}, {
|
|
834
834
|
propertyId: string;
|
|
835
|
+
styleId: string;
|
|
835
836
|
propertySlug: string;
|
|
836
837
|
unitId: string;
|
|
837
|
-
styleId: string;
|
|
838
838
|
propertyName: string;
|
|
839
839
|
unitName: string;
|
|
840
840
|
unitSlug: string;
|
|
@@ -969,8 +969,8 @@ declare const subscriptionSubmittedSchema: z.ZodObject<{
|
|
|
969
969
|
propertySlug: string;
|
|
970
970
|
propertyName: string;
|
|
971
971
|
};
|
|
972
|
-
bedrooms?: (string | number)[] | undefined;
|
|
973
972
|
price?: number | null | undefined;
|
|
973
|
+
bedrooms?: (string | number)[] | undefined;
|
|
974
974
|
}, {
|
|
975
975
|
buttonName: string;
|
|
976
976
|
formName: string;
|
|
@@ -980,8 +980,8 @@ declare const subscriptionSubmittedSchema: z.ZodObject<{
|
|
|
980
980
|
propertySlug: string;
|
|
981
981
|
propertyName: string;
|
|
982
982
|
};
|
|
983
|
-
bedrooms?: (string | number)[] | undefined;
|
|
984
983
|
price?: number | null | undefined;
|
|
984
|
+
bedrooms?: (string | number)[] | undefined;
|
|
985
985
|
}>;
|
|
986
986
|
}, "strip", z.ZodTypeAny, {
|
|
987
987
|
name: string;
|
|
@@ -994,8 +994,8 @@ declare const subscriptionSubmittedSchema: z.ZodObject<{
|
|
|
994
994
|
propertySlug: string;
|
|
995
995
|
propertyName: string;
|
|
996
996
|
};
|
|
997
|
-
bedrooms?: (string | number)[] | undefined;
|
|
998
997
|
price?: number | null | undefined;
|
|
998
|
+
bedrooms?: (string | number)[] | undefined;
|
|
999
999
|
};
|
|
1000
1000
|
}, {
|
|
1001
1001
|
name: string;
|
|
@@ -1008,8 +1008,8 @@ declare const subscriptionSubmittedSchema: z.ZodObject<{
|
|
|
1008
1008
|
propertySlug: string;
|
|
1009
1009
|
propertyName: string;
|
|
1010
1010
|
};
|
|
1011
|
-
bedrooms?: (string | number)[] | undefined;
|
|
1012
1011
|
price?: number | null | undefined;
|
|
1012
|
+
bedrooms?: (string | number)[] | undefined;
|
|
1013
1013
|
};
|
|
1014
1014
|
}>;
|
|
1015
1015
|
declare const subscriptionRemovedSchema: z.ZodObject<{
|
|
@@ -1495,9 +1495,9 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn, isDev?: bo
|
|
|
1495
1495
|
}) => void;
|
|
1496
1496
|
trackGetInTouchFormOpened: (payload: {
|
|
1497
1497
|
propertyId: string;
|
|
1498
|
+
styleId: string;
|
|
1498
1499
|
propertySlug: string;
|
|
1499
1500
|
unitId: string;
|
|
1500
|
-
styleId: string;
|
|
1501
1501
|
propertyName: string;
|
|
1502
1502
|
unitName: string;
|
|
1503
1503
|
unitSlug: string;
|
|
@@ -1509,9 +1509,9 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn, isDev?: bo
|
|
|
1509
1509
|
}) => void;
|
|
1510
1510
|
trackGetInTouchFormSubmitted: (payload: {
|
|
1511
1511
|
propertyId: string;
|
|
1512
|
+
styleId: string;
|
|
1512
1513
|
propertySlug: string;
|
|
1513
1514
|
unitId: string;
|
|
1514
|
-
styleId: string;
|
|
1515
1515
|
propertyName: string;
|
|
1516
1516
|
unitName: string;
|
|
1517
1517
|
unitSlug: string;
|
|
@@ -1523,9 +1523,9 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn, isDev?: bo
|
|
|
1523
1523
|
}) => void;
|
|
1524
1524
|
trackStyleDrawerOpened: (payload: {
|
|
1525
1525
|
propertyId: string;
|
|
1526
|
+
styleId: string;
|
|
1526
1527
|
propertySlug: string;
|
|
1527
1528
|
unitId: string;
|
|
1528
|
-
styleId: string;
|
|
1529
1529
|
propertyName: string;
|
|
1530
1530
|
unitName: string;
|
|
1531
1531
|
unitSlug: string;
|
|
@@ -1536,9 +1536,9 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn, isDev?: bo
|
|
|
1536
1536
|
}) => void;
|
|
1537
1537
|
trackStyleDrawerChanged: (payload: {
|
|
1538
1538
|
propertyId: string;
|
|
1539
|
+
styleId: string;
|
|
1539
1540
|
propertySlug: string;
|
|
1540
1541
|
unitId: string;
|
|
1541
|
-
styleId: string;
|
|
1542
1542
|
propertyName: string;
|
|
1543
1543
|
unitName: string;
|
|
1544
1544
|
unitSlug: string;
|
|
@@ -1549,9 +1549,9 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn, isDev?: bo
|
|
|
1549
1549
|
}) => void;
|
|
1550
1550
|
trackOpeningStyleImpression: (payload: {
|
|
1551
1551
|
propertyId: string;
|
|
1552
|
+
styleId: string;
|
|
1552
1553
|
propertySlug: string;
|
|
1553
1554
|
unitId: string;
|
|
1554
|
-
styleId: string;
|
|
1555
1555
|
propertyName: string;
|
|
1556
1556
|
unitName: string;
|
|
1557
1557
|
unitSlug: string;
|
|
@@ -1562,9 +1562,9 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn, isDev?: bo
|
|
|
1562
1562
|
}) => void;
|
|
1563
1563
|
trackOpeningStyleSlected: (payload: {
|
|
1564
1564
|
propertyId: string;
|
|
1565
|
+
styleId: string;
|
|
1565
1566
|
propertySlug: string;
|
|
1566
1567
|
unitId: string;
|
|
1567
|
-
styleId: string;
|
|
1568
1568
|
propertyName: string;
|
|
1569
1569
|
unitName: string;
|
|
1570
1570
|
unitSlug: string;
|
|
@@ -1575,11 +1575,12 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn, isDev?: bo
|
|
|
1575
1575
|
}) => void;
|
|
1576
1576
|
trackFurnitureViewed: (payload: {
|
|
1577
1577
|
type: "click" | "hover_on" | "hover_off";
|
|
1578
|
+
furnitureId: string;
|
|
1578
1579
|
propertyId: string;
|
|
1580
|
+
styleId: string;
|
|
1581
|
+
category: string;
|
|
1579
1582
|
propertySlug: string;
|
|
1580
|
-
furnitureId: string;
|
|
1581
1583
|
unitId: string;
|
|
1582
|
-
styleId: string;
|
|
1583
1584
|
propertyName: string;
|
|
1584
1585
|
unitName: string;
|
|
1585
1586
|
unitSlug: string;
|
|
@@ -1588,16 +1589,16 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn, isDev?: bo
|
|
|
1588
1589
|
roomName: string;
|
|
1589
1590
|
furnitureName: string;
|
|
1590
1591
|
brandName: string;
|
|
1591
|
-
category: string;
|
|
1592
1592
|
}) => void;
|
|
1593
1593
|
trackFurnitureExternalUrlClicked: (payload: {
|
|
1594
1594
|
type: string;
|
|
1595
|
+
furnitureId: string;
|
|
1595
1596
|
propertyId: string;
|
|
1597
|
+
styleId: string;
|
|
1598
|
+
category: string;
|
|
1596
1599
|
link: string;
|
|
1597
1600
|
propertySlug: string;
|
|
1598
|
-
furnitureId: string;
|
|
1599
1601
|
unitId: string;
|
|
1600
|
-
styleId: string;
|
|
1601
1602
|
propertyName: string;
|
|
1602
1603
|
unitName: string;
|
|
1603
1604
|
unitSlug: string;
|
|
@@ -1607,14 +1608,14 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn, isDev?: bo
|
|
|
1607
1608
|
roomName: string;
|
|
1608
1609
|
furnitureName: string;
|
|
1609
1610
|
brandName: string;
|
|
1610
|
-
category: string;
|
|
1611
1611
|
}) => void;
|
|
1612
1612
|
trackFurnitureSaved: (payload: {
|
|
1613
|
+
furnitureId: string;
|
|
1613
1614
|
propertyId: string;
|
|
1615
|
+
styleId: string;
|
|
1616
|
+
category: string;
|
|
1614
1617
|
propertySlug: string;
|
|
1615
|
-
furnitureId: string;
|
|
1616
1618
|
unitId: string;
|
|
1617
|
-
styleId: string;
|
|
1618
1619
|
propertyName: string;
|
|
1619
1620
|
unitName: string;
|
|
1620
1621
|
unitSlug: string;
|
|
@@ -1623,14 +1624,14 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn, isDev?: bo
|
|
|
1623
1624
|
roomName: string;
|
|
1624
1625
|
furnitureName: string;
|
|
1625
1626
|
brandName: string;
|
|
1626
|
-
category: string;
|
|
1627
1627
|
}) => void;
|
|
1628
1628
|
trackFurnitureModalOpened: (payload: {
|
|
1629
|
+
furnitureId: string;
|
|
1629
1630
|
propertyId: string;
|
|
1631
|
+
styleId: string;
|
|
1632
|
+
category: string;
|
|
1630
1633
|
propertySlug: string;
|
|
1631
|
-
furnitureId: string;
|
|
1632
1634
|
unitId: string;
|
|
1633
|
-
styleId: string;
|
|
1634
1635
|
propertyName: string;
|
|
1635
1636
|
unitName: string;
|
|
1636
1637
|
unitSlug: string;
|
|
@@ -1639,14 +1640,14 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn, isDev?: bo
|
|
|
1639
1640
|
roomName: string;
|
|
1640
1641
|
furnitureName: string;
|
|
1641
1642
|
brandName: string;
|
|
1642
|
-
category: string;
|
|
1643
1643
|
}) => void;
|
|
1644
1644
|
trackFurnitureCarouselToggled: (payload: {
|
|
1645
|
+
furnitureId: string;
|
|
1645
1646
|
propertyId: string;
|
|
1647
|
+
styleId: string;
|
|
1648
|
+
category: string;
|
|
1646
1649
|
propertySlug: string;
|
|
1647
|
-
furnitureId: string;
|
|
1648
1650
|
unitId: string;
|
|
1649
|
-
styleId: string;
|
|
1650
1651
|
propertyName: string;
|
|
1651
1652
|
unitName: string;
|
|
1652
1653
|
unitSlug: string;
|
|
@@ -1655,14 +1656,13 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn, isDev?: bo
|
|
|
1655
1656
|
roomName: string;
|
|
1656
1657
|
furnitureName: string;
|
|
1657
1658
|
brandName: string;
|
|
1658
|
-
category: string;
|
|
1659
1659
|
method: "Prev" | "Next";
|
|
1660
1660
|
}) => void;
|
|
1661
1661
|
trackRoomEntered: (payload: {
|
|
1662
1662
|
propertyId: string;
|
|
1663
|
+
styleId: string;
|
|
1663
1664
|
propertySlug: string;
|
|
1664
1665
|
unitId: string;
|
|
1665
|
-
styleId: string;
|
|
1666
1666
|
propertyName: string;
|
|
1667
1667
|
unitName: string;
|
|
1668
1668
|
unitSlug: string;
|
|
@@ -1673,9 +1673,9 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn, isDev?: bo
|
|
|
1673
1673
|
}) => void;
|
|
1674
1674
|
trackRoomLeft: (payload: {
|
|
1675
1675
|
propertyId: string;
|
|
1676
|
+
styleId: string;
|
|
1676
1677
|
propertySlug: string;
|
|
1677
1678
|
unitId: string;
|
|
1678
|
-
styleId: string;
|
|
1679
1679
|
propertyName: string;
|
|
1680
1680
|
unitName: string;
|
|
1681
1681
|
unitSlug: string;
|
|
@@ -1687,9 +1687,9 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn, isDev?: bo
|
|
|
1687
1687
|
}) => void;
|
|
1688
1688
|
trackVideoStarted: (payload: {
|
|
1689
1689
|
propertyId: string;
|
|
1690
|
+
styleId: string;
|
|
1690
1691
|
propertySlug: string;
|
|
1691
1692
|
unitId: string;
|
|
1692
|
-
styleId: string;
|
|
1693
1693
|
propertyName: string;
|
|
1694
1694
|
unitName: string;
|
|
1695
1695
|
unitSlug: string;
|
|
@@ -1704,9 +1704,9 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn, isDev?: bo
|
|
|
1704
1704
|
}) => void;
|
|
1705
1705
|
trackEmailRedirect: (payload: {
|
|
1706
1706
|
propertyId: string;
|
|
1707
|
+
styleId: string;
|
|
1707
1708
|
propertySlug: string;
|
|
1708
1709
|
unitId: string;
|
|
1709
|
-
styleId: string;
|
|
1710
1710
|
propertyName: string;
|
|
1711
1711
|
unitName: string;
|
|
1712
1712
|
unitSlug: string;
|
|
@@ -1746,9 +1746,9 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn, isDev?: bo
|
|
|
1746
1746
|
}) => void;
|
|
1747
1747
|
trackContentModalOpened: (payload: {
|
|
1748
1748
|
propertyId: string;
|
|
1749
|
+
styleId: string;
|
|
1749
1750
|
propertySlug: string;
|
|
1750
1751
|
unitId: string;
|
|
1751
|
-
styleId: string;
|
|
1752
1752
|
propertyName: string;
|
|
1753
1753
|
unitName: string;
|
|
1754
1754
|
unitSlug: string;
|
|
@@ -1791,8 +1791,8 @@ export declare function buildTrackingEvents(trackEvent: TrackEventFn, isDev?: bo
|
|
|
1791
1791
|
propertySlug: string;
|
|
1792
1792
|
propertyName: string;
|
|
1793
1793
|
};
|
|
1794
|
-
bedrooms?: (string | number)[] | undefined;
|
|
1795
1794
|
price?: number | null | undefined;
|
|
1795
|
+
bedrooms?: (string | number)[] | undefined;
|
|
1796
1796
|
};
|
|
1797
1797
|
}) => void;
|
|
1798
1798
|
trackSubscriptionRemoved: (payload: {
|
|
@@ -2034,9 +2034,9 @@ export declare function useTrackingEvents(): {
|
|
|
2034
2034
|
}) => void;
|
|
2035
2035
|
trackGetInTouchFormOpened: (payload: {
|
|
2036
2036
|
propertyId: string;
|
|
2037
|
+
styleId: string;
|
|
2037
2038
|
propertySlug: string;
|
|
2038
2039
|
unitId: string;
|
|
2039
|
-
styleId: string;
|
|
2040
2040
|
propertyName: string;
|
|
2041
2041
|
unitName: string;
|
|
2042
2042
|
unitSlug: string;
|
|
@@ -2048,9 +2048,9 @@ export declare function useTrackingEvents(): {
|
|
|
2048
2048
|
}) => void;
|
|
2049
2049
|
trackGetInTouchFormSubmitted: (payload: {
|
|
2050
2050
|
propertyId: string;
|
|
2051
|
+
styleId: string;
|
|
2051
2052
|
propertySlug: string;
|
|
2052
2053
|
unitId: string;
|
|
2053
|
-
styleId: string;
|
|
2054
2054
|
propertyName: string;
|
|
2055
2055
|
unitName: string;
|
|
2056
2056
|
unitSlug: string;
|
|
@@ -2062,9 +2062,9 @@ export declare function useTrackingEvents(): {
|
|
|
2062
2062
|
}) => void;
|
|
2063
2063
|
trackStyleDrawerOpened: (payload: {
|
|
2064
2064
|
propertyId: string;
|
|
2065
|
+
styleId: string;
|
|
2065
2066
|
propertySlug: string;
|
|
2066
2067
|
unitId: string;
|
|
2067
|
-
styleId: string;
|
|
2068
2068
|
propertyName: string;
|
|
2069
2069
|
unitName: string;
|
|
2070
2070
|
unitSlug: string;
|
|
@@ -2075,9 +2075,9 @@ export declare function useTrackingEvents(): {
|
|
|
2075
2075
|
}) => void;
|
|
2076
2076
|
trackStyleDrawerChanged: (payload: {
|
|
2077
2077
|
propertyId: string;
|
|
2078
|
+
styleId: string;
|
|
2078
2079
|
propertySlug: string;
|
|
2079
2080
|
unitId: string;
|
|
2080
|
-
styleId: string;
|
|
2081
2081
|
propertyName: string;
|
|
2082
2082
|
unitName: string;
|
|
2083
2083
|
unitSlug: string;
|
|
@@ -2088,9 +2088,9 @@ export declare function useTrackingEvents(): {
|
|
|
2088
2088
|
}) => void;
|
|
2089
2089
|
trackOpeningStyleImpression: (payload: {
|
|
2090
2090
|
propertyId: string;
|
|
2091
|
+
styleId: string;
|
|
2091
2092
|
propertySlug: string;
|
|
2092
2093
|
unitId: string;
|
|
2093
|
-
styleId: string;
|
|
2094
2094
|
propertyName: string;
|
|
2095
2095
|
unitName: string;
|
|
2096
2096
|
unitSlug: string;
|
|
@@ -2101,9 +2101,9 @@ export declare function useTrackingEvents(): {
|
|
|
2101
2101
|
}) => void;
|
|
2102
2102
|
trackOpeningStyleSlected: (payload: {
|
|
2103
2103
|
propertyId: string;
|
|
2104
|
+
styleId: string;
|
|
2104
2105
|
propertySlug: string;
|
|
2105
2106
|
unitId: string;
|
|
2106
|
-
styleId: string;
|
|
2107
2107
|
propertyName: string;
|
|
2108
2108
|
unitName: string;
|
|
2109
2109
|
unitSlug: string;
|
|
@@ -2114,11 +2114,12 @@ export declare function useTrackingEvents(): {
|
|
|
2114
2114
|
}) => void;
|
|
2115
2115
|
trackFurnitureViewed: (payload: {
|
|
2116
2116
|
type: "click" | "hover_on" | "hover_off";
|
|
2117
|
+
furnitureId: string;
|
|
2117
2118
|
propertyId: string;
|
|
2119
|
+
styleId: string;
|
|
2120
|
+
category: string;
|
|
2118
2121
|
propertySlug: string;
|
|
2119
|
-
furnitureId: string;
|
|
2120
2122
|
unitId: string;
|
|
2121
|
-
styleId: string;
|
|
2122
2123
|
propertyName: string;
|
|
2123
2124
|
unitName: string;
|
|
2124
2125
|
unitSlug: string;
|
|
@@ -2127,16 +2128,16 @@ export declare function useTrackingEvents(): {
|
|
|
2127
2128
|
roomName: string;
|
|
2128
2129
|
furnitureName: string;
|
|
2129
2130
|
brandName: string;
|
|
2130
|
-
category: string;
|
|
2131
2131
|
}) => void;
|
|
2132
2132
|
trackFurnitureExternalUrlClicked: (payload: {
|
|
2133
2133
|
type: string;
|
|
2134
|
+
furnitureId: string;
|
|
2134
2135
|
propertyId: string;
|
|
2136
|
+
styleId: string;
|
|
2137
|
+
category: string;
|
|
2135
2138
|
link: string;
|
|
2136
2139
|
propertySlug: string;
|
|
2137
|
-
furnitureId: string;
|
|
2138
2140
|
unitId: string;
|
|
2139
|
-
styleId: string;
|
|
2140
2141
|
propertyName: string;
|
|
2141
2142
|
unitName: string;
|
|
2142
2143
|
unitSlug: string;
|
|
@@ -2146,14 +2147,14 @@ export declare function useTrackingEvents(): {
|
|
|
2146
2147
|
roomName: string;
|
|
2147
2148
|
furnitureName: string;
|
|
2148
2149
|
brandName: string;
|
|
2149
|
-
category: string;
|
|
2150
2150
|
}) => void;
|
|
2151
2151
|
trackFurnitureSaved: (payload: {
|
|
2152
|
+
furnitureId: string;
|
|
2152
2153
|
propertyId: string;
|
|
2154
|
+
styleId: string;
|
|
2155
|
+
category: string;
|
|
2153
2156
|
propertySlug: string;
|
|
2154
|
-
furnitureId: string;
|
|
2155
2157
|
unitId: string;
|
|
2156
|
-
styleId: string;
|
|
2157
2158
|
propertyName: string;
|
|
2158
2159
|
unitName: string;
|
|
2159
2160
|
unitSlug: string;
|
|
@@ -2162,14 +2163,14 @@ export declare function useTrackingEvents(): {
|
|
|
2162
2163
|
roomName: string;
|
|
2163
2164
|
furnitureName: string;
|
|
2164
2165
|
brandName: string;
|
|
2165
|
-
category: string;
|
|
2166
2166
|
}) => void;
|
|
2167
2167
|
trackFurnitureModalOpened: (payload: {
|
|
2168
|
+
furnitureId: string;
|
|
2168
2169
|
propertyId: string;
|
|
2170
|
+
styleId: string;
|
|
2171
|
+
category: string;
|
|
2169
2172
|
propertySlug: string;
|
|
2170
|
-
furnitureId: string;
|
|
2171
2173
|
unitId: string;
|
|
2172
|
-
styleId: string;
|
|
2173
2174
|
propertyName: string;
|
|
2174
2175
|
unitName: string;
|
|
2175
2176
|
unitSlug: string;
|
|
@@ -2178,14 +2179,14 @@ export declare function useTrackingEvents(): {
|
|
|
2178
2179
|
roomName: string;
|
|
2179
2180
|
furnitureName: string;
|
|
2180
2181
|
brandName: string;
|
|
2181
|
-
category: string;
|
|
2182
2182
|
}) => void;
|
|
2183
2183
|
trackFurnitureCarouselToggled: (payload: {
|
|
2184
|
+
furnitureId: string;
|
|
2184
2185
|
propertyId: string;
|
|
2186
|
+
styleId: string;
|
|
2187
|
+
category: string;
|
|
2185
2188
|
propertySlug: string;
|
|
2186
|
-
furnitureId: string;
|
|
2187
2189
|
unitId: string;
|
|
2188
|
-
styleId: string;
|
|
2189
2190
|
propertyName: string;
|
|
2190
2191
|
unitName: string;
|
|
2191
2192
|
unitSlug: string;
|
|
@@ -2194,14 +2195,13 @@ export declare function useTrackingEvents(): {
|
|
|
2194
2195
|
roomName: string;
|
|
2195
2196
|
furnitureName: string;
|
|
2196
2197
|
brandName: string;
|
|
2197
|
-
category: string;
|
|
2198
2198
|
method: "Prev" | "Next";
|
|
2199
2199
|
}) => void;
|
|
2200
2200
|
trackRoomEntered: (payload: {
|
|
2201
2201
|
propertyId: string;
|
|
2202
|
+
styleId: string;
|
|
2202
2203
|
propertySlug: string;
|
|
2203
2204
|
unitId: string;
|
|
2204
|
-
styleId: string;
|
|
2205
2205
|
propertyName: string;
|
|
2206
2206
|
unitName: string;
|
|
2207
2207
|
unitSlug: string;
|
|
@@ -2212,9 +2212,9 @@ export declare function useTrackingEvents(): {
|
|
|
2212
2212
|
}) => void;
|
|
2213
2213
|
trackRoomLeft: (payload: {
|
|
2214
2214
|
propertyId: string;
|
|
2215
|
+
styleId: string;
|
|
2215
2216
|
propertySlug: string;
|
|
2216
2217
|
unitId: string;
|
|
2217
|
-
styleId: string;
|
|
2218
2218
|
propertyName: string;
|
|
2219
2219
|
unitName: string;
|
|
2220
2220
|
unitSlug: string;
|
|
@@ -2226,9 +2226,9 @@ export declare function useTrackingEvents(): {
|
|
|
2226
2226
|
}) => void;
|
|
2227
2227
|
trackVideoStarted: (payload: {
|
|
2228
2228
|
propertyId: string;
|
|
2229
|
+
styleId: string;
|
|
2229
2230
|
propertySlug: string;
|
|
2230
2231
|
unitId: string;
|
|
2231
|
-
styleId: string;
|
|
2232
2232
|
propertyName: string;
|
|
2233
2233
|
unitName: string;
|
|
2234
2234
|
unitSlug: string;
|
|
@@ -2243,9 +2243,9 @@ export declare function useTrackingEvents(): {
|
|
|
2243
2243
|
}) => void;
|
|
2244
2244
|
trackEmailRedirect: (payload: {
|
|
2245
2245
|
propertyId: string;
|
|
2246
|
+
styleId: string;
|
|
2246
2247
|
propertySlug: string;
|
|
2247
2248
|
unitId: string;
|
|
2248
|
-
styleId: string;
|
|
2249
2249
|
propertyName: string;
|
|
2250
2250
|
unitName: string;
|
|
2251
2251
|
unitSlug: string;
|
|
@@ -2285,9 +2285,9 @@ export declare function useTrackingEvents(): {
|
|
|
2285
2285
|
}) => void;
|
|
2286
2286
|
trackContentModalOpened: (payload: {
|
|
2287
2287
|
propertyId: string;
|
|
2288
|
+
styleId: string;
|
|
2288
2289
|
propertySlug: string;
|
|
2289
2290
|
unitId: string;
|
|
2290
|
-
styleId: string;
|
|
2291
2291
|
propertyName: string;
|
|
2292
2292
|
unitName: string;
|
|
2293
2293
|
unitSlug: string;
|
|
@@ -2330,8 +2330,8 @@ export declare function useTrackingEvents(): {
|
|
|
2330
2330
|
propertySlug: string;
|
|
2331
2331
|
propertyName: string;
|
|
2332
2332
|
};
|
|
2333
|
-
bedrooms?: (string | number)[] | undefined;
|
|
2334
2333
|
price?: number | null | undefined;
|
|
2334
|
+
bedrooms?: (string | number)[] | undefined;
|
|
2335
2335
|
};
|
|
2336
2336
|
}) => void;
|
|
2337
2337
|
trackSubscriptionRemoved: (payload: {
|