@syntrologie/adapt-faq 2.13.0 → 2.15.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/FAQWidgetLit.d.ts +85 -0
- package/dist/FAQWidgetLit.d.ts.map +1 -0
- package/dist/FAQWidgetLit.js +534 -0
- package/dist/editor-lit.d.ts +37 -0
- package/dist/editor-lit.d.ts.map +1 -0
- package/dist/editor-lit.js +195 -0
- package/dist/editor.d.ts.map +1 -1
- package/dist/editor.js +3 -3
- package/dist/faq-types.d.ts +4 -0
- package/dist/faq-types.d.ts.map +1 -1
- package/dist/runtime-lit.d.ts +85 -0
- package/dist/runtime-lit.d.ts.map +1 -0
- package/dist/runtime-lit.js +94 -0
- package/dist/runtime.d.ts +17 -2
- package/dist/runtime.d.ts.map +1 -1
- package/dist/runtime.js +28 -0
- package/dist/schema.d.ts +384 -384
- package/dist/schema.d.ts.map +1 -1
- package/node_modules/@syntrologie/sdk-contracts/dist/index.d.ts +1 -1
- package/node_modules/@syntrologie/sdk-contracts/dist/index.js +5 -3
- package/node_modules/@syntrologie/sdk-contracts/dist/schemas.d.ts +150 -79
- package/node_modules/@syntrologie/sdk-contracts/dist/schemas.js +266 -67
- package/package.json +12 -1
package/dist/schema.d.ts
CHANGED
|
@@ -39,15 +39,15 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
|
|
|
39
39
|
type: "image" | "video";
|
|
40
40
|
id: string;
|
|
41
41
|
src: string;
|
|
42
|
-
height?: number | undefined;
|
|
43
42
|
width?: number | undefined;
|
|
43
|
+
height?: number | undefined;
|
|
44
44
|
alt?: string | undefined;
|
|
45
45
|
}, {
|
|
46
46
|
type: "image" | "video";
|
|
47
47
|
id: string;
|
|
48
48
|
src: string;
|
|
49
|
-
height?: number | undefined;
|
|
50
49
|
width?: number | undefined;
|
|
50
|
+
height?: number | undefined;
|
|
51
51
|
alt?: string | undefined;
|
|
52
52
|
}>, "many">>;
|
|
53
53
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -57,8 +57,8 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
|
|
|
57
57
|
type: "image" | "video";
|
|
58
58
|
id: string;
|
|
59
59
|
src: string;
|
|
60
|
-
height?: number | undefined;
|
|
61
60
|
width?: number | undefined;
|
|
61
|
+
height?: number | undefined;
|
|
62
62
|
alt?: string | undefined;
|
|
63
63
|
}[] | undefined;
|
|
64
64
|
}, {
|
|
@@ -68,8 +68,8 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
|
|
|
68
68
|
type: "image" | "video";
|
|
69
69
|
id: string;
|
|
70
70
|
src: string;
|
|
71
|
-
height?: number | undefined;
|
|
72
71
|
width?: number | undefined;
|
|
72
|
+
height?: number | undefined;
|
|
73
73
|
alt?: string | undefined;
|
|
74
74
|
}[] | undefined;
|
|
75
75
|
}>]>;
|
|
@@ -106,8 +106,8 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
|
|
|
106
106
|
type: "image" | "video";
|
|
107
107
|
id: string;
|
|
108
108
|
src: string;
|
|
109
|
-
height?: number | undefined;
|
|
110
109
|
width?: number | undefined;
|
|
110
|
+
height?: number | undefined;
|
|
111
111
|
alt?: string | undefined;
|
|
112
112
|
}[] | undefined;
|
|
113
113
|
};
|
|
@@ -132,8 +132,8 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
|
|
|
132
132
|
type: "image" | "video";
|
|
133
133
|
id: string;
|
|
134
134
|
src: string;
|
|
135
|
-
height?: number | undefined;
|
|
136
135
|
width?: number | undefined;
|
|
136
|
+
height?: number | undefined;
|
|
137
137
|
alt?: string | undefined;
|
|
138
138
|
}[] | undefined;
|
|
139
139
|
};
|
|
@@ -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.
|
|
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:
|
|
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:
|
|
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.
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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;
|
|
@@ -660,8 +660,8 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
|
|
|
660
660
|
type: "image" | "video";
|
|
661
661
|
id: string;
|
|
662
662
|
src: string;
|
|
663
|
-
height?: number | undefined;
|
|
664
663
|
width?: number | undefined;
|
|
664
|
+
height?: number | undefined;
|
|
665
665
|
alt?: string | undefined;
|
|
666
666
|
}[] | undefined;
|
|
667
667
|
};
|
|
@@ -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:
|
|
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:
|
|
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;
|
|
@@ -775,8 +775,8 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
|
|
|
775
775
|
type: "image" | "video";
|
|
776
776
|
id: string;
|
|
777
777
|
src: string;
|
|
778
|
-
height?: number | undefined;
|
|
779
778
|
width?: number | undefined;
|
|
779
|
+
height?: number | undefined;
|
|
780
780
|
alt?: string | undefined;
|
|
781
781
|
}[] | undefined;
|
|
782
782
|
};
|
|
@@ -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:
|
|
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:
|
|
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;
|
|
@@ -890,8 +890,8 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
|
|
|
890
890
|
type: "image" | "video";
|
|
891
891
|
id: string;
|
|
892
892
|
src: string;
|
|
893
|
-
height?: number | undefined;
|
|
894
893
|
width?: number | undefined;
|
|
894
|
+
height?: number | undefined;
|
|
895
895
|
alt?: string | undefined;
|
|
896
896
|
}[] | undefined;
|
|
897
897
|
};
|
|
@@ -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:
|
|
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:
|
|
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;
|
|
@@ -1005,8 +1005,8 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1005
1005
|
type: "image" | "video";
|
|
1006
1006
|
id: string;
|
|
1007
1007
|
src: string;
|
|
1008
|
-
height?: number | undefined;
|
|
1009
1008
|
width?: number | undefined;
|
|
1009
|
+
height?: number | undefined;
|
|
1010
1010
|
alt?: string | undefined;
|
|
1011
1011
|
}[] | undefined;
|
|
1012
1012
|
};
|
|
@@ -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:
|
|
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:
|
|
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;
|
|
@@ -1153,15 +1153,15 @@ export declare const configSchema: z.ZodObject<{
|
|
|
1153
1153
|
type: "image" | "video";
|
|
1154
1154
|
id: string;
|
|
1155
1155
|
src: string;
|
|
1156
|
-
height?: number | undefined;
|
|
1157
1156
|
width?: number | undefined;
|
|
1157
|
+
height?: number | undefined;
|
|
1158
1158
|
alt?: string | undefined;
|
|
1159
1159
|
}, {
|
|
1160
1160
|
type: "image" | "video";
|
|
1161
1161
|
id: string;
|
|
1162
1162
|
src: string;
|
|
1163
|
-
height?: number | undefined;
|
|
1164
1163
|
width?: number | undefined;
|
|
1164
|
+
height?: number | undefined;
|
|
1165
1165
|
alt?: string | undefined;
|
|
1166
1166
|
}>, "many">>;
|
|
1167
1167
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1171,8 +1171,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
1171
1171
|
type: "image" | "video";
|
|
1172
1172
|
id: string;
|
|
1173
1173
|
src: string;
|
|
1174
|
-
height?: number | undefined;
|
|
1175
1174
|
width?: number | undefined;
|
|
1175
|
+
height?: number | undefined;
|
|
1176
1176
|
alt?: string | undefined;
|
|
1177
1177
|
}[] | undefined;
|
|
1178
1178
|
}, {
|
|
@@ -1182,8 +1182,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
1182
1182
|
type: "image" | "video";
|
|
1183
1183
|
id: string;
|
|
1184
1184
|
src: string;
|
|
1185
|
-
height?: number | undefined;
|
|
1186
1185
|
width?: number | undefined;
|
|
1186
|
+
height?: number | undefined;
|
|
1187
1187
|
alt?: string | undefined;
|
|
1188
1188
|
}[] | undefined;
|
|
1189
1189
|
}>]>;
|
|
@@ -1220,8 +1220,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
1220
1220
|
type: "image" | "video";
|
|
1221
1221
|
id: string;
|
|
1222
1222
|
src: string;
|
|
1223
|
-
height?: number | undefined;
|
|
1224
1223
|
width?: number | undefined;
|
|
1224
|
+
height?: number | undefined;
|
|
1225
1225
|
alt?: string | undefined;
|
|
1226
1226
|
}[] | undefined;
|
|
1227
1227
|
};
|
|
@@ -1246,8 +1246,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
1246
1246
|
type: "image" | "video";
|
|
1247
1247
|
id: string;
|
|
1248
1248
|
src: string;
|
|
1249
|
-
height?: number | undefined;
|
|
1250
1249
|
width?: number | undefined;
|
|
1250
|
+
height?: number | undefined;
|
|
1251
1251
|
alt?: string | undefined;
|
|
1252
1252
|
}[] | undefined;
|
|
1253
1253
|
};
|
|
@@ -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.
|
|
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:
|
|
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:
|
|
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.
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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;
|
|
@@ -1774,8 +1774,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
1774
1774
|
type: "image" | "video";
|
|
1775
1775
|
id: string;
|
|
1776
1776
|
src: string;
|
|
1777
|
-
height?: number | undefined;
|
|
1778
1777
|
width?: number | undefined;
|
|
1778
|
+
height?: number | undefined;
|
|
1779
1779
|
alt?: string | undefined;
|
|
1780
1780
|
}[] | undefined;
|
|
1781
1781
|
};
|
|
@@ -1819,7 +1819,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
1819
1819
|
maxHeight?: number | undefined;
|
|
1820
1820
|
} | {
|
|
1821
1821
|
type: "session_metric";
|
|
1822
|
-
key:
|
|
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:
|
|
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;
|
|
@@ -1889,8 +1889,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
1889
1889
|
type: "image" | "video";
|
|
1890
1890
|
id: string;
|
|
1891
1891
|
src: string;
|
|
1892
|
-
height?: number | undefined;
|
|
1893
1892
|
width?: number | undefined;
|
|
1893
|
+
height?: number | undefined;
|
|
1894
1894
|
alt?: string | undefined;
|
|
1895
1895
|
}[] | undefined;
|
|
1896
1896
|
};
|
|
@@ -1934,7 +1934,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
1934
1934
|
maxHeight?: number | undefined;
|
|
1935
1935
|
} | {
|
|
1936
1936
|
type: "session_metric";
|
|
1937
|
-
key:
|
|
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:
|
|
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;
|
|
@@ -2004,8 +2004,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2004
2004
|
type: "image" | "video";
|
|
2005
2005
|
id: string;
|
|
2006
2006
|
src: string;
|
|
2007
|
-
height?: number | undefined;
|
|
2008
2007
|
width?: number | undefined;
|
|
2008
|
+
height?: number | undefined;
|
|
2009
2009
|
alt?: string | undefined;
|
|
2010
2010
|
}[] | undefined;
|
|
2011
2011
|
};
|
|
@@ -2049,7 +2049,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2049
2049
|
maxHeight?: number | undefined;
|
|
2050
2050
|
} | {
|
|
2051
2051
|
type: "session_metric";
|
|
2052
|
-
key:
|
|
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:
|
|
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;
|
|
@@ -2119,8 +2119,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2119
2119
|
type: "image" | "video";
|
|
2120
2120
|
id: string;
|
|
2121
2121
|
src: string;
|
|
2122
|
-
height?: number | undefined;
|
|
2123
2122
|
width?: number | undefined;
|
|
2123
|
+
height?: number | undefined;
|
|
2124
2124
|
alt?: string | undefined;
|
|
2125
2125
|
}[] | undefined;
|
|
2126
2126
|
};
|
|
@@ -2164,7 +2164,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2164
2164
|
maxHeight?: number | undefined;
|
|
2165
2165
|
} | {
|
|
2166
2166
|
type: "session_metric";
|
|
2167
|
-
key:
|
|
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:
|
|
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.
|
|
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:
|
|
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:
|
|
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.
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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;
|
|
@@ -2762,15 +2762,15 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2762
2762
|
type: "image" | "video";
|
|
2763
2763
|
id: string;
|
|
2764
2764
|
src: string;
|
|
2765
|
-
height?: number | undefined;
|
|
2766
2765
|
width?: number | undefined;
|
|
2766
|
+
height?: number | undefined;
|
|
2767
2767
|
alt?: string | undefined;
|
|
2768
2768
|
}, {
|
|
2769
2769
|
type: "image" | "video";
|
|
2770
2770
|
id: string;
|
|
2771
2771
|
src: string;
|
|
2772
|
-
height?: number | undefined;
|
|
2773
2772
|
width?: number | undefined;
|
|
2773
|
+
height?: number | undefined;
|
|
2774
2774
|
alt?: string | undefined;
|
|
2775
2775
|
}>, "many">>;
|
|
2776
2776
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2780,8 +2780,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2780
2780
|
type: "image" | "video";
|
|
2781
2781
|
id: string;
|
|
2782
2782
|
src: string;
|
|
2783
|
-
height?: number | undefined;
|
|
2784
2783
|
width?: number | undefined;
|
|
2784
|
+
height?: number | undefined;
|
|
2785
2785
|
alt?: string | undefined;
|
|
2786
2786
|
}[] | undefined;
|
|
2787
2787
|
}, {
|
|
@@ -2791,8 +2791,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2791
2791
|
type: "image" | "video";
|
|
2792
2792
|
id: string;
|
|
2793
2793
|
src: string;
|
|
2794
|
-
height?: number | undefined;
|
|
2795
2794
|
width?: number | undefined;
|
|
2795
|
+
height?: number | undefined;
|
|
2796
2796
|
alt?: string | undefined;
|
|
2797
2797
|
}[] | undefined;
|
|
2798
2798
|
}>]>;
|
|
@@ -2829,8 +2829,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2829
2829
|
type: "image" | "video";
|
|
2830
2830
|
id: string;
|
|
2831
2831
|
src: string;
|
|
2832
|
-
height?: number | undefined;
|
|
2833
2832
|
width?: number | undefined;
|
|
2833
|
+
height?: number | undefined;
|
|
2834
2834
|
alt?: string | undefined;
|
|
2835
2835
|
}[] | undefined;
|
|
2836
2836
|
};
|
|
@@ -2855,8 +2855,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2855
2855
|
type: "image" | "video";
|
|
2856
2856
|
id: string;
|
|
2857
2857
|
src: string;
|
|
2858
|
-
height?: number | undefined;
|
|
2859
2858
|
width?: number | undefined;
|
|
2859
|
+
height?: number | undefined;
|
|
2860
2860
|
alt?: string | undefined;
|
|
2861
2861
|
}[] | undefined;
|
|
2862
2862
|
};
|
|
@@ -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.
|
|
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:
|
|
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:
|
|
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.
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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;
|
|
@@ -3383,8 +3383,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3383
3383
|
type: "image" | "video";
|
|
3384
3384
|
id: string;
|
|
3385
3385
|
src: string;
|
|
3386
|
-
height?: number | undefined;
|
|
3387
3386
|
width?: number | undefined;
|
|
3387
|
+
height?: number | undefined;
|
|
3388
3388
|
alt?: string | undefined;
|
|
3389
3389
|
}[] | undefined;
|
|
3390
3390
|
};
|
|
@@ -3428,7 +3428,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3428
3428
|
maxHeight?: number | undefined;
|
|
3429
3429
|
} | {
|
|
3430
3430
|
type: "session_metric";
|
|
3431
|
-
key:
|
|
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:
|
|
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;
|
|
@@ -3498,8 +3498,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3498
3498
|
type: "image" | "video";
|
|
3499
3499
|
id: string;
|
|
3500
3500
|
src: string;
|
|
3501
|
-
height?: number | undefined;
|
|
3502
3501
|
width?: number | undefined;
|
|
3502
|
+
height?: number | undefined;
|
|
3503
3503
|
alt?: string | undefined;
|
|
3504
3504
|
}[] | undefined;
|
|
3505
3505
|
};
|
|
@@ -3543,7 +3543,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3543
3543
|
maxHeight?: number | undefined;
|
|
3544
3544
|
} | {
|
|
3545
3545
|
type: "session_metric";
|
|
3546
|
-
key:
|
|
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:
|
|
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;
|
|
@@ -3613,8 +3613,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3613
3613
|
type: "image" | "video";
|
|
3614
3614
|
id: string;
|
|
3615
3615
|
src: string;
|
|
3616
|
-
height?: number | undefined;
|
|
3617
3616
|
width?: number | undefined;
|
|
3617
|
+
height?: number | undefined;
|
|
3618
3618
|
alt?: string | undefined;
|
|
3619
3619
|
}[] | undefined;
|
|
3620
3620
|
};
|
|
@@ -3658,7 +3658,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3658
3658
|
maxHeight?: number | undefined;
|
|
3659
3659
|
} | {
|
|
3660
3660
|
type: "session_metric";
|
|
3661
|
-
key:
|
|
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:
|
|
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;
|
|
@@ -3728,8 +3728,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3728
3728
|
type: "image" | "video";
|
|
3729
3729
|
id: string;
|
|
3730
3730
|
src: string;
|
|
3731
|
-
height?: number | undefined;
|
|
3732
3731
|
width?: number | undefined;
|
|
3732
|
+
height?: number | undefined;
|
|
3733
3733
|
alt?: string | undefined;
|
|
3734
3734
|
}[] | undefined;
|
|
3735
3735
|
};
|
|
@@ -3773,7 +3773,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3773
3773
|
maxHeight?: number | undefined;
|
|
3774
3774
|
} | {
|
|
3775
3775
|
type: "session_metric";
|
|
3776
|
-
key:
|
|
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:
|
|
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;
|
|
@@ -3847,8 +3847,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3847
3847
|
type: "image" | "video";
|
|
3848
3848
|
id: string;
|
|
3849
3849
|
src: string;
|
|
3850
|
-
height?: number | undefined;
|
|
3851
3850
|
width?: number | undefined;
|
|
3851
|
+
height?: number | undefined;
|
|
3852
3852
|
alt?: string | undefined;
|
|
3853
3853
|
}[] | undefined;
|
|
3854
3854
|
};
|
|
@@ -3892,7 +3892,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3892
3892
|
maxHeight?: number | undefined;
|
|
3893
3893
|
} | {
|
|
3894
3894
|
type: "session_metric";
|
|
3895
|
-
key:
|
|
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:
|
|
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:
|
|
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:
|
|
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;
|
|
@@ -4047,8 +4047,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4047
4047
|
type: "image" | "video";
|
|
4048
4048
|
id: string;
|
|
4049
4049
|
src: string;
|
|
4050
|
-
height?: number | undefined;
|
|
4051
4050
|
width?: number | undefined;
|
|
4051
|
+
height?: number | undefined;
|
|
4052
4052
|
alt?: string | undefined;
|
|
4053
4053
|
}[] | undefined;
|
|
4054
4054
|
};
|
|
@@ -4092,7 +4092,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4092
4092
|
maxHeight?: number | undefined;
|
|
4093
4093
|
} | {
|
|
4094
4094
|
type: "session_metric";
|
|
4095
|
-
key:
|
|
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:
|
|
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:
|
|
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:
|
|
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;
|
|
@@ -4251,8 +4251,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4251
4251
|
type: "image" | "video";
|
|
4252
4252
|
id: string;
|
|
4253
4253
|
src: string;
|
|
4254
|
-
height?: number | undefined;
|
|
4255
4254
|
width?: number | undefined;
|
|
4255
|
+
height?: number | undefined;
|
|
4256
4256
|
alt?: string | undefined;
|
|
4257
4257
|
}[] | undefined;
|
|
4258
4258
|
};
|
|
@@ -4296,7 +4296,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4296
4296
|
maxHeight?: number | undefined;
|
|
4297
4297
|
} | {
|
|
4298
4298
|
type: "session_metric";
|
|
4299
|
-
key:
|
|
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:
|
|
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;
|
|
@@ -4376,8 +4376,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4376
4376
|
type: "image" | "video";
|
|
4377
4377
|
id: string;
|
|
4378
4378
|
src: string;
|
|
4379
|
-
height?: number | undefined;
|
|
4380
4379
|
width?: number | undefined;
|
|
4380
|
+
height?: number | undefined;
|
|
4381
4381
|
alt?: string | undefined;
|
|
4382
4382
|
}[] | undefined;
|
|
4383
4383
|
};
|
|
@@ -4421,7 +4421,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4421
4421
|
maxHeight?: number | undefined;
|
|
4422
4422
|
} | {
|
|
4423
4423
|
type: "session_metric";
|
|
4424
|
-
key:
|
|
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:
|
|
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:
|
|
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:
|
|
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;
|
|
@@ -4581,8 +4581,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4581
4581
|
type: "image" | "video";
|
|
4582
4582
|
id: string;
|
|
4583
4583
|
src: string;
|
|
4584
|
-
height?: number | undefined;
|
|
4585
4584
|
width?: number | undefined;
|
|
4585
|
+
height?: number | undefined;
|
|
4586
4586
|
alt?: string | undefined;
|
|
4587
4587
|
}[] | undefined;
|
|
4588
4588
|
};
|
|
@@ -4626,7 +4626,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4626
4626
|
maxHeight?: number | undefined;
|
|
4627
4627
|
} | {
|
|
4628
4628
|
type: "session_metric";
|
|
4629
|
-
key:
|
|
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:
|
|
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;
|
|
@@ -4706,8 +4706,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4706
4706
|
type: "image" | "video";
|
|
4707
4707
|
id: string;
|
|
4708
4708
|
src: string;
|
|
4709
|
-
height?: number | undefined;
|
|
4710
4709
|
width?: number | undefined;
|
|
4710
|
+
height?: number | undefined;
|
|
4711
4711
|
alt?: string | undefined;
|
|
4712
4712
|
}[] | undefined;
|
|
4713
4713
|
};
|
|
@@ -4751,7 +4751,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4751
4751
|
maxHeight?: number | undefined;
|
|
4752
4752
|
} | {
|
|
4753
4753
|
type: "session_metric";
|
|
4754
|
-
key:
|
|
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:
|
|
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:
|
|
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:
|
|
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;
|
|
@@ -4998,15 +4998,15 @@ export declare const UpdateFaqSchema: z.ZodObject<{
|
|
|
4998
4998
|
type: "image" | "video";
|
|
4999
4999
|
id: string;
|
|
5000
5000
|
src: string;
|
|
5001
|
-
height?: number | undefined;
|
|
5002
5001
|
width?: number | undefined;
|
|
5002
|
+
height?: number | undefined;
|
|
5003
5003
|
alt?: string | undefined;
|
|
5004
5004
|
}, {
|
|
5005
5005
|
type: "image" | "video";
|
|
5006
5006
|
id: string;
|
|
5007
5007
|
src: string;
|
|
5008
|
-
height?: number | undefined;
|
|
5009
5008
|
width?: number | undefined;
|
|
5009
|
+
height?: number | undefined;
|
|
5010
5010
|
alt?: string | undefined;
|
|
5011
5011
|
}>, "many">>;
|
|
5012
5012
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5016,8 +5016,8 @@ export declare const UpdateFaqSchema: z.ZodObject<{
|
|
|
5016
5016
|
type: "image" | "video";
|
|
5017
5017
|
id: string;
|
|
5018
5018
|
src: string;
|
|
5019
|
-
height?: number | undefined;
|
|
5020
5019
|
width?: number | undefined;
|
|
5020
|
+
height?: number | undefined;
|
|
5021
5021
|
alt?: string | undefined;
|
|
5022
5022
|
}[] | undefined;
|
|
5023
5023
|
}, {
|
|
@@ -5027,8 +5027,8 @@ export declare const UpdateFaqSchema: z.ZodObject<{
|
|
|
5027
5027
|
type: "image" | "video";
|
|
5028
5028
|
id: string;
|
|
5029
5029
|
src: string;
|
|
5030
|
-
height?: number | undefined;
|
|
5031
5030
|
width?: number | undefined;
|
|
5031
|
+
height?: number | undefined;
|
|
5032
5032
|
alt?: string | undefined;
|
|
5033
5033
|
}[] | undefined;
|
|
5034
5034
|
}>]>;
|
|
@@ -5065,8 +5065,8 @@ export declare const UpdateFaqSchema: z.ZodObject<{
|
|
|
5065
5065
|
type: "image" | "video";
|
|
5066
5066
|
id: string;
|
|
5067
5067
|
src: string;
|
|
5068
|
-
height?: number | undefined;
|
|
5069
5068
|
width?: number | undefined;
|
|
5069
|
+
height?: number | undefined;
|
|
5070
5070
|
alt?: string | undefined;
|
|
5071
5071
|
}[] | undefined;
|
|
5072
5072
|
};
|
|
@@ -5091,8 +5091,8 @@ export declare const UpdateFaqSchema: z.ZodObject<{
|
|
|
5091
5091
|
type: "image" | "video";
|
|
5092
5092
|
id: string;
|
|
5093
5093
|
src: string;
|
|
5094
|
-
height?: number | undefined;
|
|
5095
5094
|
width?: number | undefined;
|
|
5095
|
+
height?: number | undefined;
|
|
5096
5096
|
alt?: string | undefined;
|
|
5097
5097
|
}[] | undefined;
|
|
5098
5098
|
};
|
|
@@ -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.
|
|
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:
|
|
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:
|
|
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.
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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;
|
|
@@ -5619,8 +5619,8 @@ export declare const UpdateFaqSchema: z.ZodObject<{
|
|
|
5619
5619
|
type: "image" | "video";
|
|
5620
5620
|
id: string;
|
|
5621
5621
|
src: string;
|
|
5622
|
-
height?: number | undefined;
|
|
5623
5622
|
width?: number | undefined;
|
|
5623
|
+
height?: number | undefined;
|
|
5624
5624
|
alt?: string | undefined;
|
|
5625
5625
|
}[] | undefined;
|
|
5626
5626
|
};
|
|
@@ -5664,7 +5664,7 @@ export declare const UpdateFaqSchema: z.ZodObject<{
|
|
|
5664
5664
|
maxHeight?: number | undefined;
|
|
5665
5665
|
} | {
|
|
5666
5666
|
type: "session_metric";
|
|
5667
|
-
key:
|
|
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:
|
|
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;
|
|
@@ -5734,8 +5734,8 @@ export declare const UpdateFaqSchema: z.ZodObject<{
|
|
|
5734
5734
|
type: "image" | "video";
|
|
5735
5735
|
id: string;
|
|
5736
5736
|
src: string;
|
|
5737
|
-
height?: number | undefined;
|
|
5738
5737
|
width?: number | undefined;
|
|
5738
|
+
height?: number | undefined;
|
|
5739
5739
|
alt?: string | undefined;
|
|
5740
5740
|
}[] | undefined;
|
|
5741
5741
|
};
|
|
@@ -5779,7 +5779,7 @@ export declare const UpdateFaqSchema: z.ZodObject<{
|
|
|
5779
5779
|
maxHeight?: number | undefined;
|
|
5780
5780
|
} | {
|
|
5781
5781
|
type: "session_metric";
|
|
5782
|
-
key:
|
|
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:
|
|
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;
|
|
@@ -5849,8 +5849,8 @@ export declare const UpdateFaqSchema: z.ZodObject<{
|
|
|
5849
5849
|
type: "image" | "video";
|
|
5850
5850
|
id: string;
|
|
5851
5851
|
src: string;
|
|
5852
|
-
height?: number | undefined;
|
|
5853
5852
|
width?: number | undefined;
|
|
5853
|
+
height?: number | undefined;
|
|
5854
5854
|
alt?: string | undefined;
|
|
5855
5855
|
}[] | undefined;
|
|
5856
5856
|
};
|
|
@@ -5894,7 +5894,7 @@ export declare const UpdateFaqSchema: z.ZodObject<{
|
|
|
5894
5894
|
maxHeight?: number | undefined;
|
|
5895
5895
|
} | {
|
|
5896
5896
|
type: "session_metric";
|
|
5897
|
-
key:
|
|
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:
|
|
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;
|
|
@@ -5964,8 +5964,8 @@ export declare const UpdateFaqSchema: z.ZodObject<{
|
|
|
5964
5964
|
type: "image" | "video";
|
|
5965
5965
|
id: string;
|
|
5966
5966
|
src: string;
|
|
5967
|
-
height?: number | undefined;
|
|
5968
5967
|
width?: number | undefined;
|
|
5968
|
+
height?: number | undefined;
|
|
5969
5969
|
alt?: string | undefined;
|
|
5970
5970
|
}[] | undefined;
|
|
5971
5971
|
};
|
|
@@ -6009,7 +6009,7 @@ export declare const UpdateFaqSchema: z.ZodObject<{
|
|
|
6009
6009
|
maxHeight?: number | undefined;
|
|
6010
6010
|
} | {
|
|
6011
6011
|
type: "session_metric";
|
|
6012
|
-
key:
|
|
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:
|
|
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;
|
|
@@ -6097,8 +6097,8 @@ export declare const UpdateFaqSchema: z.ZodObject<{
|
|
|
6097
6097
|
type: "image" | "video";
|
|
6098
6098
|
id: string;
|
|
6099
6099
|
src: string;
|
|
6100
|
-
height?: number | undefined;
|
|
6101
6100
|
width?: number | undefined;
|
|
6101
|
+
height?: number | undefined;
|
|
6102
6102
|
alt?: string | undefined;
|
|
6103
6103
|
}[] | undefined;
|
|
6104
6104
|
};
|
|
@@ -6142,7 +6142,7 @@ export declare const UpdateFaqSchema: z.ZodObject<{
|
|
|
6142
6142
|
maxHeight?: number | undefined;
|
|
6143
6143
|
} | {
|
|
6144
6144
|
type: "session_metric";
|
|
6145
|
-
key:
|
|
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:
|
|
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;
|
|
@@ -6223,8 +6223,8 @@ export declare const UpdateFaqSchema: z.ZodObject<{
|
|
|
6223
6223
|
type: "image" | "video";
|
|
6224
6224
|
id: string;
|
|
6225
6225
|
src: string;
|
|
6226
|
-
height?: number | undefined;
|
|
6227
6226
|
width?: number | undefined;
|
|
6227
|
+
height?: number | undefined;
|
|
6228
6228
|
alt?: string | undefined;
|
|
6229
6229
|
}[] | undefined;
|
|
6230
6230
|
};
|
|
@@ -6268,7 +6268,7 @@ export declare const UpdateFaqSchema: z.ZodObject<{
|
|
|
6268
6268
|
maxHeight?: number | undefined;
|
|
6269
6269
|
} | {
|
|
6270
6270
|
type: "session_metric";
|
|
6271
|
-
key:
|
|
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:
|
|
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;
|
|
@@ -6349,8 +6349,8 @@ export declare function validateFAQQuestion(data: unknown): z.SafeParseReturnTyp
|
|
|
6349
6349
|
type: "image" | "video";
|
|
6350
6350
|
id: string;
|
|
6351
6351
|
src: string;
|
|
6352
|
-
height?: number | undefined;
|
|
6353
6352
|
width?: number | undefined;
|
|
6353
|
+
height?: number | undefined;
|
|
6354
6354
|
alt?: string | undefined;
|
|
6355
6355
|
}[] | undefined;
|
|
6356
6356
|
};
|
|
@@ -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:
|
|
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:
|
|
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;
|
|
@@ -6464,8 +6464,8 @@ export declare function validateFAQQuestion(data: unknown): z.SafeParseReturnTyp
|
|
|
6464
6464
|
type: "image" | "video";
|
|
6465
6465
|
id: string;
|
|
6466
6466
|
src: string;
|
|
6467
|
-
height?: number | undefined;
|
|
6468
6467
|
width?: number | undefined;
|
|
6468
|
+
height?: number | undefined;
|
|
6469
6469
|
alt?: string | undefined;
|
|
6470
6470
|
}[] | undefined;
|
|
6471
6471
|
};
|
|
@@ -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:
|
|
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:
|
|
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;
|
|
@@ -6587,8 +6587,8 @@ export declare function validateFAQConfig(data: unknown): z.SafeParseReturnType<
|
|
|
6587
6587
|
type: "image" | "video";
|
|
6588
6588
|
id: string;
|
|
6589
6589
|
src: string;
|
|
6590
|
-
height?: number | undefined;
|
|
6591
6590
|
width?: number | undefined;
|
|
6591
|
+
height?: number | undefined;
|
|
6592
6592
|
alt?: string | undefined;
|
|
6593
6593
|
}[] | undefined;
|
|
6594
6594
|
};
|
|
@@ -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:
|
|
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:
|
|
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;
|
|
@@ -6712,8 +6712,8 @@ export declare function validateFAQConfig(data: unknown): z.SafeParseReturnType<
|
|
|
6712
6712
|
type: "image" | "video";
|
|
6713
6713
|
id: string;
|
|
6714
6714
|
src: string;
|
|
6715
|
-
height?: number | undefined;
|
|
6716
6715
|
width?: number | undefined;
|
|
6716
|
+
height?: number | undefined;
|
|
6717
6717
|
alt?: string | undefined;
|
|
6718
6718
|
}[] | undefined;
|
|
6719
6719
|
};
|
|
@@ -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:
|
|
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:
|
|
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:
|
|
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:
|
|
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;
|
|
@@ -6917,8 +6917,8 @@ export declare function validateFAQConfig(data: unknown): z.SafeParseReturnType<
|
|
|
6917
6917
|
type: "image" | "video";
|
|
6918
6918
|
id: string;
|
|
6919
6919
|
src: string;
|
|
6920
|
-
height?: number | undefined;
|
|
6921
6920
|
width?: number | undefined;
|
|
6921
|
+
height?: number | undefined;
|
|
6922
6922
|
alt?: string | undefined;
|
|
6923
6923
|
}[] | undefined;
|
|
6924
6924
|
};
|
|
@@ -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:
|
|
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:
|
|
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;
|
|
@@ -7042,8 +7042,8 @@ export declare function validateFAQConfig(data: unknown): z.SafeParseReturnType<
|
|
|
7042
7042
|
type: "image" | "video";
|
|
7043
7043
|
id: string;
|
|
7044
7044
|
src: string;
|
|
7045
|
-
height?: number | undefined;
|
|
7046
7045
|
width?: number | undefined;
|
|
7046
|
+
height?: number | undefined;
|
|
7047
7047
|
alt?: string | undefined;
|
|
7048
7048
|
}[] | undefined;
|
|
7049
7049
|
};
|
|
@@ -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:
|
|
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:
|
|
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:
|
|
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:
|
|
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;
|
|
@@ -7272,15 +7272,15 @@ export declare const actionStepSchemas: ({
|
|
|
7272
7272
|
type: "image" | "video";
|
|
7273
7273
|
id: string;
|
|
7274
7274
|
src: string;
|
|
7275
|
-
height?: number | undefined;
|
|
7276
7275
|
width?: number | undefined;
|
|
7276
|
+
height?: number | undefined;
|
|
7277
7277
|
alt?: string | undefined;
|
|
7278
7278
|
}, {
|
|
7279
7279
|
type: "image" | "video";
|
|
7280
7280
|
id: string;
|
|
7281
7281
|
src: string;
|
|
7282
|
-
height?: number | undefined;
|
|
7283
7282
|
width?: number | undefined;
|
|
7283
|
+
height?: number | undefined;
|
|
7284
7284
|
alt?: string | undefined;
|
|
7285
7285
|
}>, "many">>;
|
|
7286
7286
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7290,8 +7290,8 @@ export declare const actionStepSchemas: ({
|
|
|
7290
7290
|
type: "image" | "video";
|
|
7291
7291
|
id: string;
|
|
7292
7292
|
src: string;
|
|
7293
|
-
height?: number | undefined;
|
|
7294
7293
|
width?: number | undefined;
|
|
7294
|
+
height?: number | undefined;
|
|
7295
7295
|
alt?: string | undefined;
|
|
7296
7296
|
}[] | undefined;
|
|
7297
7297
|
}, {
|
|
@@ -7301,8 +7301,8 @@ export declare const actionStepSchemas: ({
|
|
|
7301
7301
|
type: "image" | "video";
|
|
7302
7302
|
id: string;
|
|
7303
7303
|
src: string;
|
|
7304
|
-
height?: number | undefined;
|
|
7305
7304
|
width?: number | undefined;
|
|
7305
|
+
height?: number | undefined;
|
|
7306
7306
|
alt?: string | undefined;
|
|
7307
7307
|
}[] | undefined;
|
|
7308
7308
|
}>]>;
|
|
@@ -7339,8 +7339,8 @@ export declare const actionStepSchemas: ({
|
|
|
7339
7339
|
type: "image" | "video";
|
|
7340
7340
|
id: string;
|
|
7341
7341
|
src: string;
|
|
7342
|
-
height?: number | undefined;
|
|
7343
7342
|
width?: number | undefined;
|
|
7343
|
+
height?: number | undefined;
|
|
7344
7344
|
alt?: string | undefined;
|
|
7345
7345
|
}[] | undefined;
|
|
7346
7346
|
};
|
|
@@ -7365,8 +7365,8 @@ export declare const actionStepSchemas: ({
|
|
|
7365
7365
|
type: "image" | "video";
|
|
7366
7366
|
id: string;
|
|
7367
7367
|
src: string;
|
|
7368
|
-
height?: number | undefined;
|
|
7369
7368
|
width?: number | undefined;
|
|
7369
|
+
height?: number | undefined;
|
|
7370
7370
|
alt?: string | undefined;
|
|
7371
7371
|
}[] | undefined;
|
|
7372
7372
|
};
|
|
@@ -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.
|
|
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:
|
|
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:
|
|
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.
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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;
|
|
@@ -7893,8 +7893,8 @@ export declare const actionStepSchemas: ({
|
|
|
7893
7893
|
type: "image" | "video";
|
|
7894
7894
|
id: string;
|
|
7895
7895
|
src: string;
|
|
7896
|
-
height?: number | undefined;
|
|
7897
7896
|
width?: number | undefined;
|
|
7897
|
+
height?: number | undefined;
|
|
7898
7898
|
alt?: string | undefined;
|
|
7899
7899
|
}[] | undefined;
|
|
7900
7900
|
};
|
|
@@ -7938,7 +7938,7 @@ export declare const actionStepSchemas: ({
|
|
|
7938
7938
|
maxHeight?: number | undefined;
|
|
7939
7939
|
} | {
|
|
7940
7940
|
type: "session_metric";
|
|
7941
|
-
key:
|
|
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:
|
|
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;
|
|
@@ -8008,8 +8008,8 @@ export declare const actionStepSchemas: ({
|
|
|
8008
8008
|
type: "image" | "video";
|
|
8009
8009
|
id: string;
|
|
8010
8010
|
src: string;
|
|
8011
|
-
height?: number | undefined;
|
|
8012
8011
|
width?: number | undefined;
|
|
8012
|
+
height?: number | undefined;
|
|
8013
8013
|
alt?: string | undefined;
|
|
8014
8014
|
}[] | undefined;
|
|
8015
8015
|
};
|
|
@@ -8053,7 +8053,7 @@ export declare const actionStepSchemas: ({
|
|
|
8053
8053
|
maxHeight?: number | undefined;
|
|
8054
8054
|
} | {
|
|
8055
8055
|
type: "session_metric";
|
|
8056
|
-
key:
|
|
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:
|
|
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;
|
|
@@ -8186,15 +8186,15 @@ export declare const actionStepSchemas: ({
|
|
|
8186
8186
|
type: "image" | "video";
|
|
8187
8187
|
id: string;
|
|
8188
8188
|
src: string;
|
|
8189
|
-
height?: number | undefined;
|
|
8190
8189
|
width?: number | undefined;
|
|
8190
|
+
height?: number | undefined;
|
|
8191
8191
|
alt?: string | undefined;
|
|
8192
8192
|
}, {
|
|
8193
8193
|
type: "image" | "video";
|
|
8194
8194
|
id: string;
|
|
8195
8195
|
src: string;
|
|
8196
|
-
height?: number | undefined;
|
|
8197
8196
|
width?: number | undefined;
|
|
8197
|
+
height?: number | undefined;
|
|
8198
8198
|
alt?: string | undefined;
|
|
8199
8199
|
}>, "many">>;
|
|
8200
8200
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8204,8 +8204,8 @@ export declare const actionStepSchemas: ({
|
|
|
8204
8204
|
type: "image" | "video";
|
|
8205
8205
|
id: string;
|
|
8206
8206
|
src: string;
|
|
8207
|
-
height?: number | undefined;
|
|
8208
8207
|
width?: number | undefined;
|
|
8208
|
+
height?: number | undefined;
|
|
8209
8209
|
alt?: string | undefined;
|
|
8210
8210
|
}[] | undefined;
|
|
8211
8211
|
}, {
|
|
@@ -8215,8 +8215,8 @@ export declare const actionStepSchemas: ({
|
|
|
8215
8215
|
type: "image" | "video";
|
|
8216
8216
|
id: string;
|
|
8217
8217
|
src: string;
|
|
8218
|
-
height?: number | undefined;
|
|
8219
8218
|
width?: number | undefined;
|
|
8219
|
+
height?: number | undefined;
|
|
8220
8220
|
alt?: string | undefined;
|
|
8221
8221
|
}[] | undefined;
|
|
8222
8222
|
}>]>;
|
|
@@ -8253,8 +8253,8 @@ export declare const actionStepSchemas: ({
|
|
|
8253
8253
|
type: "image" | "video";
|
|
8254
8254
|
id: string;
|
|
8255
8255
|
src: string;
|
|
8256
|
-
height?: number | undefined;
|
|
8257
8256
|
width?: number | undefined;
|
|
8257
|
+
height?: number | undefined;
|
|
8258
8258
|
alt?: string | undefined;
|
|
8259
8259
|
}[] | undefined;
|
|
8260
8260
|
};
|
|
@@ -8279,8 +8279,8 @@ export declare const actionStepSchemas: ({
|
|
|
8279
8279
|
type: "image" | "video";
|
|
8280
8280
|
id: string;
|
|
8281
8281
|
src: string;
|
|
8282
|
-
height?: number | undefined;
|
|
8283
8282
|
width?: number | undefined;
|
|
8283
|
+
height?: number | undefined;
|
|
8284
8284
|
alt?: string | undefined;
|
|
8285
8285
|
}[] | undefined;
|
|
8286
8286
|
};
|
|
@@ -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.
|
|
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:
|
|
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:
|
|
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.
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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;
|
|
@@ -8807,8 +8807,8 @@ export declare const actionStepSchemas: ({
|
|
|
8807
8807
|
type: "image" | "video";
|
|
8808
8808
|
id: string;
|
|
8809
8809
|
src: string;
|
|
8810
|
-
height?: number | undefined;
|
|
8811
8810
|
width?: number | undefined;
|
|
8811
|
+
height?: number | undefined;
|
|
8812
8812
|
alt?: string | undefined;
|
|
8813
8813
|
}[] | undefined;
|
|
8814
8814
|
};
|
|
@@ -8852,7 +8852,7 @@ export declare const actionStepSchemas: ({
|
|
|
8852
8852
|
maxHeight?: number | undefined;
|
|
8853
8853
|
} | {
|
|
8854
8854
|
type: "session_metric";
|
|
8855
|
-
key:
|
|
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:
|
|
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;
|
|
@@ -8922,8 +8922,8 @@ export declare const actionStepSchemas: ({
|
|
|
8922
8922
|
type: "image" | "video";
|
|
8923
8923
|
id: string;
|
|
8924
8924
|
src: string;
|
|
8925
|
-
height?: number | undefined;
|
|
8926
8925
|
width?: number | undefined;
|
|
8926
|
+
height?: number | undefined;
|
|
8927
8927
|
alt?: string | undefined;
|
|
8928
8928
|
}[] | undefined;
|
|
8929
8929
|
};
|
|
@@ -8967,7 +8967,7 @@ export declare const actionStepSchemas: ({
|
|
|
8967
8967
|
maxHeight?: number | undefined;
|
|
8968
8968
|
} | {
|
|
8969
8969
|
type: "session_metric";
|
|
8970
|
-
key:
|
|
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:
|
|
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;
|
|
@@ -9037,8 +9037,8 @@ export declare const actionStepSchemas: ({
|
|
|
9037
9037
|
type: "image" | "video";
|
|
9038
9038
|
id: string;
|
|
9039
9039
|
src: string;
|
|
9040
|
-
height?: number | undefined;
|
|
9041
9040
|
width?: number | undefined;
|
|
9041
|
+
height?: number | undefined;
|
|
9042
9042
|
alt?: string | undefined;
|
|
9043
9043
|
}[] | undefined;
|
|
9044
9044
|
};
|
|
@@ -9082,7 +9082,7 @@ export declare const actionStepSchemas: ({
|
|
|
9082
9082
|
maxHeight?: number | undefined;
|
|
9083
9083
|
} | {
|
|
9084
9084
|
type: "session_metric";
|
|
9085
|
-
key:
|
|
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:
|
|
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;
|
|
@@ -9152,8 +9152,8 @@ export declare const actionStepSchemas: ({
|
|
|
9152
9152
|
type: "image" | "video";
|
|
9153
9153
|
id: string;
|
|
9154
9154
|
src: string;
|
|
9155
|
-
height?: number | undefined;
|
|
9156
9155
|
width?: number | undefined;
|
|
9156
|
+
height?: number | undefined;
|
|
9157
9157
|
alt?: string | undefined;
|
|
9158
9158
|
}[] | undefined;
|
|
9159
9159
|
};
|
|
@@ -9197,7 +9197,7 @@ export declare const actionStepSchemas: ({
|
|
|
9197
9197
|
maxHeight?: number | undefined;
|
|
9198
9198
|
} | {
|
|
9199
9199
|
type: "session_metric";
|
|
9200
|
-
key:
|
|
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:
|
|
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;
|
|
@@ -9285,8 +9285,8 @@ export declare const actionStepSchemas: ({
|
|
|
9285
9285
|
type: "image" | "video";
|
|
9286
9286
|
id: string;
|
|
9287
9287
|
src: string;
|
|
9288
|
-
height?: number | undefined;
|
|
9289
9288
|
width?: number | undefined;
|
|
9289
|
+
height?: number | undefined;
|
|
9290
9290
|
alt?: string | undefined;
|
|
9291
9291
|
}[] | undefined;
|
|
9292
9292
|
};
|
|
@@ -9330,7 +9330,7 @@ export declare const actionStepSchemas: ({
|
|
|
9330
9330
|
maxHeight?: number | undefined;
|
|
9331
9331
|
} | {
|
|
9332
9332
|
type: "session_metric";
|
|
9333
|
-
key:
|
|
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:
|
|
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;
|
|
@@ -9411,8 +9411,8 @@ export declare const actionStepSchemas: ({
|
|
|
9411
9411
|
type: "image" | "video";
|
|
9412
9412
|
id: string;
|
|
9413
9413
|
src: string;
|
|
9414
|
-
height?: number | undefined;
|
|
9415
9414
|
width?: number | undefined;
|
|
9415
|
+
height?: number | undefined;
|
|
9416
9416
|
alt?: string | undefined;
|
|
9417
9417
|
}[] | undefined;
|
|
9418
9418
|
};
|
|
@@ -9456,7 +9456,7 @@ export declare const actionStepSchemas: ({
|
|
|
9456
9456
|
maxHeight?: number | undefined;
|
|
9457
9457
|
} | {
|
|
9458
9458
|
type: "session_metric";
|
|
9459
|
-
key:
|
|
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:
|
|
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;
|
|
@@ -9571,15 +9571,15 @@ export declare const tileWidgets: {
|
|
|
9571
9571
|
type: "image" | "video";
|
|
9572
9572
|
id: string;
|
|
9573
9573
|
src: string;
|
|
9574
|
-
height?: number | undefined;
|
|
9575
9574
|
width?: number | undefined;
|
|
9575
|
+
height?: number | undefined;
|
|
9576
9576
|
alt?: string | undefined;
|
|
9577
9577
|
}, {
|
|
9578
9578
|
type: "image" | "video";
|
|
9579
9579
|
id: string;
|
|
9580
9580
|
src: string;
|
|
9581
|
-
height?: number | undefined;
|
|
9582
9581
|
width?: number | undefined;
|
|
9582
|
+
height?: number | undefined;
|
|
9583
9583
|
alt?: string | undefined;
|
|
9584
9584
|
}>, "many">>;
|
|
9585
9585
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -9589,8 +9589,8 @@ export declare const tileWidgets: {
|
|
|
9589
9589
|
type: "image" | "video";
|
|
9590
9590
|
id: string;
|
|
9591
9591
|
src: string;
|
|
9592
|
-
height?: number | undefined;
|
|
9593
9592
|
width?: number | undefined;
|
|
9593
|
+
height?: number | undefined;
|
|
9594
9594
|
alt?: string | undefined;
|
|
9595
9595
|
}[] | undefined;
|
|
9596
9596
|
}, {
|
|
@@ -9600,8 +9600,8 @@ export declare const tileWidgets: {
|
|
|
9600
9600
|
type: "image" | "video";
|
|
9601
9601
|
id: string;
|
|
9602
9602
|
src: string;
|
|
9603
|
-
height?: number | undefined;
|
|
9604
9603
|
width?: number | undefined;
|
|
9604
|
+
height?: number | undefined;
|
|
9605
9605
|
alt?: string | undefined;
|
|
9606
9606
|
}[] | undefined;
|
|
9607
9607
|
}>]>;
|
|
@@ -9638,8 +9638,8 @@ export declare const tileWidgets: {
|
|
|
9638
9638
|
type: "image" | "video";
|
|
9639
9639
|
id: string;
|
|
9640
9640
|
src: string;
|
|
9641
|
-
height?: number | undefined;
|
|
9642
9641
|
width?: number | undefined;
|
|
9642
|
+
height?: number | undefined;
|
|
9643
9643
|
alt?: string | undefined;
|
|
9644
9644
|
}[] | undefined;
|
|
9645
9645
|
};
|
|
@@ -9664,8 +9664,8 @@ export declare const tileWidgets: {
|
|
|
9664
9664
|
type: "image" | "video";
|
|
9665
9665
|
id: string;
|
|
9666
9666
|
src: string;
|
|
9667
|
-
height?: number | undefined;
|
|
9668
9667
|
width?: number | undefined;
|
|
9668
|
+
height?: number | undefined;
|
|
9669
9669
|
alt?: string | undefined;
|
|
9670
9670
|
}[] | undefined;
|
|
9671
9671
|
};
|
|
@@ -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.
|
|
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:
|
|
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:
|
|
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.
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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;
|
|
@@ -10192,8 +10192,8 @@ export declare const tileWidgets: {
|
|
|
10192
10192
|
type: "image" | "video";
|
|
10193
10193
|
id: string;
|
|
10194
10194
|
src: string;
|
|
10195
|
-
height?: number | undefined;
|
|
10196
10195
|
width?: number | undefined;
|
|
10196
|
+
height?: number | undefined;
|
|
10197
10197
|
alt?: string | undefined;
|
|
10198
10198
|
}[] | undefined;
|
|
10199
10199
|
};
|
|
@@ -10237,7 +10237,7 @@ export declare const tileWidgets: {
|
|
|
10237
10237
|
maxHeight?: number | undefined;
|
|
10238
10238
|
} | {
|
|
10239
10239
|
type: "session_metric";
|
|
10240
|
-
key:
|
|
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:
|
|
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;
|
|
@@ -10307,8 +10307,8 @@ export declare const tileWidgets: {
|
|
|
10307
10307
|
type: "image" | "video";
|
|
10308
10308
|
id: string;
|
|
10309
10309
|
src: string;
|
|
10310
|
-
height?: number | undefined;
|
|
10311
10310
|
width?: number | undefined;
|
|
10311
|
+
height?: number | undefined;
|
|
10312
10312
|
alt?: string | undefined;
|
|
10313
10313
|
}[] | undefined;
|
|
10314
10314
|
};
|
|
@@ -10352,7 +10352,7 @@ export declare const tileWidgets: {
|
|
|
10352
10352
|
maxHeight?: number | undefined;
|
|
10353
10353
|
} | {
|
|
10354
10354
|
type: "session_metric";
|
|
10355
|
-
key:
|
|
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:
|
|
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;
|
|
@@ -10422,8 +10422,8 @@ export declare const tileWidgets: {
|
|
|
10422
10422
|
type: "image" | "video";
|
|
10423
10423
|
id: string;
|
|
10424
10424
|
src: string;
|
|
10425
|
-
height?: number | undefined;
|
|
10426
10425
|
width?: number | undefined;
|
|
10426
|
+
height?: number | undefined;
|
|
10427
10427
|
alt?: string | undefined;
|
|
10428
10428
|
}[] | undefined;
|
|
10429
10429
|
};
|
|
@@ -10467,7 +10467,7 @@ export declare const tileWidgets: {
|
|
|
10467
10467
|
maxHeight?: number | undefined;
|
|
10468
10468
|
} | {
|
|
10469
10469
|
type: "session_metric";
|
|
10470
|
-
key:
|
|
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:
|
|
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;
|
|
@@ -10537,8 +10537,8 @@ export declare const tileWidgets: {
|
|
|
10537
10537
|
type: "image" | "video";
|
|
10538
10538
|
id: string;
|
|
10539
10539
|
src: string;
|
|
10540
|
-
height?: number | undefined;
|
|
10541
10540
|
width?: number | undefined;
|
|
10541
|
+
height?: number | undefined;
|
|
10542
10542
|
alt?: string | undefined;
|
|
10543
10543
|
}[] | undefined;
|
|
10544
10544
|
};
|
|
@@ -10582,7 +10582,7 @@ export declare const tileWidgets: {
|
|
|
10582
10582
|
maxHeight?: number | undefined;
|
|
10583
10583
|
} | {
|
|
10584
10584
|
type: "session_metric";
|
|
10585
|
-
key:
|
|
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:
|
|
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.
|
|
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:
|
|
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:
|
|
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.
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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;
|
|
@@ -11180,15 +11180,15 @@ export declare const tileWidgets: {
|
|
|
11180
11180
|
type: "image" | "video";
|
|
11181
11181
|
id: string;
|
|
11182
11182
|
src: string;
|
|
11183
|
-
height?: number | undefined;
|
|
11184
11183
|
width?: number | undefined;
|
|
11184
|
+
height?: number | undefined;
|
|
11185
11185
|
alt?: string | undefined;
|
|
11186
11186
|
}, {
|
|
11187
11187
|
type: "image" | "video";
|
|
11188
11188
|
id: string;
|
|
11189
11189
|
src: string;
|
|
11190
|
-
height?: number | undefined;
|
|
11191
11190
|
width?: number | undefined;
|
|
11191
|
+
height?: number | undefined;
|
|
11192
11192
|
alt?: string | undefined;
|
|
11193
11193
|
}>, "many">>;
|
|
11194
11194
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -11198,8 +11198,8 @@ export declare const tileWidgets: {
|
|
|
11198
11198
|
type: "image" | "video";
|
|
11199
11199
|
id: string;
|
|
11200
11200
|
src: string;
|
|
11201
|
-
height?: number | undefined;
|
|
11202
11201
|
width?: number | undefined;
|
|
11202
|
+
height?: number | undefined;
|
|
11203
11203
|
alt?: string | undefined;
|
|
11204
11204
|
}[] | undefined;
|
|
11205
11205
|
}, {
|
|
@@ -11209,8 +11209,8 @@ export declare const tileWidgets: {
|
|
|
11209
11209
|
type: "image" | "video";
|
|
11210
11210
|
id: string;
|
|
11211
11211
|
src: string;
|
|
11212
|
-
height?: number | undefined;
|
|
11213
11212
|
width?: number | undefined;
|
|
11213
|
+
height?: number | undefined;
|
|
11214
11214
|
alt?: string | undefined;
|
|
11215
11215
|
}[] | undefined;
|
|
11216
11216
|
}>]>;
|
|
@@ -11247,8 +11247,8 @@ export declare const tileWidgets: {
|
|
|
11247
11247
|
type: "image" | "video";
|
|
11248
11248
|
id: string;
|
|
11249
11249
|
src: string;
|
|
11250
|
-
height?: number | undefined;
|
|
11251
11250
|
width?: number | undefined;
|
|
11251
|
+
height?: number | undefined;
|
|
11252
11252
|
alt?: string | undefined;
|
|
11253
11253
|
}[] | undefined;
|
|
11254
11254
|
};
|
|
@@ -11273,8 +11273,8 @@ export declare const tileWidgets: {
|
|
|
11273
11273
|
type: "image" | "video";
|
|
11274
11274
|
id: string;
|
|
11275
11275
|
src: string;
|
|
11276
|
-
height?: number | undefined;
|
|
11277
11276
|
width?: number | undefined;
|
|
11277
|
+
height?: number | undefined;
|
|
11278
11278
|
alt?: string | undefined;
|
|
11279
11279
|
}[] | undefined;
|
|
11280
11280
|
};
|
|
@@ -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.
|
|
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:
|
|
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:
|
|
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.
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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;
|
|
@@ -11801,8 +11801,8 @@ export declare const tileWidgets: {
|
|
|
11801
11801
|
type: "image" | "video";
|
|
11802
11802
|
id: string;
|
|
11803
11803
|
src: string;
|
|
11804
|
-
height?: number | undefined;
|
|
11805
11804
|
width?: number | undefined;
|
|
11805
|
+
height?: number | undefined;
|
|
11806
11806
|
alt?: string | undefined;
|
|
11807
11807
|
}[] | undefined;
|
|
11808
11808
|
};
|
|
@@ -11846,7 +11846,7 @@ export declare const tileWidgets: {
|
|
|
11846
11846
|
maxHeight?: number | undefined;
|
|
11847
11847
|
} | {
|
|
11848
11848
|
type: "session_metric";
|
|
11849
|
-
key:
|
|
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:
|
|
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;
|
|
@@ -11916,8 +11916,8 @@ export declare const tileWidgets: {
|
|
|
11916
11916
|
type: "image" | "video";
|
|
11917
11917
|
id: string;
|
|
11918
11918
|
src: string;
|
|
11919
|
-
height?: number | undefined;
|
|
11920
11919
|
width?: number | undefined;
|
|
11920
|
+
height?: number | undefined;
|
|
11921
11921
|
alt?: string | undefined;
|
|
11922
11922
|
}[] | undefined;
|
|
11923
11923
|
};
|
|
@@ -11961,7 +11961,7 @@ export declare const tileWidgets: {
|
|
|
11961
11961
|
maxHeight?: number | undefined;
|
|
11962
11962
|
} | {
|
|
11963
11963
|
type: "session_metric";
|
|
11964
|
-
key:
|
|
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:
|
|
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;
|
|
@@ -12031,8 +12031,8 @@ export declare const tileWidgets: {
|
|
|
12031
12031
|
type: "image" | "video";
|
|
12032
12032
|
id: string;
|
|
12033
12033
|
src: string;
|
|
12034
|
-
height?: number | undefined;
|
|
12035
12034
|
width?: number | undefined;
|
|
12035
|
+
height?: number | undefined;
|
|
12036
12036
|
alt?: string | undefined;
|
|
12037
12037
|
}[] | undefined;
|
|
12038
12038
|
};
|
|
@@ -12076,7 +12076,7 @@ export declare const tileWidgets: {
|
|
|
12076
12076
|
maxHeight?: number | undefined;
|
|
12077
12077
|
} | {
|
|
12078
12078
|
type: "session_metric";
|
|
12079
|
-
key:
|
|
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:
|
|
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;
|
|
@@ -12146,8 +12146,8 @@ export declare const tileWidgets: {
|
|
|
12146
12146
|
type: "image" | "video";
|
|
12147
12147
|
id: string;
|
|
12148
12148
|
src: string;
|
|
12149
|
-
height?: number | undefined;
|
|
12150
12149
|
width?: number | undefined;
|
|
12150
|
+
height?: number | undefined;
|
|
12151
12151
|
alt?: string | undefined;
|
|
12152
12152
|
}[] | undefined;
|
|
12153
12153
|
};
|
|
@@ -12191,7 +12191,7 @@ export declare const tileWidgets: {
|
|
|
12191
12191
|
maxHeight?: number | undefined;
|
|
12192
12192
|
} | {
|
|
12193
12193
|
type: "session_metric";
|
|
12194
|
-
key:
|
|
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:
|
|
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;
|
|
@@ -12265,8 +12265,8 @@ export declare const tileWidgets: {
|
|
|
12265
12265
|
type: "image" | "video";
|
|
12266
12266
|
id: string;
|
|
12267
12267
|
src: string;
|
|
12268
|
-
height?: number | undefined;
|
|
12269
12268
|
width?: number | undefined;
|
|
12269
|
+
height?: number | undefined;
|
|
12270
12270
|
alt?: string | undefined;
|
|
12271
12271
|
}[] | undefined;
|
|
12272
12272
|
};
|
|
@@ -12310,7 +12310,7 @@ export declare const tileWidgets: {
|
|
|
12310
12310
|
maxHeight?: number | undefined;
|
|
12311
12311
|
} | {
|
|
12312
12312
|
type: "session_metric";
|
|
12313
|
-
key:
|
|
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:
|
|
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:
|
|
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:
|
|
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;
|
|
@@ -12465,8 +12465,8 @@ export declare const tileWidgets: {
|
|
|
12465
12465
|
type: "image" | "video";
|
|
12466
12466
|
id: string;
|
|
12467
12467
|
src: string;
|
|
12468
|
-
height?: number | undefined;
|
|
12469
12468
|
width?: number | undefined;
|
|
12469
|
+
height?: number | undefined;
|
|
12470
12470
|
alt?: string | undefined;
|
|
12471
12471
|
}[] | undefined;
|
|
12472
12472
|
};
|
|
@@ -12510,7 +12510,7 @@ export declare const tileWidgets: {
|
|
|
12510
12510
|
maxHeight?: number | undefined;
|
|
12511
12511
|
} | {
|
|
12512
12512
|
type: "session_metric";
|
|
12513
|
-
key:
|
|
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:
|
|
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:
|
|
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:
|
|
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;
|
|
@@ -12669,8 +12669,8 @@ export declare const tileWidgets: {
|
|
|
12669
12669
|
type: "image" | "video";
|
|
12670
12670
|
id: string;
|
|
12671
12671
|
src: string;
|
|
12672
|
-
height?: number | undefined;
|
|
12673
12672
|
width?: number | undefined;
|
|
12673
|
+
height?: number | undefined;
|
|
12674
12674
|
alt?: string | undefined;
|
|
12675
12675
|
}[] | undefined;
|
|
12676
12676
|
};
|
|
@@ -12714,7 +12714,7 @@ export declare const tileWidgets: {
|
|
|
12714
12714
|
maxHeight?: number | undefined;
|
|
12715
12715
|
} | {
|
|
12716
12716
|
type: "session_metric";
|
|
12717
|
-
key:
|
|
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:
|
|
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;
|
|
@@ -12794,8 +12794,8 @@ export declare const tileWidgets: {
|
|
|
12794
12794
|
type: "image" | "video";
|
|
12795
12795
|
id: string;
|
|
12796
12796
|
src: string;
|
|
12797
|
-
height?: number | undefined;
|
|
12798
12797
|
width?: number | undefined;
|
|
12798
|
+
height?: number | undefined;
|
|
12799
12799
|
alt?: string | undefined;
|
|
12800
12800
|
}[] | undefined;
|
|
12801
12801
|
};
|
|
@@ -12839,7 +12839,7 @@ export declare const tileWidgets: {
|
|
|
12839
12839
|
maxHeight?: number | undefined;
|
|
12840
12840
|
} | {
|
|
12841
12841
|
type: "session_metric";
|
|
12842
|
-
key:
|
|
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:
|
|
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:
|
|
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:
|
|
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;
|
|
@@ -12999,8 +12999,8 @@ export declare const tileWidgets: {
|
|
|
12999
12999
|
type: "image" | "video";
|
|
13000
13000
|
id: string;
|
|
13001
13001
|
src: string;
|
|
13002
|
-
height?: number | undefined;
|
|
13003
13002
|
width?: number | undefined;
|
|
13003
|
+
height?: number | undefined;
|
|
13004
13004
|
alt?: string | undefined;
|
|
13005
13005
|
}[] | undefined;
|
|
13006
13006
|
};
|
|
@@ -13044,7 +13044,7 @@ export declare const tileWidgets: {
|
|
|
13044
13044
|
maxHeight?: number | undefined;
|
|
13045
13045
|
} | {
|
|
13046
13046
|
type: "session_metric";
|
|
13047
|
-
key:
|
|
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:
|
|
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;
|
|
@@ -13124,8 +13124,8 @@ export declare const tileWidgets: {
|
|
|
13124
13124
|
type: "image" | "video";
|
|
13125
13125
|
id: string;
|
|
13126
13126
|
src: string;
|
|
13127
|
-
height?: number | undefined;
|
|
13128
13127
|
width?: number | undefined;
|
|
13128
|
+
height?: number | undefined;
|
|
13129
13129
|
alt?: string | undefined;
|
|
13130
13130
|
}[] | undefined;
|
|
13131
13131
|
};
|
|
@@ -13169,7 +13169,7 @@ export declare const tileWidgets: {
|
|
|
13169
13169
|
maxHeight?: number | undefined;
|
|
13170
13170
|
} | {
|
|
13171
13171
|
type: "session_metric";
|
|
13172
|
-
key:
|
|
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:
|
|
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:
|
|
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:
|
|
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;
|