@syntrologie/adapt-faq 2.13.0 → 2.14.0

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/schema.d.ts CHANGED
@@ -225,17 +225,17 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
225
225
  maxHeight?: number | undefined;
226
226
  }>, z.ZodObject<{
227
227
  type: z.ZodLiteral<"session_metric">;
228
- key: z.ZodString;
228
+ key: z.ZodEnum<["time_on_page", "page_views", "scroll_depth"]>;
229
229
  operator: z.ZodEnum<["gte", "lte", "eq", "gt", "lt"]>;
230
230
  threshold: z.ZodNumber;
231
231
  }, "strip", z.ZodTypeAny, {
232
232
  type: "session_metric";
233
- key: string;
233
+ key: "time_on_page" | "page_views" | "scroll_depth";
234
234
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
235
235
  threshold: number;
236
236
  }, {
237
237
  type: "session_metric";
238
- key: string;
238
+ key: "time_on_page" | "page_views" | "scroll_depth";
239
239
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
240
240
  threshold: number;
241
241
  }>, z.ZodObject<{
@@ -284,7 +284,7 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
284
284
  count: z.ZodNumber;
285
285
  withinMs: z.ZodOptional<z.ZodNumber>;
286
286
  counter: z.ZodOptional<z.ZodObject<{
287
- events: z.ZodArray<z.ZodString, "many">;
287
+ events: z.ZodArray<z.ZodEnum<["ui.click", "ui.scroll", "ui.input", "ui.change", "ui.submit", "ui.hover", "ui.idle", "ui.scroll_thrash", "ui.focus_bounce", "nav.page_view", "nav.page_leave", "behavior.rage_click", "behavior.hesitation", "behavior.confusion"]>, "many">;
288
288
  match: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
289
289
  equals: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
290
290
  contains: z.ZodOptional<z.ZodString>;
@@ -296,13 +296,13 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
296
296
  contains?: string | undefined;
297
297
  }>>>;
298
298
  }, "strip", z.ZodTypeAny, {
299
- events: string[];
299
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
300
300
  match?: Record<string, {
301
301
  equals?: string | number | boolean | undefined;
302
302
  contains?: string | undefined;
303
303
  }> | undefined;
304
304
  }, {
305
- events: string[];
305
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
306
306
  match?: Record<string, {
307
307
  equals?: string | number | boolean | undefined;
308
308
  contains?: string | undefined;
@@ -315,7 +315,7 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
315
315
  count: number;
316
316
  withinMs?: number | undefined;
317
317
  counter?: {
318
- events: string[];
318
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
319
319
  match?: Record<string, {
320
320
  equals?: string | number | boolean | undefined;
321
321
  contains?: string | undefined;
@@ -328,7 +328,7 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
328
328
  count: number;
329
329
  withinMs?: number | undefined;
330
330
  counter?: {
331
- events: string[];
331
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
332
332
  match?: Record<string, {
333
333
  equals?: string | number | boolean | undefined;
334
334
  contains?: string | undefined;
@@ -363,7 +363,7 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
363
363
  maxHeight?: number | undefined;
364
364
  } | {
365
365
  type: "session_metric";
366
- key: string;
366
+ key: "time_on_page" | "page_views" | "scroll_depth";
367
367
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
368
368
  threshold: number;
369
369
  } | {
@@ -386,7 +386,7 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
386
386
  count: number;
387
387
  withinMs?: number | undefined;
388
388
  counter?: {
389
- events: string[];
389
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
390
390
  match?: Record<string, {
391
391
  equals?: string | number | boolean | undefined;
392
392
  contains?: string | undefined;
@@ -421,7 +421,7 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
421
421
  maxHeight?: number | undefined;
422
422
  } | {
423
423
  type: "session_metric";
424
- key: string;
424
+ key: "time_on_page" | "page_views" | "scroll_depth";
425
425
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
426
426
  threshold: number;
427
427
  } | {
@@ -444,7 +444,7 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
444
444
  count: number;
445
445
  withinMs?: number | undefined;
446
446
  counter?: {
447
- events: string[];
447
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
448
448
  match?: Record<string, {
449
449
  equals?: string | number | boolean | undefined;
450
450
  contains?: string | undefined;
@@ -483,7 +483,7 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
483
483
  maxHeight?: number | undefined;
484
484
  } | {
485
485
  type: "session_metric";
486
- key: string;
486
+ key: "time_on_page" | "page_views" | "scroll_depth";
487
487
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
488
488
  threshold: number;
489
489
  } | {
@@ -506,7 +506,7 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
506
506
  count: number;
507
507
  withinMs?: number | undefined;
508
508
  counter?: {
509
- events: string[];
509
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
510
510
  match?: Record<string, {
511
511
  equals?: string | number | boolean | undefined;
512
512
  contains?: string | undefined;
@@ -545,7 +545,7 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
545
545
  maxHeight?: number | undefined;
546
546
  } | {
547
547
  type: "session_metric";
548
- key: string;
548
+ key: "time_on_page" | "page_views" | "scroll_depth";
549
549
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
550
550
  threshold: number;
551
551
  } | {
@@ -568,7 +568,7 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
568
568
  count: number;
569
569
  withinMs?: number | undefined;
570
570
  counter?: {
571
- events: string[];
571
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
572
572
  match?: Record<string, {
573
573
  equals?: string | number | boolean | undefined;
574
574
  contains?: string | undefined;
@@ -705,7 +705,7 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
705
705
  maxHeight?: number | undefined;
706
706
  } | {
707
707
  type: "session_metric";
708
- key: string;
708
+ key: "time_on_page" | "page_views" | "scroll_depth";
709
709
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
710
710
  threshold: number;
711
711
  } | {
@@ -728,7 +728,7 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
728
728
  count: number;
729
729
  withinMs?: number | undefined;
730
730
  counter?: {
731
- events: string[];
731
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
732
732
  match?: Record<string, {
733
733
  equals?: string | number | boolean | undefined;
734
734
  contains?: string | undefined;
@@ -820,7 +820,7 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
820
820
  maxHeight?: number | undefined;
821
821
  } | {
822
822
  type: "session_metric";
823
- key: string;
823
+ key: "time_on_page" | "page_views" | "scroll_depth";
824
824
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
825
825
  threshold: number;
826
826
  } | {
@@ -843,7 +843,7 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
843
843
  count: number;
844
844
  withinMs?: number | undefined;
845
845
  counter?: {
846
- events: string[];
846
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
847
847
  match?: Record<string, {
848
848
  equals?: string | number | boolean | undefined;
849
849
  contains?: string | undefined;
@@ -935,7 +935,7 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
935
935
  maxHeight?: number | undefined;
936
936
  } | {
937
937
  type: "session_metric";
938
- key: string;
938
+ key: "time_on_page" | "page_views" | "scroll_depth";
939
939
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
940
940
  threshold: number;
941
941
  } | {
@@ -958,7 +958,7 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
958
958
  count: number;
959
959
  withinMs?: number | undefined;
960
960
  counter?: {
961
- events: string[];
961
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
962
962
  match?: Record<string, {
963
963
  equals?: string | number | boolean | undefined;
964
964
  contains?: string | undefined;
@@ -1050,7 +1050,7 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
1050
1050
  maxHeight?: number | undefined;
1051
1051
  } | {
1052
1052
  type: "session_metric";
1053
- key: string;
1053
+ key: "time_on_page" | "page_views" | "scroll_depth";
1054
1054
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
1055
1055
  threshold: number;
1056
1056
  } | {
@@ -1073,7 +1073,7 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
1073
1073
  count: number;
1074
1074
  withinMs?: number | undefined;
1075
1075
  counter?: {
1076
- events: string[];
1076
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
1077
1077
  match?: Record<string, {
1078
1078
  equals?: string | number | boolean | undefined;
1079
1079
  contains?: string | undefined;
@@ -1339,17 +1339,17 @@ export declare const configSchema: z.ZodObject<{
1339
1339
  maxHeight?: number | undefined;
1340
1340
  }>, z.ZodObject<{
1341
1341
  type: z.ZodLiteral<"session_metric">;
1342
- key: z.ZodString;
1342
+ key: z.ZodEnum<["time_on_page", "page_views", "scroll_depth"]>;
1343
1343
  operator: z.ZodEnum<["gte", "lte", "eq", "gt", "lt"]>;
1344
1344
  threshold: z.ZodNumber;
1345
1345
  }, "strip", z.ZodTypeAny, {
1346
1346
  type: "session_metric";
1347
- key: string;
1347
+ key: "time_on_page" | "page_views" | "scroll_depth";
1348
1348
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
1349
1349
  threshold: number;
1350
1350
  }, {
1351
1351
  type: "session_metric";
1352
- key: string;
1352
+ key: "time_on_page" | "page_views" | "scroll_depth";
1353
1353
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
1354
1354
  threshold: number;
1355
1355
  }>, z.ZodObject<{
@@ -1398,7 +1398,7 @@ export declare const configSchema: z.ZodObject<{
1398
1398
  count: z.ZodNumber;
1399
1399
  withinMs: z.ZodOptional<z.ZodNumber>;
1400
1400
  counter: z.ZodOptional<z.ZodObject<{
1401
- events: z.ZodArray<z.ZodString, "many">;
1401
+ events: z.ZodArray<z.ZodEnum<["ui.click", "ui.scroll", "ui.input", "ui.change", "ui.submit", "ui.hover", "ui.idle", "ui.scroll_thrash", "ui.focus_bounce", "nav.page_view", "nav.page_leave", "behavior.rage_click", "behavior.hesitation", "behavior.confusion"]>, "many">;
1402
1402
  match: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
1403
1403
  equals: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1404
1404
  contains: z.ZodOptional<z.ZodString>;
@@ -1410,13 +1410,13 @@ export declare const configSchema: z.ZodObject<{
1410
1410
  contains?: string | undefined;
1411
1411
  }>>>;
1412
1412
  }, "strip", z.ZodTypeAny, {
1413
- events: string[];
1413
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
1414
1414
  match?: Record<string, {
1415
1415
  equals?: string | number | boolean | undefined;
1416
1416
  contains?: string | undefined;
1417
1417
  }> | undefined;
1418
1418
  }, {
1419
- events: string[];
1419
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
1420
1420
  match?: Record<string, {
1421
1421
  equals?: string | number | boolean | undefined;
1422
1422
  contains?: string | undefined;
@@ -1429,7 +1429,7 @@ export declare const configSchema: z.ZodObject<{
1429
1429
  count: number;
1430
1430
  withinMs?: number | undefined;
1431
1431
  counter?: {
1432
- events: string[];
1432
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
1433
1433
  match?: Record<string, {
1434
1434
  equals?: string | number | boolean | undefined;
1435
1435
  contains?: string | undefined;
@@ -1442,7 +1442,7 @@ export declare const configSchema: z.ZodObject<{
1442
1442
  count: number;
1443
1443
  withinMs?: number | undefined;
1444
1444
  counter?: {
1445
- events: string[];
1445
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
1446
1446
  match?: Record<string, {
1447
1447
  equals?: string | number | boolean | undefined;
1448
1448
  contains?: string | undefined;
@@ -1477,7 +1477,7 @@ export declare const configSchema: z.ZodObject<{
1477
1477
  maxHeight?: number | undefined;
1478
1478
  } | {
1479
1479
  type: "session_metric";
1480
- key: string;
1480
+ key: "time_on_page" | "page_views" | "scroll_depth";
1481
1481
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
1482
1482
  threshold: number;
1483
1483
  } | {
@@ -1500,7 +1500,7 @@ export declare const configSchema: z.ZodObject<{
1500
1500
  count: number;
1501
1501
  withinMs?: number | undefined;
1502
1502
  counter?: {
1503
- events: string[];
1503
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
1504
1504
  match?: Record<string, {
1505
1505
  equals?: string | number | boolean | undefined;
1506
1506
  contains?: string | undefined;
@@ -1535,7 +1535,7 @@ export declare const configSchema: z.ZodObject<{
1535
1535
  maxHeight?: number | undefined;
1536
1536
  } | {
1537
1537
  type: "session_metric";
1538
- key: string;
1538
+ key: "time_on_page" | "page_views" | "scroll_depth";
1539
1539
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
1540
1540
  threshold: number;
1541
1541
  } | {
@@ -1558,7 +1558,7 @@ export declare const configSchema: z.ZodObject<{
1558
1558
  count: number;
1559
1559
  withinMs?: number | undefined;
1560
1560
  counter?: {
1561
- events: string[];
1561
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
1562
1562
  match?: Record<string, {
1563
1563
  equals?: string | number | boolean | undefined;
1564
1564
  contains?: string | undefined;
@@ -1597,7 +1597,7 @@ export declare const configSchema: z.ZodObject<{
1597
1597
  maxHeight?: number | undefined;
1598
1598
  } | {
1599
1599
  type: "session_metric";
1600
- key: string;
1600
+ key: "time_on_page" | "page_views" | "scroll_depth";
1601
1601
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
1602
1602
  threshold: number;
1603
1603
  } | {
@@ -1620,7 +1620,7 @@ export declare const configSchema: z.ZodObject<{
1620
1620
  count: number;
1621
1621
  withinMs?: number | undefined;
1622
1622
  counter?: {
1623
- events: string[];
1623
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
1624
1624
  match?: Record<string, {
1625
1625
  equals?: string | number | boolean | undefined;
1626
1626
  contains?: string | undefined;
@@ -1659,7 +1659,7 @@ export declare const configSchema: z.ZodObject<{
1659
1659
  maxHeight?: number | undefined;
1660
1660
  } | {
1661
1661
  type: "session_metric";
1662
- key: string;
1662
+ key: "time_on_page" | "page_views" | "scroll_depth";
1663
1663
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
1664
1664
  threshold: number;
1665
1665
  } | {
@@ -1682,7 +1682,7 @@ export declare const configSchema: z.ZodObject<{
1682
1682
  count: number;
1683
1683
  withinMs?: number | undefined;
1684
1684
  counter?: {
1685
- events: string[];
1685
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
1686
1686
  match?: Record<string, {
1687
1687
  equals?: string | number | boolean | undefined;
1688
1688
  contains?: string | undefined;
@@ -1819,7 +1819,7 @@ export declare const configSchema: z.ZodObject<{
1819
1819
  maxHeight?: number | undefined;
1820
1820
  } | {
1821
1821
  type: "session_metric";
1822
- key: string;
1822
+ key: "time_on_page" | "page_views" | "scroll_depth";
1823
1823
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
1824
1824
  threshold: number;
1825
1825
  } | {
@@ -1842,7 +1842,7 @@ export declare const configSchema: z.ZodObject<{
1842
1842
  count: number;
1843
1843
  withinMs?: number | undefined;
1844
1844
  counter?: {
1845
- events: string[];
1845
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
1846
1846
  match?: Record<string, {
1847
1847
  equals?: string | number | boolean | undefined;
1848
1848
  contains?: string | undefined;
@@ -1934,7 +1934,7 @@ export declare const configSchema: z.ZodObject<{
1934
1934
  maxHeight?: number | undefined;
1935
1935
  } | {
1936
1936
  type: "session_metric";
1937
- key: string;
1937
+ key: "time_on_page" | "page_views" | "scroll_depth";
1938
1938
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
1939
1939
  threshold: number;
1940
1940
  } | {
@@ -1957,7 +1957,7 @@ export declare const configSchema: z.ZodObject<{
1957
1957
  count: number;
1958
1958
  withinMs?: number | undefined;
1959
1959
  counter?: {
1960
- events: string[];
1960
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
1961
1961
  match?: Record<string, {
1962
1962
  equals?: string | number | boolean | undefined;
1963
1963
  contains?: string | undefined;
@@ -2049,7 +2049,7 @@ export declare const configSchema: z.ZodObject<{
2049
2049
  maxHeight?: number | undefined;
2050
2050
  } | {
2051
2051
  type: "session_metric";
2052
- key: string;
2052
+ key: "time_on_page" | "page_views" | "scroll_depth";
2053
2053
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
2054
2054
  threshold: number;
2055
2055
  } | {
@@ -2072,7 +2072,7 @@ export declare const configSchema: z.ZodObject<{
2072
2072
  count: number;
2073
2073
  withinMs?: number | undefined;
2074
2074
  counter?: {
2075
- events: string[];
2075
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
2076
2076
  match?: Record<string, {
2077
2077
  equals?: string | number | boolean | undefined;
2078
2078
  contains?: string | undefined;
@@ -2164,7 +2164,7 @@ export declare const configSchema: z.ZodObject<{
2164
2164
  maxHeight?: number | undefined;
2165
2165
  } | {
2166
2166
  type: "session_metric";
2167
- key: string;
2167
+ key: "time_on_page" | "page_views" | "scroll_depth";
2168
2168
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
2169
2169
  threshold: number;
2170
2170
  } | {
@@ -2187,7 +2187,7 @@ export declare const configSchema: z.ZodObject<{
2187
2187
  count: number;
2188
2188
  withinMs?: number | undefined;
2189
2189
  counter?: {
2190
- events: string[];
2190
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
2191
2191
  match?: Record<string, {
2192
2192
  equals?: string | number | boolean | undefined;
2193
2193
  contains?: string | undefined;
@@ -2323,17 +2323,17 @@ export declare const configSchema: z.ZodObject<{
2323
2323
  maxHeight?: number | undefined;
2324
2324
  }>, z.ZodObject<{
2325
2325
  type: z.ZodLiteral<"session_metric">;
2326
- key: z.ZodString;
2326
+ key: z.ZodEnum<["time_on_page", "page_views", "scroll_depth"]>;
2327
2327
  operator: z.ZodEnum<["gte", "lte", "eq", "gt", "lt"]>;
2328
2328
  threshold: z.ZodNumber;
2329
2329
  }, "strip", z.ZodTypeAny, {
2330
2330
  type: "session_metric";
2331
- key: string;
2331
+ key: "time_on_page" | "page_views" | "scroll_depth";
2332
2332
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
2333
2333
  threshold: number;
2334
2334
  }, {
2335
2335
  type: "session_metric";
2336
- key: string;
2336
+ key: "time_on_page" | "page_views" | "scroll_depth";
2337
2337
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
2338
2338
  threshold: number;
2339
2339
  }>, z.ZodObject<{
@@ -2382,7 +2382,7 @@ export declare const configSchema: z.ZodObject<{
2382
2382
  count: z.ZodNumber;
2383
2383
  withinMs: z.ZodOptional<z.ZodNumber>;
2384
2384
  counter: z.ZodOptional<z.ZodObject<{
2385
- events: z.ZodArray<z.ZodString, "many">;
2385
+ events: z.ZodArray<z.ZodEnum<["ui.click", "ui.scroll", "ui.input", "ui.change", "ui.submit", "ui.hover", "ui.idle", "ui.scroll_thrash", "ui.focus_bounce", "nav.page_view", "nav.page_leave", "behavior.rage_click", "behavior.hesitation", "behavior.confusion"]>, "many">;
2386
2386
  match: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
2387
2387
  equals: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
2388
2388
  contains: z.ZodOptional<z.ZodString>;
@@ -2394,13 +2394,13 @@ export declare const configSchema: z.ZodObject<{
2394
2394
  contains?: string | undefined;
2395
2395
  }>>>;
2396
2396
  }, "strip", z.ZodTypeAny, {
2397
- events: string[];
2397
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
2398
2398
  match?: Record<string, {
2399
2399
  equals?: string | number | boolean | undefined;
2400
2400
  contains?: string | undefined;
2401
2401
  }> | undefined;
2402
2402
  }, {
2403
- events: string[];
2403
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
2404
2404
  match?: Record<string, {
2405
2405
  equals?: string | number | boolean | undefined;
2406
2406
  contains?: string | undefined;
@@ -2413,7 +2413,7 @@ export declare const configSchema: z.ZodObject<{
2413
2413
  count: number;
2414
2414
  withinMs?: number | undefined;
2415
2415
  counter?: {
2416
- events: string[];
2416
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
2417
2417
  match?: Record<string, {
2418
2418
  equals?: string | number | boolean | undefined;
2419
2419
  contains?: string | undefined;
@@ -2426,7 +2426,7 @@ export declare const configSchema: z.ZodObject<{
2426
2426
  count: number;
2427
2427
  withinMs?: number | undefined;
2428
2428
  counter?: {
2429
- events: string[];
2429
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
2430
2430
  match?: Record<string, {
2431
2431
  equals?: string | number | boolean | undefined;
2432
2432
  contains?: string | undefined;
@@ -2461,7 +2461,7 @@ export declare const configSchema: z.ZodObject<{
2461
2461
  maxHeight?: number | undefined;
2462
2462
  } | {
2463
2463
  type: "session_metric";
2464
- key: string;
2464
+ key: "time_on_page" | "page_views" | "scroll_depth";
2465
2465
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
2466
2466
  threshold: number;
2467
2467
  } | {
@@ -2484,7 +2484,7 @@ export declare const configSchema: z.ZodObject<{
2484
2484
  count: number;
2485
2485
  withinMs?: number | undefined;
2486
2486
  counter?: {
2487
- events: string[];
2487
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
2488
2488
  match?: Record<string, {
2489
2489
  equals?: string | number | boolean | undefined;
2490
2490
  contains?: string | undefined;
@@ -2519,7 +2519,7 @@ export declare const configSchema: z.ZodObject<{
2519
2519
  maxHeight?: number | undefined;
2520
2520
  } | {
2521
2521
  type: "session_metric";
2522
- key: string;
2522
+ key: "time_on_page" | "page_views" | "scroll_depth";
2523
2523
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
2524
2524
  threshold: number;
2525
2525
  } | {
@@ -2542,7 +2542,7 @@ export declare const configSchema: z.ZodObject<{
2542
2542
  count: number;
2543
2543
  withinMs?: number | undefined;
2544
2544
  counter?: {
2545
- events: string[];
2545
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
2546
2546
  match?: Record<string, {
2547
2547
  equals?: string | number | boolean | undefined;
2548
2548
  contains?: string | undefined;
@@ -2581,7 +2581,7 @@ export declare const configSchema: z.ZodObject<{
2581
2581
  maxHeight?: number | undefined;
2582
2582
  } | {
2583
2583
  type: "session_metric";
2584
- key: string;
2584
+ key: "time_on_page" | "page_views" | "scroll_depth";
2585
2585
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
2586
2586
  threshold: number;
2587
2587
  } | {
@@ -2604,7 +2604,7 @@ export declare const configSchema: z.ZodObject<{
2604
2604
  count: number;
2605
2605
  withinMs?: number | undefined;
2606
2606
  counter?: {
2607
- events: string[];
2607
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
2608
2608
  match?: Record<string, {
2609
2609
  equals?: string | number | boolean | undefined;
2610
2610
  contains?: string | undefined;
@@ -2643,7 +2643,7 @@ export declare const configSchema: z.ZodObject<{
2643
2643
  maxHeight?: number | undefined;
2644
2644
  } | {
2645
2645
  type: "session_metric";
2646
- key: string;
2646
+ key: "time_on_page" | "page_views" | "scroll_depth";
2647
2647
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
2648
2648
  threshold: number;
2649
2649
  } | {
@@ -2666,7 +2666,7 @@ export declare const configSchema: z.ZodObject<{
2666
2666
  count: number;
2667
2667
  withinMs?: number | undefined;
2668
2668
  counter?: {
2669
- events: string[];
2669
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
2670
2670
  match?: Record<string, {
2671
2671
  equals?: string | number | boolean | undefined;
2672
2672
  contains?: string | undefined;
@@ -2948,17 +2948,17 @@ export declare const configSchema: z.ZodObject<{
2948
2948
  maxHeight?: number | undefined;
2949
2949
  }>, z.ZodObject<{
2950
2950
  type: z.ZodLiteral<"session_metric">;
2951
- key: z.ZodString;
2951
+ key: z.ZodEnum<["time_on_page", "page_views", "scroll_depth"]>;
2952
2952
  operator: z.ZodEnum<["gte", "lte", "eq", "gt", "lt"]>;
2953
2953
  threshold: z.ZodNumber;
2954
2954
  }, "strip", z.ZodTypeAny, {
2955
2955
  type: "session_metric";
2956
- key: string;
2956
+ key: "time_on_page" | "page_views" | "scroll_depth";
2957
2957
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
2958
2958
  threshold: number;
2959
2959
  }, {
2960
2960
  type: "session_metric";
2961
- key: string;
2961
+ key: "time_on_page" | "page_views" | "scroll_depth";
2962
2962
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
2963
2963
  threshold: number;
2964
2964
  }>, z.ZodObject<{
@@ -3007,7 +3007,7 @@ export declare const configSchema: z.ZodObject<{
3007
3007
  count: z.ZodNumber;
3008
3008
  withinMs: z.ZodOptional<z.ZodNumber>;
3009
3009
  counter: z.ZodOptional<z.ZodObject<{
3010
- events: z.ZodArray<z.ZodString, "many">;
3010
+ events: z.ZodArray<z.ZodEnum<["ui.click", "ui.scroll", "ui.input", "ui.change", "ui.submit", "ui.hover", "ui.idle", "ui.scroll_thrash", "ui.focus_bounce", "nav.page_view", "nav.page_leave", "behavior.rage_click", "behavior.hesitation", "behavior.confusion"]>, "many">;
3011
3011
  match: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
3012
3012
  equals: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
3013
3013
  contains: z.ZodOptional<z.ZodString>;
@@ -3019,13 +3019,13 @@ export declare const configSchema: z.ZodObject<{
3019
3019
  contains?: string | undefined;
3020
3020
  }>>>;
3021
3021
  }, "strip", z.ZodTypeAny, {
3022
- events: string[];
3022
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
3023
3023
  match?: Record<string, {
3024
3024
  equals?: string | number | boolean | undefined;
3025
3025
  contains?: string | undefined;
3026
3026
  }> | undefined;
3027
3027
  }, {
3028
- events: string[];
3028
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
3029
3029
  match?: Record<string, {
3030
3030
  equals?: string | number | boolean | undefined;
3031
3031
  contains?: string | undefined;
@@ -3038,7 +3038,7 @@ export declare const configSchema: z.ZodObject<{
3038
3038
  count: number;
3039
3039
  withinMs?: number | undefined;
3040
3040
  counter?: {
3041
- events: string[];
3041
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
3042
3042
  match?: Record<string, {
3043
3043
  equals?: string | number | boolean | undefined;
3044
3044
  contains?: string | undefined;
@@ -3051,7 +3051,7 @@ export declare const configSchema: z.ZodObject<{
3051
3051
  count: number;
3052
3052
  withinMs?: number | undefined;
3053
3053
  counter?: {
3054
- events: string[];
3054
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
3055
3055
  match?: Record<string, {
3056
3056
  equals?: string | number | boolean | undefined;
3057
3057
  contains?: string | undefined;
@@ -3086,7 +3086,7 @@ export declare const configSchema: z.ZodObject<{
3086
3086
  maxHeight?: number | undefined;
3087
3087
  } | {
3088
3088
  type: "session_metric";
3089
- key: string;
3089
+ key: "time_on_page" | "page_views" | "scroll_depth";
3090
3090
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
3091
3091
  threshold: number;
3092
3092
  } | {
@@ -3109,7 +3109,7 @@ export declare const configSchema: z.ZodObject<{
3109
3109
  count: number;
3110
3110
  withinMs?: number | undefined;
3111
3111
  counter?: {
3112
- events: string[];
3112
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
3113
3113
  match?: Record<string, {
3114
3114
  equals?: string | number | boolean | undefined;
3115
3115
  contains?: string | undefined;
@@ -3144,7 +3144,7 @@ export declare const configSchema: z.ZodObject<{
3144
3144
  maxHeight?: number | undefined;
3145
3145
  } | {
3146
3146
  type: "session_metric";
3147
- key: string;
3147
+ key: "time_on_page" | "page_views" | "scroll_depth";
3148
3148
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
3149
3149
  threshold: number;
3150
3150
  } | {
@@ -3167,7 +3167,7 @@ export declare const configSchema: z.ZodObject<{
3167
3167
  count: number;
3168
3168
  withinMs?: number | undefined;
3169
3169
  counter?: {
3170
- events: string[];
3170
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
3171
3171
  match?: Record<string, {
3172
3172
  equals?: string | number | boolean | undefined;
3173
3173
  contains?: string | undefined;
@@ -3206,7 +3206,7 @@ export declare const configSchema: z.ZodObject<{
3206
3206
  maxHeight?: number | undefined;
3207
3207
  } | {
3208
3208
  type: "session_metric";
3209
- key: string;
3209
+ key: "time_on_page" | "page_views" | "scroll_depth";
3210
3210
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
3211
3211
  threshold: number;
3212
3212
  } | {
@@ -3229,7 +3229,7 @@ export declare const configSchema: z.ZodObject<{
3229
3229
  count: number;
3230
3230
  withinMs?: number | undefined;
3231
3231
  counter?: {
3232
- events: string[];
3232
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
3233
3233
  match?: Record<string, {
3234
3234
  equals?: string | number | boolean | undefined;
3235
3235
  contains?: string | undefined;
@@ -3268,7 +3268,7 @@ export declare const configSchema: z.ZodObject<{
3268
3268
  maxHeight?: number | undefined;
3269
3269
  } | {
3270
3270
  type: "session_metric";
3271
- key: string;
3271
+ key: "time_on_page" | "page_views" | "scroll_depth";
3272
3272
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
3273
3273
  threshold: number;
3274
3274
  } | {
@@ -3291,7 +3291,7 @@ export declare const configSchema: z.ZodObject<{
3291
3291
  count: number;
3292
3292
  withinMs?: number | undefined;
3293
3293
  counter?: {
3294
- events: string[];
3294
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
3295
3295
  match?: Record<string, {
3296
3296
  equals?: string | number | boolean | undefined;
3297
3297
  contains?: string | undefined;
@@ -3428,7 +3428,7 @@ export declare const configSchema: z.ZodObject<{
3428
3428
  maxHeight?: number | undefined;
3429
3429
  } | {
3430
3430
  type: "session_metric";
3431
- key: string;
3431
+ key: "time_on_page" | "page_views" | "scroll_depth";
3432
3432
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
3433
3433
  threshold: number;
3434
3434
  } | {
@@ -3451,7 +3451,7 @@ export declare const configSchema: z.ZodObject<{
3451
3451
  count: number;
3452
3452
  withinMs?: number | undefined;
3453
3453
  counter?: {
3454
- events: string[];
3454
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
3455
3455
  match?: Record<string, {
3456
3456
  equals?: string | number | boolean | undefined;
3457
3457
  contains?: string | undefined;
@@ -3543,7 +3543,7 @@ export declare const configSchema: z.ZodObject<{
3543
3543
  maxHeight?: number | undefined;
3544
3544
  } | {
3545
3545
  type: "session_metric";
3546
- key: string;
3546
+ key: "time_on_page" | "page_views" | "scroll_depth";
3547
3547
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
3548
3548
  threshold: number;
3549
3549
  } | {
@@ -3566,7 +3566,7 @@ export declare const configSchema: z.ZodObject<{
3566
3566
  count: number;
3567
3567
  withinMs?: number | undefined;
3568
3568
  counter?: {
3569
- events: string[];
3569
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
3570
3570
  match?: Record<string, {
3571
3571
  equals?: string | number | boolean | undefined;
3572
3572
  contains?: string | undefined;
@@ -3658,7 +3658,7 @@ export declare const configSchema: z.ZodObject<{
3658
3658
  maxHeight?: number | undefined;
3659
3659
  } | {
3660
3660
  type: "session_metric";
3661
- key: string;
3661
+ key: "time_on_page" | "page_views" | "scroll_depth";
3662
3662
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
3663
3663
  threshold: number;
3664
3664
  } | {
@@ -3681,7 +3681,7 @@ export declare const configSchema: z.ZodObject<{
3681
3681
  count: number;
3682
3682
  withinMs?: number | undefined;
3683
3683
  counter?: {
3684
- events: string[];
3684
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
3685
3685
  match?: Record<string, {
3686
3686
  equals?: string | number | boolean | undefined;
3687
3687
  contains?: string | undefined;
@@ -3773,7 +3773,7 @@ export declare const configSchema: z.ZodObject<{
3773
3773
  maxHeight?: number | undefined;
3774
3774
  } | {
3775
3775
  type: "session_metric";
3776
- key: string;
3776
+ key: "time_on_page" | "page_views" | "scroll_depth";
3777
3777
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
3778
3778
  threshold: number;
3779
3779
  } | {
@@ -3796,7 +3796,7 @@ export declare const configSchema: z.ZodObject<{
3796
3796
  count: number;
3797
3797
  withinMs?: number | undefined;
3798
3798
  counter?: {
3799
- events: string[];
3799
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
3800
3800
  match?: Record<string, {
3801
3801
  equals?: string | number | boolean | undefined;
3802
3802
  contains?: string | undefined;
@@ -3892,7 +3892,7 @@ export declare const configSchema: z.ZodObject<{
3892
3892
  maxHeight?: number | undefined;
3893
3893
  } | {
3894
3894
  type: "session_metric";
3895
- key: string;
3895
+ key: "time_on_page" | "page_views" | "scroll_depth";
3896
3896
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
3897
3897
  threshold: number;
3898
3898
  } | {
@@ -3915,7 +3915,7 @@ export declare const configSchema: z.ZodObject<{
3915
3915
  count: number;
3916
3916
  withinMs?: number | undefined;
3917
3917
  counter?: {
3918
- events: string[];
3918
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
3919
3919
  match?: Record<string, {
3920
3920
  equals?: string | number | boolean | undefined;
3921
3921
  contains?: string | undefined;
@@ -3979,7 +3979,7 @@ export declare const configSchema: z.ZodObject<{
3979
3979
  maxHeight?: number | undefined;
3980
3980
  } | {
3981
3981
  type: "session_metric";
3982
- key: string;
3982
+ key: "time_on_page" | "page_views" | "scroll_depth";
3983
3983
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
3984
3984
  threshold: number;
3985
3985
  } | {
@@ -4002,7 +4002,7 @@ export declare const configSchema: z.ZodObject<{
4002
4002
  count: number;
4003
4003
  withinMs?: number | undefined;
4004
4004
  counter?: {
4005
- events: string[];
4005
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
4006
4006
  match?: Record<string, {
4007
4007
  equals?: string | number | boolean | undefined;
4008
4008
  contains?: string | undefined;
@@ -4092,7 +4092,7 @@ export declare const configSchema: z.ZodObject<{
4092
4092
  maxHeight?: number | undefined;
4093
4093
  } | {
4094
4094
  type: "session_metric";
4095
- key: string;
4095
+ key: "time_on_page" | "page_views" | "scroll_depth";
4096
4096
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
4097
4097
  threshold: number;
4098
4098
  } | {
@@ -4115,7 +4115,7 @@ export declare const configSchema: z.ZodObject<{
4115
4115
  count: number;
4116
4116
  withinMs?: number | undefined;
4117
4117
  counter?: {
4118
- events: string[];
4118
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
4119
4119
  match?: Record<string, {
4120
4120
  equals?: string | number | boolean | undefined;
4121
4121
  contains?: string | undefined;
@@ -4179,7 +4179,7 @@ export declare const configSchema: z.ZodObject<{
4179
4179
  maxHeight?: number | undefined;
4180
4180
  } | {
4181
4181
  type: "session_metric";
4182
- key: string;
4182
+ key: "time_on_page" | "page_views" | "scroll_depth";
4183
4183
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
4184
4184
  threshold: number;
4185
4185
  } | {
@@ -4202,7 +4202,7 @@ export declare const configSchema: z.ZodObject<{
4202
4202
  count: number;
4203
4203
  withinMs?: number | undefined;
4204
4204
  counter?: {
4205
- events: string[];
4205
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
4206
4206
  match?: Record<string, {
4207
4207
  equals?: string | number | boolean | undefined;
4208
4208
  contains?: string | undefined;
@@ -4296,7 +4296,7 @@ export declare const configSchema: z.ZodObject<{
4296
4296
  maxHeight?: number | undefined;
4297
4297
  } | {
4298
4298
  type: "session_metric";
4299
- key: string;
4299
+ key: "time_on_page" | "page_views" | "scroll_depth";
4300
4300
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
4301
4301
  threshold: number;
4302
4302
  } | {
@@ -4319,7 +4319,7 @@ export declare const configSchema: z.ZodObject<{
4319
4319
  count: number;
4320
4320
  withinMs?: number | undefined;
4321
4321
  counter?: {
4322
- events: string[];
4322
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
4323
4323
  match?: Record<string, {
4324
4324
  equals?: string | number | boolean | undefined;
4325
4325
  contains?: string | undefined;
@@ -4421,7 +4421,7 @@ export declare const configSchema: z.ZodObject<{
4421
4421
  maxHeight?: number | undefined;
4422
4422
  } | {
4423
4423
  type: "session_metric";
4424
- key: string;
4424
+ key: "time_on_page" | "page_views" | "scroll_depth";
4425
4425
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
4426
4426
  threshold: number;
4427
4427
  } | {
@@ -4444,7 +4444,7 @@ export declare const configSchema: z.ZodObject<{
4444
4444
  count: number;
4445
4445
  withinMs?: number | undefined;
4446
4446
  counter?: {
4447
- events: string[];
4447
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
4448
4448
  match?: Record<string, {
4449
4449
  equals?: string | number | boolean | undefined;
4450
4450
  contains?: string | undefined;
@@ -4508,7 +4508,7 @@ export declare const configSchema: z.ZodObject<{
4508
4508
  maxHeight?: number | undefined;
4509
4509
  } | {
4510
4510
  type: "session_metric";
4511
- key: string;
4511
+ key: "time_on_page" | "page_views" | "scroll_depth";
4512
4512
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
4513
4513
  threshold: number;
4514
4514
  } | {
@@ -4531,7 +4531,7 @@ export declare const configSchema: z.ZodObject<{
4531
4531
  count: number;
4532
4532
  withinMs?: number | undefined;
4533
4533
  counter?: {
4534
- events: string[];
4534
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
4535
4535
  match?: Record<string, {
4536
4536
  equals?: string | number | boolean | undefined;
4537
4537
  contains?: string | undefined;
@@ -4626,7 +4626,7 @@ export declare const configSchema: z.ZodObject<{
4626
4626
  maxHeight?: number | undefined;
4627
4627
  } | {
4628
4628
  type: "session_metric";
4629
- key: string;
4629
+ key: "time_on_page" | "page_views" | "scroll_depth";
4630
4630
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
4631
4631
  threshold: number;
4632
4632
  } | {
@@ -4649,7 +4649,7 @@ export declare const configSchema: z.ZodObject<{
4649
4649
  count: number;
4650
4650
  withinMs?: number | undefined;
4651
4651
  counter?: {
4652
- events: string[];
4652
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
4653
4653
  match?: Record<string, {
4654
4654
  equals?: string | number | boolean | undefined;
4655
4655
  contains?: string | undefined;
@@ -4751,7 +4751,7 @@ export declare const configSchema: z.ZodObject<{
4751
4751
  maxHeight?: number | undefined;
4752
4752
  } | {
4753
4753
  type: "session_metric";
4754
- key: string;
4754
+ key: "time_on_page" | "page_views" | "scroll_depth";
4755
4755
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
4756
4756
  threshold: number;
4757
4757
  } | {
@@ -4774,7 +4774,7 @@ export declare const configSchema: z.ZodObject<{
4774
4774
  count: number;
4775
4775
  withinMs?: number | undefined;
4776
4776
  counter?: {
4777
- events: string[];
4777
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
4778
4778
  match?: Record<string, {
4779
4779
  equals?: string | number | boolean | undefined;
4780
4780
  contains?: string | undefined;
@@ -4838,7 +4838,7 @@ export declare const configSchema: z.ZodObject<{
4838
4838
  maxHeight?: number | undefined;
4839
4839
  } | {
4840
4840
  type: "session_metric";
4841
- key: string;
4841
+ key: "time_on_page" | "page_views" | "scroll_depth";
4842
4842
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
4843
4843
  threshold: number;
4844
4844
  } | {
@@ -4861,7 +4861,7 @@ export declare const configSchema: z.ZodObject<{
4861
4861
  count: number;
4862
4862
  withinMs?: number | undefined;
4863
4863
  counter?: {
4864
- events: string[];
4864
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
4865
4865
  match?: Record<string, {
4866
4866
  equals?: string | number | boolean | undefined;
4867
4867
  contains?: string | undefined;
@@ -5184,17 +5184,17 @@ export declare const UpdateFaqSchema: z.ZodObject<{
5184
5184
  maxHeight?: number | undefined;
5185
5185
  }>, z.ZodObject<{
5186
5186
  type: z.ZodLiteral<"session_metric">;
5187
- key: z.ZodString;
5187
+ key: z.ZodEnum<["time_on_page", "page_views", "scroll_depth"]>;
5188
5188
  operator: z.ZodEnum<["gte", "lte", "eq", "gt", "lt"]>;
5189
5189
  threshold: z.ZodNumber;
5190
5190
  }, "strip", z.ZodTypeAny, {
5191
5191
  type: "session_metric";
5192
- key: string;
5192
+ key: "time_on_page" | "page_views" | "scroll_depth";
5193
5193
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
5194
5194
  threshold: number;
5195
5195
  }, {
5196
5196
  type: "session_metric";
5197
- key: string;
5197
+ key: "time_on_page" | "page_views" | "scroll_depth";
5198
5198
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
5199
5199
  threshold: number;
5200
5200
  }>, z.ZodObject<{
@@ -5243,7 +5243,7 @@ export declare const UpdateFaqSchema: z.ZodObject<{
5243
5243
  count: z.ZodNumber;
5244
5244
  withinMs: z.ZodOptional<z.ZodNumber>;
5245
5245
  counter: z.ZodOptional<z.ZodObject<{
5246
- events: z.ZodArray<z.ZodString, "many">;
5246
+ events: z.ZodArray<z.ZodEnum<["ui.click", "ui.scroll", "ui.input", "ui.change", "ui.submit", "ui.hover", "ui.idle", "ui.scroll_thrash", "ui.focus_bounce", "nav.page_view", "nav.page_leave", "behavior.rage_click", "behavior.hesitation", "behavior.confusion"]>, "many">;
5247
5247
  match: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
5248
5248
  equals: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
5249
5249
  contains: z.ZodOptional<z.ZodString>;
@@ -5255,13 +5255,13 @@ export declare const UpdateFaqSchema: z.ZodObject<{
5255
5255
  contains?: string | undefined;
5256
5256
  }>>>;
5257
5257
  }, "strip", z.ZodTypeAny, {
5258
- events: string[];
5258
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
5259
5259
  match?: Record<string, {
5260
5260
  equals?: string | number | boolean | undefined;
5261
5261
  contains?: string | undefined;
5262
5262
  }> | undefined;
5263
5263
  }, {
5264
- events: string[];
5264
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
5265
5265
  match?: Record<string, {
5266
5266
  equals?: string | number | boolean | undefined;
5267
5267
  contains?: string | undefined;
@@ -5274,7 +5274,7 @@ export declare const UpdateFaqSchema: z.ZodObject<{
5274
5274
  count: number;
5275
5275
  withinMs?: number | undefined;
5276
5276
  counter?: {
5277
- events: string[];
5277
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
5278
5278
  match?: Record<string, {
5279
5279
  equals?: string | number | boolean | undefined;
5280
5280
  contains?: string | undefined;
@@ -5287,7 +5287,7 @@ export declare const UpdateFaqSchema: z.ZodObject<{
5287
5287
  count: number;
5288
5288
  withinMs?: number | undefined;
5289
5289
  counter?: {
5290
- events: string[];
5290
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
5291
5291
  match?: Record<string, {
5292
5292
  equals?: string | number | boolean | undefined;
5293
5293
  contains?: string | undefined;
@@ -5322,7 +5322,7 @@ export declare const UpdateFaqSchema: z.ZodObject<{
5322
5322
  maxHeight?: number | undefined;
5323
5323
  } | {
5324
5324
  type: "session_metric";
5325
- key: string;
5325
+ key: "time_on_page" | "page_views" | "scroll_depth";
5326
5326
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
5327
5327
  threshold: number;
5328
5328
  } | {
@@ -5345,7 +5345,7 @@ export declare const UpdateFaqSchema: z.ZodObject<{
5345
5345
  count: number;
5346
5346
  withinMs?: number | undefined;
5347
5347
  counter?: {
5348
- events: string[];
5348
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
5349
5349
  match?: Record<string, {
5350
5350
  equals?: string | number | boolean | undefined;
5351
5351
  contains?: string | undefined;
@@ -5380,7 +5380,7 @@ export declare const UpdateFaqSchema: z.ZodObject<{
5380
5380
  maxHeight?: number | undefined;
5381
5381
  } | {
5382
5382
  type: "session_metric";
5383
- key: string;
5383
+ key: "time_on_page" | "page_views" | "scroll_depth";
5384
5384
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
5385
5385
  threshold: number;
5386
5386
  } | {
@@ -5403,7 +5403,7 @@ export declare const UpdateFaqSchema: z.ZodObject<{
5403
5403
  count: number;
5404
5404
  withinMs?: number | undefined;
5405
5405
  counter?: {
5406
- events: string[];
5406
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
5407
5407
  match?: Record<string, {
5408
5408
  equals?: string | number | boolean | undefined;
5409
5409
  contains?: string | undefined;
@@ -5442,7 +5442,7 @@ export declare const UpdateFaqSchema: z.ZodObject<{
5442
5442
  maxHeight?: number | undefined;
5443
5443
  } | {
5444
5444
  type: "session_metric";
5445
- key: string;
5445
+ key: "time_on_page" | "page_views" | "scroll_depth";
5446
5446
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
5447
5447
  threshold: number;
5448
5448
  } | {
@@ -5465,7 +5465,7 @@ export declare const UpdateFaqSchema: z.ZodObject<{
5465
5465
  count: number;
5466
5466
  withinMs?: number | undefined;
5467
5467
  counter?: {
5468
- events: string[];
5468
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
5469
5469
  match?: Record<string, {
5470
5470
  equals?: string | number | boolean | undefined;
5471
5471
  contains?: string | undefined;
@@ -5504,7 +5504,7 @@ export declare const UpdateFaqSchema: z.ZodObject<{
5504
5504
  maxHeight?: number | undefined;
5505
5505
  } | {
5506
5506
  type: "session_metric";
5507
- key: string;
5507
+ key: "time_on_page" | "page_views" | "scroll_depth";
5508
5508
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
5509
5509
  threshold: number;
5510
5510
  } | {
@@ -5527,7 +5527,7 @@ export declare const UpdateFaqSchema: z.ZodObject<{
5527
5527
  count: number;
5528
5528
  withinMs?: number | undefined;
5529
5529
  counter?: {
5530
- events: string[];
5530
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
5531
5531
  match?: Record<string, {
5532
5532
  equals?: string | number | boolean | undefined;
5533
5533
  contains?: string | undefined;
@@ -5664,7 +5664,7 @@ export declare const UpdateFaqSchema: z.ZodObject<{
5664
5664
  maxHeight?: number | undefined;
5665
5665
  } | {
5666
5666
  type: "session_metric";
5667
- key: string;
5667
+ key: "time_on_page" | "page_views" | "scroll_depth";
5668
5668
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
5669
5669
  threshold: number;
5670
5670
  } | {
@@ -5687,7 +5687,7 @@ export declare const UpdateFaqSchema: z.ZodObject<{
5687
5687
  count: number;
5688
5688
  withinMs?: number | undefined;
5689
5689
  counter?: {
5690
- events: string[];
5690
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
5691
5691
  match?: Record<string, {
5692
5692
  equals?: string | number | boolean | undefined;
5693
5693
  contains?: string | undefined;
@@ -5779,7 +5779,7 @@ export declare const UpdateFaqSchema: z.ZodObject<{
5779
5779
  maxHeight?: number | undefined;
5780
5780
  } | {
5781
5781
  type: "session_metric";
5782
- key: string;
5782
+ key: "time_on_page" | "page_views" | "scroll_depth";
5783
5783
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
5784
5784
  threshold: number;
5785
5785
  } | {
@@ -5802,7 +5802,7 @@ export declare const UpdateFaqSchema: z.ZodObject<{
5802
5802
  count: number;
5803
5803
  withinMs?: number | undefined;
5804
5804
  counter?: {
5805
- events: string[];
5805
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
5806
5806
  match?: Record<string, {
5807
5807
  equals?: string | number | boolean | undefined;
5808
5808
  contains?: string | undefined;
@@ -5894,7 +5894,7 @@ export declare const UpdateFaqSchema: z.ZodObject<{
5894
5894
  maxHeight?: number | undefined;
5895
5895
  } | {
5896
5896
  type: "session_metric";
5897
- key: string;
5897
+ key: "time_on_page" | "page_views" | "scroll_depth";
5898
5898
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
5899
5899
  threshold: number;
5900
5900
  } | {
@@ -5917,7 +5917,7 @@ export declare const UpdateFaqSchema: z.ZodObject<{
5917
5917
  count: number;
5918
5918
  withinMs?: number | undefined;
5919
5919
  counter?: {
5920
- events: string[];
5920
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
5921
5921
  match?: Record<string, {
5922
5922
  equals?: string | number | boolean | undefined;
5923
5923
  contains?: string | undefined;
@@ -6009,7 +6009,7 @@ export declare const UpdateFaqSchema: z.ZodObject<{
6009
6009
  maxHeight?: number | undefined;
6010
6010
  } | {
6011
6011
  type: "session_metric";
6012
- key: string;
6012
+ key: "time_on_page" | "page_views" | "scroll_depth";
6013
6013
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
6014
6014
  threshold: number;
6015
6015
  } | {
@@ -6032,7 +6032,7 @@ export declare const UpdateFaqSchema: z.ZodObject<{
6032
6032
  count: number;
6033
6033
  withinMs?: number | undefined;
6034
6034
  counter?: {
6035
- events: string[];
6035
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
6036
6036
  match?: Record<string, {
6037
6037
  equals?: string | number | boolean | undefined;
6038
6038
  contains?: string | undefined;
@@ -6142,7 +6142,7 @@ export declare const UpdateFaqSchema: z.ZodObject<{
6142
6142
  maxHeight?: number | undefined;
6143
6143
  } | {
6144
6144
  type: "session_metric";
6145
- key: string;
6145
+ key: "time_on_page" | "page_views" | "scroll_depth";
6146
6146
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
6147
6147
  threshold: number;
6148
6148
  } | {
@@ -6165,7 +6165,7 @@ export declare const UpdateFaqSchema: z.ZodObject<{
6165
6165
  count: number;
6166
6166
  withinMs?: number | undefined;
6167
6167
  counter?: {
6168
- events: string[];
6168
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
6169
6169
  match?: Record<string, {
6170
6170
  equals?: string | number | boolean | undefined;
6171
6171
  contains?: string | undefined;
@@ -6268,7 +6268,7 @@ export declare const UpdateFaqSchema: z.ZodObject<{
6268
6268
  maxHeight?: number | undefined;
6269
6269
  } | {
6270
6270
  type: "session_metric";
6271
- key: string;
6271
+ key: "time_on_page" | "page_views" | "scroll_depth";
6272
6272
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
6273
6273
  threshold: number;
6274
6274
  } | {
@@ -6291,7 +6291,7 @@ export declare const UpdateFaqSchema: z.ZodObject<{
6291
6291
  count: number;
6292
6292
  withinMs?: number | undefined;
6293
6293
  counter?: {
6294
- events: string[];
6294
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
6295
6295
  match?: Record<string, {
6296
6296
  equals?: string | number | boolean | undefined;
6297
6297
  contains?: string | undefined;
@@ -6394,7 +6394,7 @@ export declare function validateFAQQuestion(data: unknown): z.SafeParseReturnTyp
6394
6394
  maxHeight?: number | undefined;
6395
6395
  } | {
6396
6396
  type: "session_metric";
6397
- key: string;
6397
+ key: "time_on_page" | "page_views" | "scroll_depth";
6398
6398
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
6399
6399
  threshold: number;
6400
6400
  } | {
@@ -6417,7 +6417,7 @@ export declare function validateFAQQuestion(data: unknown): z.SafeParseReturnTyp
6417
6417
  count: number;
6418
6418
  withinMs?: number | undefined;
6419
6419
  counter?: {
6420
- events: string[];
6420
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
6421
6421
  match?: Record<string, {
6422
6422
  equals?: string | number | boolean | undefined;
6423
6423
  contains?: string | undefined;
@@ -6509,7 +6509,7 @@ export declare function validateFAQQuestion(data: unknown): z.SafeParseReturnTyp
6509
6509
  maxHeight?: number | undefined;
6510
6510
  } | {
6511
6511
  type: "session_metric";
6512
- key: string;
6512
+ key: "time_on_page" | "page_views" | "scroll_depth";
6513
6513
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
6514
6514
  threshold: number;
6515
6515
  } | {
@@ -6532,7 +6532,7 @@ export declare function validateFAQQuestion(data: unknown): z.SafeParseReturnTyp
6532
6532
  count: number;
6533
6533
  withinMs?: number | undefined;
6534
6534
  counter?: {
6535
- events: string[];
6535
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
6536
6536
  match?: Record<string, {
6537
6537
  equals?: string | number | boolean | undefined;
6538
6538
  contains?: string | undefined;
@@ -6632,7 +6632,7 @@ export declare function validateFAQConfig(data: unknown): z.SafeParseReturnType<
6632
6632
  maxHeight?: number | undefined;
6633
6633
  } | {
6634
6634
  type: "session_metric";
6635
- key: string;
6635
+ key: "time_on_page" | "page_views" | "scroll_depth";
6636
6636
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
6637
6637
  threshold: number;
6638
6638
  } | {
@@ -6655,7 +6655,7 @@ export declare function validateFAQConfig(data: unknown): z.SafeParseReturnType<
6655
6655
  count: number;
6656
6656
  withinMs?: number | undefined;
6657
6657
  counter?: {
6658
- events: string[];
6658
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
6659
6659
  match?: Record<string, {
6660
6660
  equals?: string | number | boolean | undefined;
6661
6661
  contains?: string | undefined;
@@ -6757,7 +6757,7 @@ export declare function validateFAQConfig(data: unknown): z.SafeParseReturnType<
6757
6757
  maxHeight?: number | undefined;
6758
6758
  } | {
6759
6759
  type: "session_metric";
6760
- key: string;
6760
+ key: "time_on_page" | "page_views" | "scroll_depth";
6761
6761
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
6762
6762
  threshold: number;
6763
6763
  } | {
@@ -6780,7 +6780,7 @@ export declare function validateFAQConfig(data: unknown): z.SafeParseReturnType<
6780
6780
  count: number;
6781
6781
  withinMs?: number | undefined;
6782
6782
  counter?: {
6783
- events: string[];
6783
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
6784
6784
  match?: Record<string, {
6785
6785
  equals?: string | number | boolean | undefined;
6786
6786
  contains?: string | undefined;
@@ -6844,7 +6844,7 @@ export declare function validateFAQConfig(data: unknown): z.SafeParseReturnType<
6844
6844
  maxHeight?: number | undefined;
6845
6845
  } | {
6846
6846
  type: "session_metric";
6847
- key: string;
6847
+ key: "time_on_page" | "page_views" | "scroll_depth";
6848
6848
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
6849
6849
  threshold: number;
6850
6850
  } | {
@@ -6867,7 +6867,7 @@ export declare function validateFAQConfig(data: unknown): z.SafeParseReturnType<
6867
6867
  count: number;
6868
6868
  withinMs?: number | undefined;
6869
6869
  counter?: {
6870
- events: string[];
6870
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
6871
6871
  match?: Record<string, {
6872
6872
  equals?: string | number | boolean | undefined;
6873
6873
  contains?: string | undefined;
@@ -6962,7 +6962,7 @@ export declare function validateFAQConfig(data: unknown): z.SafeParseReturnType<
6962
6962
  maxHeight?: number | undefined;
6963
6963
  } | {
6964
6964
  type: "session_metric";
6965
- key: string;
6965
+ key: "time_on_page" | "page_views" | "scroll_depth";
6966
6966
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
6967
6967
  threshold: number;
6968
6968
  } | {
@@ -6985,7 +6985,7 @@ export declare function validateFAQConfig(data: unknown): z.SafeParseReturnType<
6985
6985
  count: number;
6986
6986
  withinMs?: number | undefined;
6987
6987
  counter?: {
6988
- events: string[];
6988
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
6989
6989
  match?: Record<string, {
6990
6990
  equals?: string | number | boolean | undefined;
6991
6991
  contains?: string | undefined;
@@ -7087,7 +7087,7 @@ export declare function validateFAQConfig(data: unknown): z.SafeParseReturnType<
7087
7087
  maxHeight?: number | undefined;
7088
7088
  } | {
7089
7089
  type: "session_metric";
7090
- key: string;
7090
+ key: "time_on_page" | "page_views" | "scroll_depth";
7091
7091
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
7092
7092
  threshold: number;
7093
7093
  } | {
@@ -7110,7 +7110,7 @@ export declare function validateFAQConfig(data: unknown): z.SafeParseReturnType<
7110
7110
  count: number;
7111
7111
  withinMs?: number | undefined;
7112
7112
  counter?: {
7113
- events: string[];
7113
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
7114
7114
  match?: Record<string, {
7115
7115
  equals?: string | number | boolean | undefined;
7116
7116
  contains?: string | undefined;
@@ -7174,7 +7174,7 @@ export declare function validateFAQConfig(data: unknown): z.SafeParseReturnType<
7174
7174
  maxHeight?: number | undefined;
7175
7175
  } | {
7176
7176
  type: "session_metric";
7177
- key: string;
7177
+ key: "time_on_page" | "page_views" | "scroll_depth";
7178
7178
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
7179
7179
  threshold: number;
7180
7180
  } | {
@@ -7197,7 +7197,7 @@ export declare function validateFAQConfig(data: unknown): z.SafeParseReturnType<
7197
7197
  count: number;
7198
7198
  withinMs?: number | undefined;
7199
7199
  counter?: {
7200
- events: string[];
7200
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
7201
7201
  match?: Record<string, {
7202
7202
  equals?: string | number | boolean | undefined;
7203
7203
  contains?: string | undefined;
@@ -7458,17 +7458,17 @@ export declare const actionStepSchemas: ({
7458
7458
  maxHeight?: number | undefined;
7459
7459
  }>, z.ZodObject<{
7460
7460
  type: z.ZodLiteral<"session_metric">;
7461
- key: z.ZodString;
7461
+ key: z.ZodEnum<["time_on_page", "page_views", "scroll_depth"]>;
7462
7462
  operator: z.ZodEnum<["gte", "lte", "eq", "gt", "lt"]>;
7463
7463
  threshold: z.ZodNumber;
7464
7464
  }, "strip", z.ZodTypeAny, {
7465
7465
  type: "session_metric";
7466
- key: string;
7466
+ key: "time_on_page" | "page_views" | "scroll_depth";
7467
7467
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
7468
7468
  threshold: number;
7469
7469
  }, {
7470
7470
  type: "session_metric";
7471
- key: string;
7471
+ key: "time_on_page" | "page_views" | "scroll_depth";
7472
7472
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
7473
7473
  threshold: number;
7474
7474
  }>, z.ZodObject<{
@@ -7517,7 +7517,7 @@ export declare const actionStepSchemas: ({
7517
7517
  count: z.ZodNumber;
7518
7518
  withinMs: z.ZodOptional<z.ZodNumber>;
7519
7519
  counter: z.ZodOptional<z.ZodObject<{
7520
- events: z.ZodArray<z.ZodString, "many">;
7520
+ events: z.ZodArray<z.ZodEnum<["ui.click", "ui.scroll", "ui.input", "ui.change", "ui.submit", "ui.hover", "ui.idle", "ui.scroll_thrash", "ui.focus_bounce", "nav.page_view", "nav.page_leave", "behavior.rage_click", "behavior.hesitation", "behavior.confusion"]>, "many">;
7521
7521
  match: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
7522
7522
  equals: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
7523
7523
  contains: z.ZodOptional<z.ZodString>;
@@ -7529,13 +7529,13 @@ export declare const actionStepSchemas: ({
7529
7529
  contains?: string | undefined;
7530
7530
  }>>>;
7531
7531
  }, "strip", z.ZodTypeAny, {
7532
- events: string[];
7532
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
7533
7533
  match?: Record<string, {
7534
7534
  equals?: string | number | boolean | undefined;
7535
7535
  contains?: string | undefined;
7536
7536
  }> | undefined;
7537
7537
  }, {
7538
- events: string[];
7538
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
7539
7539
  match?: Record<string, {
7540
7540
  equals?: string | number | boolean | undefined;
7541
7541
  contains?: string | undefined;
@@ -7548,7 +7548,7 @@ export declare const actionStepSchemas: ({
7548
7548
  count: number;
7549
7549
  withinMs?: number | undefined;
7550
7550
  counter?: {
7551
- events: string[];
7551
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
7552
7552
  match?: Record<string, {
7553
7553
  equals?: string | number | boolean | undefined;
7554
7554
  contains?: string | undefined;
@@ -7561,7 +7561,7 @@ export declare const actionStepSchemas: ({
7561
7561
  count: number;
7562
7562
  withinMs?: number | undefined;
7563
7563
  counter?: {
7564
- events: string[];
7564
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
7565
7565
  match?: Record<string, {
7566
7566
  equals?: string | number | boolean | undefined;
7567
7567
  contains?: string | undefined;
@@ -7596,7 +7596,7 @@ export declare const actionStepSchemas: ({
7596
7596
  maxHeight?: number | undefined;
7597
7597
  } | {
7598
7598
  type: "session_metric";
7599
- key: string;
7599
+ key: "time_on_page" | "page_views" | "scroll_depth";
7600
7600
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
7601
7601
  threshold: number;
7602
7602
  } | {
@@ -7619,7 +7619,7 @@ export declare const actionStepSchemas: ({
7619
7619
  count: number;
7620
7620
  withinMs?: number | undefined;
7621
7621
  counter?: {
7622
- events: string[];
7622
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
7623
7623
  match?: Record<string, {
7624
7624
  equals?: string | number | boolean | undefined;
7625
7625
  contains?: string | undefined;
@@ -7654,7 +7654,7 @@ export declare const actionStepSchemas: ({
7654
7654
  maxHeight?: number | undefined;
7655
7655
  } | {
7656
7656
  type: "session_metric";
7657
- key: string;
7657
+ key: "time_on_page" | "page_views" | "scroll_depth";
7658
7658
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
7659
7659
  threshold: number;
7660
7660
  } | {
@@ -7677,7 +7677,7 @@ export declare const actionStepSchemas: ({
7677
7677
  count: number;
7678
7678
  withinMs?: number | undefined;
7679
7679
  counter?: {
7680
- events: string[];
7680
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
7681
7681
  match?: Record<string, {
7682
7682
  equals?: string | number | boolean | undefined;
7683
7683
  contains?: string | undefined;
@@ -7716,7 +7716,7 @@ export declare const actionStepSchemas: ({
7716
7716
  maxHeight?: number | undefined;
7717
7717
  } | {
7718
7718
  type: "session_metric";
7719
- key: string;
7719
+ key: "time_on_page" | "page_views" | "scroll_depth";
7720
7720
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
7721
7721
  threshold: number;
7722
7722
  } | {
@@ -7739,7 +7739,7 @@ export declare const actionStepSchemas: ({
7739
7739
  count: number;
7740
7740
  withinMs?: number | undefined;
7741
7741
  counter?: {
7742
- events: string[];
7742
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
7743
7743
  match?: Record<string, {
7744
7744
  equals?: string | number | boolean | undefined;
7745
7745
  contains?: string | undefined;
@@ -7778,7 +7778,7 @@ export declare const actionStepSchemas: ({
7778
7778
  maxHeight?: number | undefined;
7779
7779
  } | {
7780
7780
  type: "session_metric";
7781
- key: string;
7781
+ key: "time_on_page" | "page_views" | "scroll_depth";
7782
7782
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
7783
7783
  threshold: number;
7784
7784
  } | {
@@ -7801,7 +7801,7 @@ export declare const actionStepSchemas: ({
7801
7801
  count: number;
7802
7802
  withinMs?: number | undefined;
7803
7803
  counter?: {
7804
- events: string[];
7804
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
7805
7805
  match?: Record<string, {
7806
7806
  equals?: string | number | boolean | undefined;
7807
7807
  contains?: string | undefined;
@@ -7938,7 +7938,7 @@ export declare const actionStepSchemas: ({
7938
7938
  maxHeight?: number | undefined;
7939
7939
  } | {
7940
7940
  type: "session_metric";
7941
- key: string;
7941
+ key: "time_on_page" | "page_views" | "scroll_depth";
7942
7942
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
7943
7943
  threshold: number;
7944
7944
  } | {
@@ -7961,7 +7961,7 @@ export declare const actionStepSchemas: ({
7961
7961
  count: number;
7962
7962
  withinMs?: number | undefined;
7963
7963
  counter?: {
7964
- events: string[];
7964
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
7965
7965
  match?: Record<string, {
7966
7966
  equals?: string | number | boolean | undefined;
7967
7967
  contains?: string | undefined;
@@ -8053,7 +8053,7 @@ export declare const actionStepSchemas: ({
8053
8053
  maxHeight?: number | undefined;
8054
8054
  } | {
8055
8055
  type: "session_metric";
8056
- key: string;
8056
+ key: "time_on_page" | "page_views" | "scroll_depth";
8057
8057
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
8058
8058
  threshold: number;
8059
8059
  } | {
@@ -8076,7 +8076,7 @@ export declare const actionStepSchemas: ({
8076
8076
  count: number;
8077
8077
  withinMs?: number | undefined;
8078
8078
  counter?: {
8079
- events: string[];
8079
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
8080
8080
  match?: Record<string, {
8081
8081
  equals?: string | number | boolean | undefined;
8082
8082
  contains?: string | undefined;
@@ -8372,17 +8372,17 @@ export declare const actionStepSchemas: ({
8372
8372
  maxHeight?: number | undefined;
8373
8373
  }>, z.ZodObject<{
8374
8374
  type: z.ZodLiteral<"session_metric">;
8375
- key: z.ZodString;
8375
+ key: z.ZodEnum<["time_on_page", "page_views", "scroll_depth"]>;
8376
8376
  operator: z.ZodEnum<["gte", "lte", "eq", "gt", "lt"]>;
8377
8377
  threshold: z.ZodNumber;
8378
8378
  }, "strip", z.ZodTypeAny, {
8379
8379
  type: "session_metric";
8380
- key: string;
8380
+ key: "time_on_page" | "page_views" | "scroll_depth";
8381
8381
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
8382
8382
  threshold: number;
8383
8383
  }, {
8384
8384
  type: "session_metric";
8385
- key: string;
8385
+ key: "time_on_page" | "page_views" | "scroll_depth";
8386
8386
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
8387
8387
  threshold: number;
8388
8388
  }>, z.ZodObject<{
@@ -8431,7 +8431,7 @@ export declare const actionStepSchemas: ({
8431
8431
  count: z.ZodNumber;
8432
8432
  withinMs: z.ZodOptional<z.ZodNumber>;
8433
8433
  counter: z.ZodOptional<z.ZodObject<{
8434
- events: z.ZodArray<z.ZodString, "many">;
8434
+ events: z.ZodArray<z.ZodEnum<["ui.click", "ui.scroll", "ui.input", "ui.change", "ui.submit", "ui.hover", "ui.idle", "ui.scroll_thrash", "ui.focus_bounce", "nav.page_view", "nav.page_leave", "behavior.rage_click", "behavior.hesitation", "behavior.confusion"]>, "many">;
8435
8435
  match: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
8436
8436
  equals: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
8437
8437
  contains: z.ZodOptional<z.ZodString>;
@@ -8443,13 +8443,13 @@ export declare const actionStepSchemas: ({
8443
8443
  contains?: string | undefined;
8444
8444
  }>>>;
8445
8445
  }, "strip", z.ZodTypeAny, {
8446
- events: string[];
8446
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
8447
8447
  match?: Record<string, {
8448
8448
  equals?: string | number | boolean | undefined;
8449
8449
  contains?: string | undefined;
8450
8450
  }> | undefined;
8451
8451
  }, {
8452
- events: string[];
8452
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
8453
8453
  match?: Record<string, {
8454
8454
  equals?: string | number | boolean | undefined;
8455
8455
  contains?: string | undefined;
@@ -8462,7 +8462,7 @@ export declare const actionStepSchemas: ({
8462
8462
  count: number;
8463
8463
  withinMs?: number | undefined;
8464
8464
  counter?: {
8465
- events: string[];
8465
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
8466
8466
  match?: Record<string, {
8467
8467
  equals?: string | number | boolean | undefined;
8468
8468
  contains?: string | undefined;
@@ -8475,7 +8475,7 @@ export declare const actionStepSchemas: ({
8475
8475
  count: number;
8476
8476
  withinMs?: number | undefined;
8477
8477
  counter?: {
8478
- events: string[];
8478
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
8479
8479
  match?: Record<string, {
8480
8480
  equals?: string | number | boolean | undefined;
8481
8481
  contains?: string | undefined;
@@ -8510,7 +8510,7 @@ export declare const actionStepSchemas: ({
8510
8510
  maxHeight?: number | undefined;
8511
8511
  } | {
8512
8512
  type: "session_metric";
8513
- key: string;
8513
+ key: "time_on_page" | "page_views" | "scroll_depth";
8514
8514
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
8515
8515
  threshold: number;
8516
8516
  } | {
@@ -8533,7 +8533,7 @@ export declare const actionStepSchemas: ({
8533
8533
  count: number;
8534
8534
  withinMs?: number | undefined;
8535
8535
  counter?: {
8536
- events: string[];
8536
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
8537
8537
  match?: Record<string, {
8538
8538
  equals?: string | number | boolean | undefined;
8539
8539
  contains?: string | undefined;
@@ -8568,7 +8568,7 @@ export declare const actionStepSchemas: ({
8568
8568
  maxHeight?: number | undefined;
8569
8569
  } | {
8570
8570
  type: "session_metric";
8571
- key: string;
8571
+ key: "time_on_page" | "page_views" | "scroll_depth";
8572
8572
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
8573
8573
  threshold: number;
8574
8574
  } | {
@@ -8591,7 +8591,7 @@ export declare const actionStepSchemas: ({
8591
8591
  count: number;
8592
8592
  withinMs?: number | undefined;
8593
8593
  counter?: {
8594
- events: string[];
8594
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
8595
8595
  match?: Record<string, {
8596
8596
  equals?: string | number | boolean | undefined;
8597
8597
  contains?: string | undefined;
@@ -8630,7 +8630,7 @@ export declare const actionStepSchemas: ({
8630
8630
  maxHeight?: number | undefined;
8631
8631
  } | {
8632
8632
  type: "session_metric";
8633
- key: string;
8633
+ key: "time_on_page" | "page_views" | "scroll_depth";
8634
8634
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
8635
8635
  threshold: number;
8636
8636
  } | {
@@ -8653,7 +8653,7 @@ export declare const actionStepSchemas: ({
8653
8653
  count: number;
8654
8654
  withinMs?: number | undefined;
8655
8655
  counter?: {
8656
- events: string[];
8656
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
8657
8657
  match?: Record<string, {
8658
8658
  equals?: string | number | boolean | undefined;
8659
8659
  contains?: string | undefined;
@@ -8692,7 +8692,7 @@ export declare const actionStepSchemas: ({
8692
8692
  maxHeight?: number | undefined;
8693
8693
  } | {
8694
8694
  type: "session_metric";
8695
- key: string;
8695
+ key: "time_on_page" | "page_views" | "scroll_depth";
8696
8696
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
8697
8697
  threshold: number;
8698
8698
  } | {
@@ -8715,7 +8715,7 @@ export declare const actionStepSchemas: ({
8715
8715
  count: number;
8716
8716
  withinMs?: number | undefined;
8717
8717
  counter?: {
8718
- events: string[];
8718
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
8719
8719
  match?: Record<string, {
8720
8720
  equals?: string | number | boolean | undefined;
8721
8721
  contains?: string | undefined;
@@ -8852,7 +8852,7 @@ export declare const actionStepSchemas: ({
8852
8852
  maxHeight?: number | undefined;
8853
8853
  } | {
8854
8854
  type: "session_metric";
8855
- key: string;
8855
+ key: "time_on_page" | "page_views" | "scroll_depth";
8856
8856
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
8857
8857
  threshold: number;
8858
8858
  } | {
@@ -8875,7 +8875,7 @@ export declare const actionStepSchemas: ({
8875
8875
  count: number;
8876
8876
  withinMs?: number | undefined;
8877
8877
  counter?: {
8878
- events: string[];
8878
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
8879
8879
  match?: Record<string, {
8880
8880
  equals?: string | number | boolean | undefined;
8881
8881
  contains?: string | undefined;
@@ -8967,7 +8967,7 @@ export declare const actionStepSchemas: ({
8967
8967
  maxHeight?: number | undefined;
8968
8968
  } | {
8969
8969
  type: "session_metric";
8970
- key: string;
8970
+ key: "time_on_page" | "page_views" | "scroll_depth";
8971
8971
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
8972
8972
  threshold: number;
8973
8973
  } | {
@@ -8990,7 +8990,7 @@ export declare const actionStepSchemas: ({
8990
8990
  count: number;
8991
8991
  withinMs?: number | undefined;
8992
8992
  counter?: {
8993
- events: string[];
8993
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
8994
8994
  match?: Record<string, {
8995
8995
  equals?: string | number | boolean | undefined;
8996
8996
  contains?: string | undefined;
@@ -9082,7 +9082,7 @@ export declare const actionStepSchemas: ({
9082
9082
  maxHeight?: number | undefined;
9083
9083
  } | {
9084
9084
  type: "session_metric";
9085
- key: string;
9085
+ key: "time_on_page" | "page_views" | "scroll_depth";
9086
9086
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
9087
9087
  threshold: number;
9088
9088
  } | {
@@ -9105,7 +9105,7 @@ export declare const actionStepSchemas: ({
9105
9105
  count: number;
9106
9106
  withinMs?: number | undefined;
9107
9107
  counter?: {
9108
- events: string[];
9108
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
9109
9109
  match?: Record<string, {
9110
9110
  equals?: string | number | boolean | undefined;
9111
9111
  contains?: string | undefined;
@@ -9197,7 +9197,7 @@ export declare const actionStepSchemas: ({
9197
9197
  maxHeight?: number | undefined;
9198
9198
  } | {
9199
9199
  type: "session_metric";
9200
- key: string;
9200
+ key: "time_on_page" | "page_views" | "scroll_depth";
9201
9201
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
9202
9202
  threshold: number;
9203
9203
  } | {
@@ -9220,7 +9220,7 @@ export declare const actionStepSchemas: ({
9220
9220
  count: number;
9221
9221
  withinMs?: number | undefined;
9222
9222
  counter?: {
9223
- events: string[];
9223
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
9224
9224
  match?: Record<string, {
9225
9225
  equals?: string | number | boolean | undefined;
9226
9226
  contains?: string | undefined;
@@ -9330,7 +9330,7 @@ export declare const actionStepSchemas: ({
9330
9330
  maxHeight?: number | undefined;
9331
9331
  } | {
9332
9332
  type: "session_metric";
9333
- key: string;
9333
+ key: "time_on_page" | "page_views" | "scroll_depth";
9334
9334
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
9335
9335
  threshold: number;
9336
9336
  } | {
@@ -9353,7 +9353,7 @@ export declare const actionStepSchemas: ({
9353
9353
  count: number;
9354
9354
  withinMs?: number | undefined;
9355
9355
  counter?: {
9356
- events: string[];
9356
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
9357
9357
  match?: Record<string, {
9358
9358
  equals?: string | number | boolean | undefined;
9359
9359
  contains?: string | undefined;
@@ -9456,7 +9456,7 @@ export declare const actionStepSchemas: ({
9456
9456
  maxHeight?: number | undefined;
9457
9457
  } | {
9458
9458
  type: "session_metric";
9459
- key: string;
9459
+ key: "time_on_page" | "page_views" | "scroll_depth";
9460
9460
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
9461
9461
  threshold: number;
9462
9462
  } | {
@@ -9479,7 +9479,7 @@ export declare const actionStepSchemas: ({
9479
9479
  count: number;
9480
9480
  withinMs?: number | undefined;
9481
9481
  counter?: {
9482
- events: string[];
9482
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
9483
9483
  match?: Record<string, {
9484
9484
  equals?: string | number | boolean | undefined;
9485
9485
  contains?: string | undefined;
@@ -9757,17 +9757,17 @@ export declare const tileWidgets: {
9757
9757
  maxHeight?: number | undefined;
9758
9758
  }>, z.ZodObject<{
9759
9759
  type: z.ZodLiteral<"session_metric">;
9760
- key: z.ZodString;
9760
+ key: z.ZodEnum<["time_on_page", "page_views", "scroll_depth"]>;
9761
9761
  operator: z.ZodEnum<["gte", "lte", "eq", "gt", "lt"]>;
9762
9762
  threshold: z.ZodNumber;
9763
9763
  }, "strip", z.ZodTypeAny, {
9764
9764
  type: "session_metric";
9765
- key: string;
9765
+ key: "time_on_page" | "page_views" | "scroll_depth";
9766
9766
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
9767
9767
  threshold: number;
9768
9768
  }, {
9769
9769
  type: "session_metric";
9770
- key: string;
9770
+ key: "time_on_page" | "page_views" | "scroll_depth";
9771
9771
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
9772
9772
  threshold: number;
9773
9773
  }>, z.ZodObject<{
@@ -9816,7 +9816,7 @@ export declare const tileWidgets: {
9816
9816
  count: z.ZodNumber;
9817
9817
  withinMs: z.ZodOptional<z.ZodNumber>;
9818
9818
  counter: z.ZodOptional<z.ZodObject<{
9819
- events: z.ZodArray<z.ZodString, "many">;
9819
+ events: z.ZodArray<z.ZodEnum<["ui.click", "ui.scroll", "ui.input", "ui.change", "ui.submit", "ui.hover", "ui.idle", "ui.scroll_thrash", "ui.focus_bounce", "nav.page_view", "nav.page_leave", "behavior.rage_click", "behavior.hesitation", "behavior.confusion"]>, "many">;
9820
9820
  match: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
9821
9821
  equals: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
9822
9822
  contains: z.ZodOptional<z.ZodString>;
@@ -9828,13 +9828,13 @@ export declare const tileWidgets: {
9828
9828
  contains?: string | undefined;
9829
9829
  }>>>;
9830
9830
  }, "strip", z.ZodTypeAny, {
9831
- events: string[];
9831
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
9832
9832
  match?: Record<string, {
9833
9833
  equals?: string | number | boolean | undefined;
9834
9834
  contains?: string | undefined;
9835
9835
  }> | undefined;
9836
9836
  }, {
9837
- events: string[];
9837
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
9838
9838
  match?: Record<string, {
9839
9839
  equals?: string | number | boolean | undefined;
9840
9840
  contains?: string | undefined;
@@ -9847,7 +9847,7 @@ export declare const tileWidgets: {
9847
9847
  count: number;
9848
9848
  withinMs?: number | undefined;
9849
9849
  counter?: {
9850
- events: string[];
9850
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
9851
9851
  match?: Record<string, {
9852
9852
  equals?: string | number | boolean | undefined;
9853
9853
  contains?: string | undefined;
@@ -9860,7 +9860,7 @@ export declare const tileWidgets: {
9860
9860
  count: number;
9861
9861
  withinMs?: number | undefined;
9862
9862
  counter?: {
9863
- events: string[];
9863
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
9864
9864
  match?: Record<string, {
9865
9865
  equals?: string | number | boolean | undefined;
9866
9866
  contains?: string | undefined;
@@ -9895,7 +9895,7 @@ export declare const tileWidgets: {
9895
9895
  maxHeight?: number | undefined;
9896
9896
  } | {
9897
9897
  type: "session_metric";
9898
- key: string;
9898
+ key: "time_on_page" | "page_views" | "scroll_depth";
9899
9899
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
9900
9900
  threshold: number;
9901
9901
  } | {
@@ -9918,7 +9918,7 @@ export declare const tileWidgets: {
9918
9918
  count: number;
9919
9919
  withinMs?: number | undefined;
9920
9920
  counter?: {
9921
- events: string[];
9921
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
9922
9922
  match?: Record<string, {
9923
9923
  equals?: string | number | boolean | undefined;
9924
9924
  contains?: string | undefined;
@@ -9953,7 +9953,7 @@ export declare const tileWidgets: {
9953
9953
  maxHeight?: number | undefined;
9954
9954
  } | {
9955
9955
  type: "session_metric";
9956
- key: string;
9956
+ key: "time_on_page" | "page_views" | "scroll_depth";
9957
9957
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
9958
9958
  threshold: number;
9959
9959
  } | {
@@ -9976,7 +9976,7 @@ export declare const tileWidgets: {
9976
9976
  count: number;
9977
9977
  withinMs?: number | undefined;
9978
9978
  counter?: {
9979
- events: string[];
9979
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
9980
9980
  match?: Record<string, {
9981
9981
  equals?: string | number | boolean | undefined;
9982
9982
  contains?: string | undefined;
@@ -10015,7 +10015,7 @@ export declare const tileWidgets: {
10015
10015
  maxHeight?: number | undefined;
10016
10016
  } | {
10017
10017
  type: "session_metric";
10018
- key: string;
10018
+ key: "time_on_page" | "page_views" | "scroll_depth";
10019
10019
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
10020
10020
  threshold: number;
10021
10021
  } | {
@@ -10038,7 +10038,7 @@ export declare const tileWidgets: {
10038
10038
  count: number;
10039
10039
  withinMs?: number | undefined;
10040
10040
  counter?: {
10041
- events: string[];
10041
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
10042
10042
  match?: Record<string, {
10043
10043
  equals?: string | number | boolean | undefined;
10044
10044
  contains?: string | undefined;
@@ -10077,7 +10077,7 @@ export declare const tileWidgets: {
10077
10077
  maxHeight?: number | undefined;
10078
10078
  } | {
10079
10079
  type: "session_metric";
10080
- key: string;
10080
+ key: "time_on_page" | "page_views" | "scroll_depth";
10081
10081
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
10082
10082
  threshold: number;
10083
10083
  } | {
@@ -10100,7 +10100,7 @@ export declare const tileWidgets: {
10100
10100
  count: number;
10101
10101
  withinMs?: number | undefined;
10102
10102
  counter?: {
10103
- events: string[];
10103
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
10104
10104
  match?: Record<string, {
10105
10105
  equals?: string | number | boolean | undefined;
10106
10106
  contains?: string | undefined;
@@ -10237,7 +10237,7 @@ export declare const tileWidgets: {
10237
10237
  maxHeight?: number | undefined;
10238
10238
  } | {
10239
10239
  type: "session_metric";
10240
- key: string;
10240
+ key: "time_on_page" | "page_views" | "scroll_depth";
10241
10241
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
10242
10242
  threshold: number;
10243
10243
  } | {
@@ -10260,7 +10260,7 @@ export declare const tileWidgets: {
10260
10260
  count: number;
10261
10261
  withinMs?: number | undefined;
10262
10262
  counter?: {
10263
- events: string[];
10263
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
10264
10264
  match?: Record<string, {
10265
10265
  equals?: string | number | boolean | undefined;
10266
10266
  contains?: string | undefined;
@@ -10352,7 +10352,7 @@ export declare const tileWidgets: {
10352
10352
  maxHeight?: number | undefined;
10353
10353
  } | {
10354
10354
  type: "session_metric";
10355
- key: string;
10355
+ key: "time_on_page" | "page_views" | "scroll_depth";
10356
10356
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
10357
10357
  threshold: number;
10358
10358
  } | {
@@ -10375,7 +10375,7 @@ export declare const tileWidgets: {
10375
10375
  count: number;
10376
10376
  withinMs?: number | undefined;
10377
10377
  counter?: {
10378
- events: string[];
10378
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
10379
10379
  match?: Record<string, {
10380
10380
  equals?: string | number | boolean | undefined;
10381
10381
  contains?: string | undefined;
@@ -10467,7 +10467,7 @@ export declare const tileWidgets: {
10467
10467
  maxHeight?: number | undefined;
10468
10468
  } | {
10469
10469
  type: "session_metric";
10470
- key: string;
10470
+ key: "time_on_page" | "page_views" | "scroll_depth";
10471
10471
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
10472
10472
  threshold: number;
10473
10473
  } | {
@@ -10490,7 +10490,7 @@ export declare const tileWidgets: {
10490
10490
  count: number;
10491
10491
  withinMs?: number | undefined;
10492
10492
  counter?: {
10493
- events: string[];
10493
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
10494
10494
  match?: Record<string, {
10495
10495
  equals?: string | number | boolean | undefined;
10496
10496
  contains?: string | undefined;
@@ -10582,7 +10582,7 @@ export declare const tileWidgets: {
10582
10582
  maxHeight?: number | undefined;
10583
10583
  } | {
10584
10584
  type: "session_metric";
10585
- key: string;
10585
+ key: "time_on_page" | "page_views" | "scroll_depth";
10586
10586
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
10587
10587
  threshold: number;
10588
10588
  } | {
@@ -10605,7 +10605,7 @@ export declare const tileWidgets: {
10605
10605
  count: number;
10606
10606
  withinMs?: number | undefined;
10607
10607
  counter?: {
10608
- events: string[];
10608
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
10609
10609
  match?: Record<string, {
10610
10610
  equals?: string | number | boolean | undefined;
10611
10611
  contains?: string | undefined;
@@ -10741,17 +10741,17 @@ export declare const tileWidgets: {
10741
10741
  maxHeight?: number | undefined;
10742
10742
  }>, z.ZodObject<{
10743
10743
  type: z.ZodLiteral<"session_metric">;
10744
- key: z.ZodString;
10744
+ key: z.ZodEnum<["time_on_page", "page_views", "scroll_depth"]>;
10745
10745
  operator: z.ZodEnum<["gte", "lte", "eq", "gt", "lt"]>;
10746
10746
  threshold: z.ZodNumber;
10747
10747
  }, "strip", z.ZodTypeAny, {
10748
10748
  type: "session_metric";
10749
- key: string;
10749
+ key: "time_on_page" | "page_views" | "scroll_depth";
10750
10750
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
10751
10751
  threshold: number;
10752
10752
  }, {
10753
10753
  type: "session_metric";
10754
- key: string;
10754
+ key: "time_on_page" | "page_views" | "scroll_depth";
10755
10755
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
10756
10756
  threshold: number;
10757
10757
  }>, z.ZodObject<{
@@ -10800,7 +10800,7 @@ export declare const tileWidgets: {
10800
10800
  count: z.ZodNumber;
10801
10801
  withinMs: z.ZodOptional<z.ZodNumber>;
10802
10802
  counter: z.ZodOptional<z.ZodObject<{
10803
- events: z.ZodArray<z.ZodString, "many">;
10803
+ events: z.ZodArray<z.ZodEnum<["ui.click", "ui.scroll", "ui.input", "ui.change", "ui.submit", "ui.hover", "ui.idle", "ui.scroll_thrash", "ui.focus_bounce", "nav.page_view", "nav.page_leave", "behavior.rage_click", "behavior.hesitation", "behavior.confusion"]>, "many">;
10804
10804
  match: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
10805
10805
  equals: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
10806
10806
  contains: z.ZodOptional<z.ZodString>;
@@ -10812,13 +10812,13 @@ export declare const tileWidgets: {
10812
10812
  contains?: string | undefined;
10813
10813
  }>>>;
10814
10814
  }, "strip", z.ZodTypeAny, {
10815
- events: string[];
10815
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
10816
10816
  match?: Record<string, {
10817
10817
  equals?: string | number | boolean | undefined;
10818
10818
  contains?: string | undefined;
10819
10819
  }> | undefined;
10820
10820
  }, {
10821
- events: string[];
10821
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
10822
10822
  match?: Record<string, {
10823
10823
  equals?: string | number | boolean | undefined;
10824
10824
  contains?: string | undefined;
@@ -10831,7 +10831,7 @@ export declare const tileWidgets: {
10831
10831
  count: number;
10832
10832
  withinMs?: number | undefined;
10833
10833
  counter?: {
10834
- events: string[];
10834
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
10835
10835
  match?: Record<string, {
10836
10836
  equals?: string | number | boolean | undefined;
10837
10837
  contains?: string | undefined;
@@ -10844,7 +10844,7 @@ export declare const tileWidgets: {
10844
10844
  count: number;
10845
10845
  withinMs?: number | undefined;
10846
10846
  counter?: {
10847
- events: string[];
10847
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
10848
10848
  match?: Record<string, {
10849
10849
  equals?: string | number | boolean | undefined;
10850
10850
  contains?: string | undefined;
@@ -10879,7 +10879,7 @@ export declare const tileWidgets: {
10879
10879
  maxHeight?: number | undefined;
10880
10880
  } | {
10881
10881
  type: "session_metric";
10882
- key: string;
10882
+ key: "time_on_page" | "page_views" | "scroll_depth";
10883
10883
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
10884
10884
  threshold: number;
10885
10885
  } | {
@@ -10902,7 +10902,7 @@ export declare const tileWidgets: {
10902
10902
  count: number;
10903
10903
  withinMs?: number | undefined;
10904
10904
  counter?: {
10905
- events: string[];
10905
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
10906
10906
  match?: Record<string, {
10907
10907
  equals?: string | number | boolean | undefined;
10908
10908
  contains?: string | undefined;
@@ -10937,7 +10937,7 @@ export declare const tileWidgets: {
10937
10937
  maxHeight?: number | undefined;
10938
10938
  } | {
10939
10939
  type: "session_metric";
10940
- key: string;
10940
+ key: "time_on_page" | "page_views" | "scroll_depth";
10941
10941
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
10942
10942
  threshold: number;
10943
10943
  } | {
@@ -10960,7 +10960,7 @@ export declare const tileWidgets: {
10960
10960
  count: number;
10961
10961
  withinMs?: number | undefined;
10962
10962
  counter?: {
10963
- events: string[];
10963
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
10964
10964
  match?: Record<string, {
10965
10965
  equals?: string | number | boolean | undefined;
10966
10966
  contains?: string | undefined;
@@ -10999,7 +10999,7 @@ export declare const tileWidgets: {
10999
10999
  maxHeight?: number | undefined;
11000
11000
  } | {
11001
11001
  type: "session_metric";
11002
- key: string;
11002
+ key: "time_on_page" | "page_views" | "scroll_depth";
11003
11003
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
11004
11004
  threshold: number;
11005
11005
  } | {
@@ -11022,7 +11022,7 @@ export declare const tileWidgets: {
11022
11022
  count: number;
11023
11023
  withinMs?: number | undefined;
11024
11024
  counter?: {
11025
- events: string[];
11025
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
11026
11026
  match?: Record<string, {
11027
11027
  equals?: string | number | boolean | undefined;
11028
11028
  contains?: string | undefined;
@@ -11061,7 +11061,7 @@ export declare const tileWidgets: {
11061
11061
  maxHeight?: number | undefined;
11062
11062
  } | {
11063
11063
  type: "session_metric";
11064
- key: string;
11064
+ key: "time_on_page" | "page_views" | "scroll_depth";
11065
11065
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
11066
11066
  threshold: number;
11067
11067
  } | {
@@ -11084,7 +11084,7 @@ export declare const tileWidgets: {
11084
11084
  count: number;
11085
11085
  withinMs?: number | undefined;
11086
11086
  counter?: {
11087
- events: string[];
11087
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
11088
11088
  match?: Record<string, {
11089
11089
  equals?: string | number | boolean | undefined;
11090
11090
  contains?: string | undefined;
@@ -11366,17 +11366,17 @@ export declare const tileWidgets: {
11366
11366
  maxHeight?: number | undefined;
11367
11367
  }>, z.ZodObject<{
11368
11368
  type: z.ZodLiteral<"session_metric">;
11369
- key: z.ZodString;
11369
+ key: z.ZodEnum<["time_on_page", "page_views", "scroll_depth"]>;
11370
11370
  operator: z.ZodEnum<["gte", "lte", "eq", "gt", "lt"]>;
11371
11371
  threshold: z.ZodNumber;
11372
11372
  }, "strip", z.ZodTypeAny, {
11373
11373
  type: "session_metric";
11374
- key: string;
11374
+ key: "time_on_page" | "page_views" | "scroll_depth";
11375
11375
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
11376
11376
  threshold: number;
11377
11377
  }, {
11378
11378
  type: "session_metric";
11379
- key: string;
11379
+ key: "time_on_page" | "page_views" | "scroll_depth";
11380
11380
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
11381
11381
  threshold: number;
11382
11382
  }>, z.ZodObject<{
@@ -11425,7 +11425,7 @@ export declare const tileWidgets: {
11425
11425
  count: z.ZodNumber;
11426
11426
  withinMs: z.ZodOptional<z.ZodNumber>;
11427
11427
  counter: z.ZodOptional<z.ZodObject<{
11428
- events: z.ZodArray<z.ZodString, "many">;
11428
+ events: z.ZodArray<z.ZodEnum<["ui.click", "ui.scroll", "ui.input", "ui.change", "ui.submit", "ui.hover", "ui.idle", "ui.scroll_thrash", "ui.focus_bounce", "nav.page_view", "nav.page_leave", "behavior.rage_click", "behavior.hesitation", "behavior.confusion"]>, "many">;
11429
11429
  match: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
11430
11430
  equals: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
11431
11431
  contains: z.ZodOptional<z.ZodString>;
@@ -11437,13 +11437,13 @@ export declare const tileWidgets: {
11437
11437
  contains?: string | undefined;
11438
11438
  }>>>;
11439
11439
  }, "strip", z.ZodTypeAny, {
11440
- events: string[];
11440
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
11441
11441
  match?: Record<string, {
11442
11442
  equals?: string | number | boolean | undefined;
11443
11443
  contains?: string | undefined;
11444
11444
  }> | undefined;
11445
11445
  }, {
11446
- events: string[];
11446
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
11447
11447
  match?: Record<string, {
11448
11448
  equals?: string | number | boolean | undefined;
11449
11449
  contains?: string | undefined;
@@ -11456,7 +11456,7 @@ export declare const tileWidgets: {
11456
11456
  count: number;
11457
11457
  withinMs?: number | undefined;
11458
11458
  counter?: {
11459
- events: string[];
11459
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
11460
11460
  match?: Record<string, {
11461
11461
  equals?: string | number | boolean | undefined;
11462
11462
  contains?: string | undefined;
@@ -11469,7 +11469,7 @@ export declare const tileWidgets: {
11469
11469
  count: number;
11470
11470
  withinMs?: number | undefined;
11471
11471
  counter?: {
11472
- events: string[];
11472
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
11473
11473
  match?: Record<string, {
11474
11474
  equals?: string | number | boolean | undefined;
11475
11475
  contains?: string | undefined;
@@ -11504,7 +11504,7 @@ export declare const tileWidgets: {
11504
11504
  maxHeight?: number | undefined;
11505
11505
  } | {
11506
11506
  type: "session_metric";
11507
- key: string;
11507
+ key: "time_on_page" | "page_views" | "scroll_depth";
11508
11508
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
11509
11509
  threshold: number;
11510
11510
  } | {
@@ -11527,7 +11527,7 @@ export declare const tileWidgets: {
11527
11527
  count: number;
11528
11528
  withinMs?: number | undefined;
11529
11529
  counter?: {
11530
- events: string[];
11530
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
11531
11531
  match?: Record<string, {
11532
11532
  equals?: string | number | boolean | undefined;
11533
11533
  contains?: string | undefined;
@@ -11562,7 +11562,7 @@ export declare const tileWidgets: {
11562
11562
  maxHeight?: number | undefined;
11563
11563
  } | {
11564
11564
  type: "session_metric";
11565
- key: string;
11565
+ key: "time_on_page" | "page_views" | "scroll_depth";
11566
11566
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
11567
11567
  threshold: number;
11568
11568
  } | {
@@ -11585,7 +11585,7 @@ export declare const tileWidgets: {
11585
11585
  count: number;
11586
11586
  withinMs?: number | undefined;
11587
11587
  counter?: {
11588
- events: string[];
11588
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
11589
11589
  match?: Record<string, {
11590
11590
  equals?: string | number | boolean | undefined;
11591
11591
  contains?: string | undefined;
@@ -11624,7 +11624,7 @@ export declare const tileWidgets: {
11624
11624
  maxHeight?: number | undefined;
11625
11625
  } | {
11626
11626
  type: "session_metric";
11627
- key: string;
11627
+ key: "time_on_page" | "page_views" | "scroll_depth";
11628
11628
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
11629
11629
  threshold: number;
11630
11630
  } | {
@@ -11647,7 +11647,7 @@ export declare const tileWidgets: {
11647
11647
  count: number;
11648
11648
  withinMs?: number | undefined;
11649
11649
  counter?: {
11650
- events: string[];
11650
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
11651
11651
  match?: Record<string, {
11652
11652
  equals?: string | number | boolean | undefined;
11653
11653
  contains?: string | undefined;
@@ -11686,7 +11686,7 @@ export declare const tileWidgets: {
11686
11686
  maxHeight?: number | undefined;
11687
11687
  } | {
11688
11688
  type: "session_metric";
11689
- key: string;
11689
+ key: "time_on_page" | "page_views" | "scroll_depth";
11690
11690
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
11691
11691
  threshold: number;
11692
11692
  } | {
@@ -11709,7 +11709,7 @@ export declare const tileWidgets: {
11709
11709
  count: number;
11710
11710
  withinMs?: number | undefined;
11711
11711
  counter?: {
11712
- events: string[];
11712
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
11713
11713
  match?: Record<string, {
11714
11714
  equals?: string | number | boolean | undefined;
11715
11715
  contains?: string | undefined;
@@ -11846,7 +11846,7 @@ export declare const tileWidgets: {
11846
11846
  maxHeight?: number | undefined;
11847
11847
  } | {
11848
11848
  type: "session_metric";
11849
- key: string;
11849
+ key: "time_on_page" | "page_views" | "scroll_depth";
11850
11850
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
11851
11851
  threshold: number;
11852
11852
  } | {
@@ -11869,7 +11869,7 @@ export declare const tileWidgets: {
11869
11869
  count: number;
11870
11870
  withinMs?: number | undefined;
11871
11871
  counter?: {
11872
- events: string[];
11872
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
11873
11873
  match?: Record<string, {
11874
11874
  equals?: string | number | boolean | undefined;
11875
11875
  contains?: string | undefined;
@@ -11961,7 +11961,7 @@ export declare const tileWidgets: {
11961
11961
  maxHeight?: number | undefined;
11962
11962
  } | {
11963
11963
  type: "session_metric";
11964
- key: string;
11964
+ key: "time_on_page" | "page_views" | "scroll_depth";
11965
11965
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
11966
11966
  threshold: number;
11967
11967
  } | {
@@ -11984,7 +11984,7 @@ export declare const tileWidgets: {
11984
11984
  count: number;
11985
11985
  withinMs?: number | undefined;
11986
11986
  counter?: {
11987
- events: string[];
11987
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
11988
11988
  match?: Record<string, {
11989
11989
  equals?: string | number | boolean | undefined;
11990
11990
  contains?: string | undefined;
@@ -12076,7 +12076,7 @@ export declare const tileWidgets: {
12076
12076
  maxHeight?: number | undefined;
12077
12077
  } | {
12078
12078
  type: "session_metric";
12079
- key: string;
12079
+ key: "time_on_page" | "page_views" | "scroll_depth";
12080
12080
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
12081
12081
  threshold: number;
12082
12082
  } | {
@@ -12099,7 +12099,7 @@ export declare const tileWidgets: {
12099
12099
  count: number;
12100
12100
  withinMs?: number | undefined;
12101
12101
  counter?: {
12102
- events: string[];
12102
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
12103
12103
  match?: Record<string, {
12104
12104
  equals?: string | number | boolean | undefined;
12105
12105
  contains?: string | undefined;
@@ -12191,7 +12191,7 @@ export declare const tileWidgets: {
12191
12191
  maxHeight?: number | undefined;
12192
12192
  } | {
12193
12193
  type: "session_metric";
12194
- key: string;
12194
+ key: "time_on_page" | "page_views" | "scroll_depth";
12195
12195
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
12196
12196
  threshold: number;
12197
12197
  } | {
@@ -12214,7 +12214,7 @@ export declare const tileWidgets: {
12214
12214
  count: number;
12215
12215
  withinMs?: number | undefined;
12216
12216
  counter?: {
12217
- events: string[];
12217
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
12218
12218
  match?: Record<string, {
12219
12219
  equals?: string | number | boolean | undefined;
12220
12220
  contains?: string | undefined;
@@ -12310,7 +12310,7 @@ export declare const tileWidgets: {
12310
12310
  maxHeight?: number | undefined;
12311
12311
  } | {
12312
12312
  type: "session_metric";
12313
- key: string;
12313
+ key: "time_on_page" | "page_views" | "scroll_depth";
12314
12314
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
12315
12315
  threshold: number;
12316
12316
  } | {
@@ -12333,7 +12333,7 @@ export declare const tileWidgets: {
12333
12333
  count: number;
12334
12334
  withinMs?: number | undefined;
12335
12335
  counter?: {
12336
- events: string[];
12336
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
12337
12337
  match?: Record<string, {
12338
12338
  equals?: string | number | boolean | undefined;
12339
12339
  contains?: string | undefined;
@@ -12397,7 +12397,7 @@ export declare const tileWidgets: {
12397
12397
  maxHeight?: number | undefined;
12398
12398
  } | {
12399
12399
  type: "session_metric";
12400
- key: string;
12400
+ key: "time_on_page" | "page_views" | "scroll_depth";
12401
12401
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
12402
12402
  threshold: number;
12403
12403
  } | {
@@ -12420,7 +12420,7 @@ export declare const tileWidgets: {
12420
12420
  count: number;
12421
12421
  withinMs?: number | undefined;
12422
12422
  counter?: {
12423
- events: string[];
12423
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
12424
12424
  match?: Record<string, {
12425
12425
  equals?: string | number | boolean | undefined;
12426
12426
  contains?: string | undefined;
@@ -12510,7 +12510,7 @@ export declare const tileWidgets: {
12510
12510
  maxHeight?: number | undefined;
12511
12511
  } | {
12512
12512
  type: "session_metric";
12513
- key: string;
12513
+ key: "time_on_page" | "page_views" | "scroll_depth";
12514
12514
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
12515
12515
  threshold: number;
12516
12516
  } | {
@@ -12533,7 +12533,7 @@ export declare const tileWidgets: {
12533
12533
  count: number;
12534
12534
  withinMs?: number | undefined;
12535
12535
  counter?: {
12536
- events: string[];
12536
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
12537
12537
  match?: Record<string, {
12538
12538
  equals?: string | number | boolean | undefined;
12539
12539
  contains?: string | undefined;
@@ -12597,7 +12597,7 @@ export declare const tileWidgets: {
12597
12597
  maxHeight?: number | undefined;
12598
12598
  } | {
12599
12599
  type: "session_metric";
12600
- key: string;
12600
+ key: "time_on_page" | "page_views" | "scroll_depth";
12601
12601
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
12602
12602
  threshold: number;
12603
12603
  } | {
@@ -12620,7 +12620,7 @@ export declare const tileWidgets: {
12620
12620
  count: number;
12621
12621
  withinMs?: number | undefined;
12622
12622
  counter?: {
12623
- events: string[];
12623
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
12624
12624
  match?: Record<string, {
12625
12625
  equals?: string | number | boolean | undefined;
12626
12626
  contains?: string | undefined;
@@ -12714,7 +12714,7 @@ export declare const tileWidgets: {
12714
12714
  maxHeight?: number | undefined;
12715
12715
  } | {
12716
12716
  type: "session_metric";
12717
- key: string;
12717
+ key: "time_on_page" | "page_views" | "scroll_depth";
12718
12718
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
12719
12719
  threshold: number;
12720
12720
  } | {
@@ -12737,7 +12737,7 @@ export declare const tileWidgets: {
12737
12737
  count: number;
12738
12738
  withinMs?: number | undefined;
12739
12739
  counter?: {
12740
- events: string[];
12740
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
12741
12741
  match?: Record<string, {
12742
12742
  equals?: string | number | boolean | undefined;
12743
12743
  contains?: string | undefined;
@@ -12839,7 +12839,7 @@ export declare const tileWidgets: {
12839
12839
  maxHeight?: number | undefined;
12840
12840
  } | {
12841
12841
  type: "session_metric";
12842
- key: string;
12842
+ key: "time_on_page" | "page_views" | "scroll_depth";
12843
12843
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
12844
12844
  threshold: number;
12845
12845
  } | {
@@ -12862,7 +12862,7 @@ export declare const tileWidgets: {
12862
12862
  count: number;
12863
12863
  withinMs?: number | undefined;
12864
12864
  counter?: {
12865
- events: string[];
12865
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
12866
12866
  match?: Record<string, {
12867
12867
  equals?: string | number | boolean | undefined;
12868
12868
  contains?: string | undefined;
@@ -12926,7 +12926,7 @@ export declare const tileWidgets: {
12926
12926
  maxHeight?: number | undefined;
12927
12927
  } | {
12928
12928
  type: "session_metric";
12929
- key: string;
12929
+ key: "time_on_page" | "page_views" | "scroll_depth";
12930
12930
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
12931
12931
  threshold: number;
12932
12932
  } | {
@@ -12949,7 +12949,7 @@ export declare const tileWidgets: {
12949
12949
  count: number;
12950
12950
  withinMs?: number | undefined;
12951
12951
  counter?: {
12952
- events: string[];
12952
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
12953
12953
  match?: Record<string, {
12954
12954
  equals?: string | number | boolean | undefined;
12955
12955
  contains?: string | undefined;
@@ -13044,7 +13044,7 @@ export declare const tileWidgets: {
13044
13044
  maxHeight?: number | undefined;
13045
13045
  } | {
13046
13046
  type: "session_metric";
13047
- key: string;
13047
+ key: "time_on_page" | "page_views" | "scroll_depth";
13048
13048
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
13049
13049
  threshold: number;
13050
13050
  } | {
@@ -13067,7 +13067,7 @@ export declare const tileWidgets: {
13067
13067
  count: number;
13068
13068
  withinMs?: number | undefined;
13069
13069
  counter?: {
13070
- events: string[];
13070
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
13071
13071
  match?: Record<string, {
13072
13072
  equals?: string | number | boolean | undefined;
13073
13073
  contains?: string | undefined;
@@ -13169,7 +13169,7 @@ export declare const tileWidgets: {
13169
13169
  maxHeight?: number | undefined;
13170
13170
  } | {
13171
13171
  type: "session_metric";
13172
- key: string;
13172
+ key: "time_on_page" | "page_views" | "scroll_depth";
13173
13173
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
13174
13174
  threshold: number;
13175
13175
  } | {
@@ -13192,7 +13192,7 @@ export declare const tileWidgets: {
13192
13192
  count: number;
13193
13193
  withinMs?: number | undefined;
13194
13194
  counter?: {
13195
- events: string[];
13195
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
13196
13196
  match?: Record<string, {
13197
13197
  equals?: string | number | boolean | undefined;
13198
13198
  contains?: string | undefined;
@@ -13256,7 +13256,7 @@ export declare const tileWidgets: {
13256
13256
  maxHeight?: number | undefined;
13257
13257
  } | {
13258
13258
  type: "session_metric";
13259
- key: string;
13259
+ key: "time_on_page" | "page_views" | "scroll_depth";
13260
13260
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
13261
13261
  threshold: number;
13262
13262
  } | {
@@ -13279,7 +13279,7 @@ export declare const tileWidgets: {
13279
13279
  count: number;
13280
13280
  withinMs?: number | undefined;
13281
13281
  counter?: {
13282
- events: string[];
13282
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
13283
13283
  match?: Record<string, {
13284
13284
  equals?: string | number | boolean | undefined;
13285
13285
  contains?: string | undefined;