@syntrologie/adapt-gamification 2.8.0-canary.63 → 2.8.0-canary.64

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/schema.d.ts CHANGED
@@ -234,17 +234,17 @@ export declare const AwardBadgeSchema: z.ZodObject<{
234
234
  maxHeight?: number | undefined;
235
235
  }>, z.ZodObject<{
236
236
  type: z.ZodLiteral<"session_metric">;
237
- key: z.ZodString;
237
+ key: z.ZodEnum<["time_on_page", "page_views", "scroll_depth"]>;
238
238
  operator: z.ZodEnum<["gte", "lte", "eq", "gt", "lt"]>;
239
239
  threshold: z.ZodNumber;
240
240
  }, "strip", z.ZodTypeAny, {
241
241
  type: "session_metric";
242
- key: string;
242
+ key: "time_on_page" | "page_views" | "scroll_depth";
243
243
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
244
244
  threshold: number;
245
245
  }, {
246
246
  type: "session_metric";
247
- key: string;
247
+ key: "time_on_page" | "page_views" | "scroll_depth";
248
248
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
249
249
  threshold: number;
250
250
  }>, z.ZodObject<{
@@ -293,7 +293,7 @@ export declare const AwardBadgeSchema: z.ZodObject<{
293
293
  count: z.ZodNumber;
294
294
  withinMs: z.ZodOptional<z.ZodNumber>;
295
295
  counter: z.ZodOptional<z.ZodObject<{
296
- events: z.ZodArray<z.ZodString, "many">;
296
+ 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">;
297
297
  match: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
298
298
  equals: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
299
299
  contains: z.ZodOptional<z.ZodString>;
@@ -305,13 +305,13 @@ export declare const AwardBadgeSchema: z.ZodObject<{
305
305
  contains?: string | undefined;
306
306
  }>>>;
307
307
  }, "strip", z.ZodTypeAny, {
308
- events: string[];
308
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
309
309
  match?: Record<string, {
310
310
  equals?: string | number | boolean | undefined;
311
311
  contains?: string | undefined;
312
312
  }> | undefined;
313
313
  }, {
314
- events: string[];
314
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
315
315
  match?: Record<string, {
316
316
  equals?: string | number | boolean | undefined;
317
317
  contains?: string | undefined;
@@ -324,7 +324,7 @@ export declare const AwardBadgeSchema: z.ZodObject<{
324
324
  count: number;
325
325
  withinMs?: number | undefined;
326
326
  counter?: {
327
- events: string[];
327
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
328
328
  match?: Record<string, {
329
329
  equals?: string | number | boolean | undefined;
330
330
  contains?: string | undefined;
@@ -337,7 +337,7 @@ export declare const AwardBadgeSchema: z.ZodObject<{
337
337
  count: number;
338
338
  withinMs?: number | undefined;
339
339
  counter?: {
340
- events: string[];
340
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
341
341
  match?: Record<string, {
342
342
  equals?: string | number | boolean | undefined;
343
343
  contains?: string | undefined;
@@ -372,7 +372,7 @@ export declare const AwardBadgeSchema: z.ZodObject<{
372
372
  maxHeight?: number | undefined;
373
373
  } | {
374
374
  type: "session_metric";
375
- key: string;
375
+ key: "time_on_page" | "page_views" | "scroll_depth";
376
376
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
377
377
  threshold: number;
378
378
  } | {
@@ -395,7 +395,7 @@ export declare const AwardBadgeSchema: z.ZodObject<{
395
395
  count: number;
396
396
  withinMs?: number | undefined;
397
397
  counter?: {
398
- events: string[];
398
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
399
399
  match?: Record<string, {
400
400
  equals?: string | number | boolean | undefined;
401
401
  contains?: string | undefined;
@@ -430,7 +430,7 @@ export declare const AwardBadgeSchema: z.ZodObject<{
430
430
  maxHeight?: number | undefined;
431
431
  } | {
432
432
  type: "session_metric";
433
- key: string;
433
+ key: "time_on_page" | "page_views" | "scroll_depth";
434
434
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
435
435
  threshold: number;
436
436
  } | {
@@ -453,7 +453,7 @@ export declare const AwardBadgeSchema: z.ZodObject<{
453
453
  count: number;
454
454
  withinMs?: number | undefined;
455
455
  counter?: {
456
- events: string[];
456
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
457
457
  match?: Record<string, {
458
458
  equals?: string | number | boolean | undefined;
459
459
  contains?: string | undefined;
@@ -492,7 +492,7 @@ export declare const AwardBadgeSchema: z.ZodObject<{
492
492
  maxHeight?: number | undefined;
493
493
  } | {
494
494
  type: "session_metric";
495
- key: string;
495
+ key: "time_on_page" | "page_views" | "scroll_depth";
496
496
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
497
497
  threshold: number;
498
498
  } | {
@@ -515,7 +515,7 @@ export declare const AwardBadgeSchema: z.ZodObject<{
515
515
  count: number;
516
516
  withinMs?: number | undefined;
517
517
  counter?: {
518
- events: string[];
518
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
519
519
  match?: Record<string, {
520
520
  equals?: string | number | boolean | undefined;
521
521
  contains?: string | undefined;
@@ -554,7 +554,7 @@ export declare const AwardBadgeSchema: z.ZodObject<{
554
554
  maxHeight?: number | undefined;
555
555
  } | {
556
556
  type: "session_metric";
557
- key: string;
557
+ key: "time_on_page" | "page_views" | "scroll_depth";
558
558
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
559
559
  threshold: number;
560
560
  } | {
@@ -577,7 +577,7 @@ export declare const AwardBadgeSchema: z.ZodObject<{
577
577
  count: number;
578
578
  withinMs?: number | undefined;
579
579
  counter?: {
580
- events: string[];
580
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
581
581
  match?: Record<string, {
582
582
  equals?: string | number | boolean | undefined;
583
583
  contains?: string | undefined;
@@ -679,7 +679,7 @@ export declare const AwardBadgeSchema: z.ZodObject<{
679
679
  maxHeight?: number | undefined;
680
680
  } | {
681
681
  type: "session_metric";
682
- key: string;
682
+ key: "time_on_page" | "page_views" | "scroll_depth";
683
683
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
684
684
  threshold: number;
685
685
  } | {
@@ -702,7 +702,7 @@ export declare const AwardBadgeSchema: z.ZodObject<{
702
702
  count: number;
703
703
  withinMs?: number | undefined;
704
704
  counter?: {
705
- events: string[];
705
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
706
706
  match?: Record<string, {
707
707
  equals?: string | number | boolean | undefined;
708
708
  contains?: string | undefined;
@@ -768,7 +768,7 @@ export declare const AwardBadgeSchema: z.ZodObject<{
768
768
  maxHeight?: number | undefined;
769
769
  } | {
770
770
  type: "session_metric";
771
- key: string;
771
+ key: "time_on_page" | "page_views" | "scroll_depth";
772
772
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
773
773
  threshold: number;
774
774
  } | {
@@ -791,7 +791,7 @@ export declare const AwardBadgeSchema: z.ZodObject<{
791
791
  count: number;
792
792
  withinMs?: number | undefined;
793
793
  counter?: {
794
- events: string[];
794
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
795
795
  match?: Record<string, {
796
796
  equals?: string | number | boolean | undefined;
797
797
  contains?: string | undefined;
@@ -907,17 +907,17 @@ export declare const AddPointsSchema: z.ZodObject<{
907
907
  maxHeight?: number | undefined;
908
908
  }>, z.ZodObject<{
909
909
  type: z.ZodLiteral<"session_metric">;
910
- key: z.ZodString;
910
+ key: z.ZodEnum<["time_on_page", "page_views", "scroll_depth"]>;
911
911
  operator: z.ZodEnum<["gte", "lte", "eq", "gt", "lt"]>;
912
912
  threshold: z.ZodNumber;
913
913
  }, "strip", z.ZodTypeAny, {
914
914
  type: "session_metric";
915
- key: string;
915
+ key: "time_on_page" | "page_views" | "scroll_depth";
916
916
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
917
917
  threshold: number;
918
918
  }, {
919
919
  type: "session_metric";
920
- key: string;
920
+ key: "time_on_page" | "page_views" | "scroll_depth";
921
921
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
922
922
  threshold: number;
923
923
  }>, z.ZodObject<{
@@ -966,7 +966,7 @@ export declare const AddPointsSchema: z.ZodObject<{
966
966
  count: z.ZodNumber;
967
967
  withinMs: z.ZodOptional<z.ZodNumber>;
968
968
  counter: z.ZodOptional<z.ZodObject<{
969
- events: z.ZodArray<z.ZodString, "many">;
969
+ 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">;
970
970
  match: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
971
971
  equals: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
972
972
  contains: z.ZodOptional<z.ZodString>;
@@ -978,13 +978,13 @@ export declare const AddPointsSchema: z.ZodObject<{
978
978
  contains?: string | undefined;
979
979
  }>>>;
980
980
  }, "strip", z.ZodTypeAny, {
981
- events: string[];
981
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
982
982
  match?: Record<string, {
983
983
  equals?: string | number | boolean | undefined;
984
984
  contains?: string | undefined;
985
985
  }> | undefined;
986
986
  }, {
987
- events: string[];
987
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
988
988
  match?: Record<string, {
989
989
  equals?: string | number | boolean | undefined;
990
990
  contains?: string | undefined;
@@ -997,7 +997,7 @@ export declare const AddPointsSchema: z.ZodObject<{
997
997
  count: number;
998
998
  withinMs?: number | undefined;
999
999
  counter?: {
1000
- events: string[];
1000
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
1001
1001
  match?: Record<string, {
1002
1002
  equals?: string | number | boolean | undefined;
1003
1003
  contains?: string | undefined;
@@ -1010,7 +1010,7 @@ export declare const AddPointsSchema: z.ZodObject<{
1010
1010
  count: number;
1011
1011
  withinMs?: number | undefined;
1012
1012
  counter?: {
1013
- events: string[];
1013
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
1014
1014
  match?: Record<string, {
1015
1015
  equals?: string | number | boolean | undefined;
1016
1016
  contains?: string | undefined;
@@ -1045,7 +1045,7 @@ export declare const AddPointsSchema: z.ZodObject<{
1045
1045
  maxHeight?: number | undefined;
1046
1046
  } | {
1047
1047
  type: "session_metric";
1048
- key: string;
1048
+ key: "time_on_page" | "page_views" | "scroll_depth";
1049
1049
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
1050
1050
  threshold: number;
1051
1051
  } | {
@@ -1068,7 +1068,7 @@ export declare const AddPointsSchema: z.ZodObject<{
1068
1068
  count: number;
1069
1069
  withinMs?: number | undefined;
1070
1070
  counter?: {
1071
- events: string[];
1071
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
1072
1072
  match?: Record<string, {
1073
1073
  equals?: string | number | boolean | undefined;
1074
1074
  contains?: string | undefined;
@@ -1103,7 +1103,7 @@ export declare const AddPointsSchema: z.ZodObject<{
1103
1103
  maxHeight?: number | undefined;
1104
1104
  } | {
1105
1105
  type: "session_metric";
1106
- key: string;
1106
+ key: "time_on_page" | "page_views" | "scroll_depth";
1107
1107
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
1108
1108
  threshold: number;
1109
1109
  } | {
@@ -1126,7 +1126,7 @@ export declare const AddPointsSchema: z.ZodObject<{
1126
1126
  count: number;
1127
1127
  withinMs?: number | undefined;
1128
1128
  counter?: {
1129
- events: string[];
1129
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
1130
1130
  match?: Record<string, {
1131
1131
  equals?: string | number | boolean | undefined;
1132
1132
  contains?: string | undefined;
@@ -1165,7 +1165,7 @@ export declare const AddPointsSchema: z.ZodObject<{
1165
1165
  maxHeight?: number | undefined;
1166
1166
  } | {
1167
1167
  type: "session_metric";
1168
- key: string;
1168
+ key: "time_on_page" | "page_views" | "scroll_depth";
1169
1169
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
1170
1170
  threshold: number;
1171
1171
  } | {
@@ -1188,7 +1188,7 @@ export declare const AddPointsSchema: z.ZodObject<{
1188
1188
  count: number;
1189
1189
  withinMs?: number | undefined;
1190
1190
  counter?: {
1191
- events: string[];
1191
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
1192
1192
  match?: Record<string, {
1193
1193
  equals?: string | number | boolean | undefined;
1194
1194
  contains?: string | undefined;
@@ -1227,7 +1227,7 @@ export declare const AddPointsSchema: z.ZodObject<{
1227
1227
  maxHeight?: number | undefined;
1228
1228
  } | {
1229
1229
  type: "session_metric";
1230
- key: string;
1230
+ key: "time_on_page" | "page_views" | "scroll_depth";
1231
1231
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
1232
1232
  threshold: number;
1233
1233
  } | {
@@ -1250,7 +1250,7 @@ export declare const AddPointsSchema: z.ZodObject<{
1250
1250
  count: number;
1251
1251
  withinMs?: number | undefined;
1252
1252
  counter?: {
1253
- events: string[];
1253
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
1254
1254
  match?: Record<string, {
1255
1255
  equals?: string | number | boolean | undefined;
1256
1256
  contains?: string | undefined;
@@ -1349,7 +1349,7 @@ export declare const AddPointsSchema: z.ZodObject<{
1349
1349
  maxHeight?: number | undefined;
1350
1350
  } | {
1351
1351
  type: "session_metric";
1352
- key: string;
1352
+ key: "time_on_page" | "page_views" | "scroll_depth";
1353
1353
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
1354
1354
  threshold: number;
1355
1355
  } | {
@@ -1372,7 +1372,7 @@ export declare const AddPointsSchema: z.ZodObject<{
1372
1372
  count: number;
1373
1373
  withinMs?: number | undefined;
1374
1374
  counter?: {
1375
- events: string[];
1375
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
1376
1376
  match?: Record<string, {
1377
1377
  equals?: string | number | boolean | undefined;
1378
1378
  contains?: string | undefined;
@@ -1435,7 +1435,7 @@ export declare const AddPointsSchema: z.ZodObject<{
1435
1435
  maxHeight?: number | undefined;
1436
1436
  } | {
1437
1437
  type: "session_metric";
1438
- key: string;
1438
+ key: "time_on_page" | "page_views" | "scroll_depth";
1439
1439
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
1440
1440
  threshold: number;
1441
1441
  } | {
@@ -1458,7 +1458,7 @@ export declare const AddPointsSchema: z.ZodObject<{
1458
1458
  count: number;
1459
1459
  withinMs?: number | undefined;
1460
1460
  counter?: {
1461
- events: string[];
1461
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
1462
1462
  match?: Record<string, {
1463
1463
  equals?: string | number | boolean | undefined;
1464
1464
  contains?: string | undefined;
@@ -1587,17 +1587,17 @@ export declare const actionStepSchemas: ({
1587
1587
  maxHeight?: number | undefined;
1588
1588
  }>, z.ZodObject<{
1589
1589
  type: z.ZodLiteral<"session_metric">;
1590
- key: z.ZodString;
1590
+ key: z.ZodEnum<["time_on_page", "page_views", "scroll_depth"]>;
1591
1591
  operator: z.ZodEnum<["gte", "lte", "eq", "gt", "lt"]>;
1592
1592
  threshold: z.ZodNumber;
1593
1593
  }, "strip", z.ZodTypeAny, {
1594
1594
  type: "session_metric";
1595
- key: string;
1595
+ key: "time_on_page" | "page_views" | "scroll_depth";
1596
1596
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
1597
1597
  threshold: number;
1598
1598
  }, {
1599
1599
  type: "session_metric";
1600
- key: string;
1600
+ key: "time_on_page" | "page_views" | "scroll_depth";
1601
1601
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
1602
1602
  threshold: number;
1603
1603
  }>, z.ZodObject<{
@@ -1646,7 +1646,7 @@ export declare const actionStepSchemas: ({
1646
1646
  count: z.ZodNumber;
1647
1647
  withinMs: z.ZodOptional<z.ZodNumber>;
1648
1648
  counter: z.ZodOptional<z.ZodObject<{
1649
- events: z.ZodArray<z.ZodString, "many">;
1649
+ 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">;
1650
1650
  match: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
1651
1651
  equals: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1652
1652
  contains: z.ZodOptional<z.ZodString>;
@@ -1658,13 +1658,13 @@ export declare const actionStepSchemas: ({
1658
1658
  contains?: string | undefined;
1659
1659
  }>>>;
1660
1660
  }, "strip", z.ZodTypeAny, {
1661
- events: string[];
1661
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
1662
1662
  match?: Record<string, {
1663
1663
  equals?: string | number | boolean | undefined;
1664
1664
  contains?: string | undefined;
1665
1665
  }> | undefined;
1666
1666
  }, {
1667
- events: string[];
1667
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
1668
1668
  match?: Record<string, {
1669
1669
  equals?: string | number | boolean | undefined;
1670
1670
  contains?: string | undefined;
@@ -1677,7 +1677,7 @@ export declare const actionStepSchemas: ({
1677
1677
  count: number;
1678
1678
  withinMs?: number | undefined;
1679
1679
  counter?: {
1680
- events: string[];
1680
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
1681
1681
  match?: Record<string, {
1682
1682
  equals?: string | number | boolean | undefined;
1683
1683
  contains?: string | undefined;
@@ -1690,7 +1690,7 @@ export declare const actionStepSchemas: ({
1690
1690
  count: number;
1691
1691
  withinMs?: number | undefined;
1692
1692
  counter?: {
1693
- events: string[];
1693
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
1694
1694
  match?: Record<string, {
1695
1695
  equals?: string | number | boolean | undefined;
1696
1696
  contains?: string | undefined;
@@ -1725,7 +1725,7 @@ export declare const actionStepSchemas: ({
1725
1725
  maxHeight?: number | undefined;
1726
1726
  } | {
1727
1727
  type: "session_metric";
1728
- key: string;
1728
+ key: "time_on_page" | "page_views" | "scroll_depth";
1729
1729
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
1730
1730
  threshold: number;
1731
1731
  } | {
@@ -1748,7 +1748,7 @@ export declare const actionStepSchemas: ({
1748
1748
  count: number;
1749
1749
  withinMs?: number | undefined;
1750
1750
  counter?: {
1751
- events: string[];
1751
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
1752
1752
  match?: Record<string, {
1753
1753
  equals?: string | number | boolean | undefined;
1754
1754
  contains?: string | undefined;
@@ -1783,7 +1783,7 @@ export declare const actionStepSchemas: ({
1783
1783
  maxHeight?: number | undefined;
1784
1784
  } | {
1785
1785
  type: "session_metric";
1786
- key: string;
1786
+ key: "time_on_page" | "page_views" | "scroll_depth";
1787
1787
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
1788
1788
  threshold: number;
1789
1789
  } | {
@@ -1806,7 +1806,7 @@ export declare const actionStepSchemas: ({
1806
1806
  count: number;
1807
1807
  withinMs?: number | undefined;
1808
1808
  counter?: {
1809
- events: string[];
1809
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
1810
1810
  match?: Record<string, {
1811
1811
  equals?: string | number | boolean | undefined;
1812
1812
  contains?: string | undefined;
@@ -1845,7 +1845,7 @@ export declare const actionStepSchemas: ({
1845
1845
  maxHeight?: number | undefined;
1846
1846
  } | {
1847
1847
  type: "session_metric";
1848
- key: string;
1848
+ key: "time_on_page" | "page_views" | "scroll_depth";
1849
1849
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
1850
1850
  threshold: number;
1851
1851
  } | {
@@ -1868,7 +1868,7 @@ export declare const actionStepSchemas: ({
1868
1868
  count: number;
1869
1869
  withinMs?: number | undefined;
1870
1870
  counter?: {
1871
- events: string[];
1871
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
1872
1872
  match?: Record<string, {
1873
1873
  equals?: string | number | boolean | undefined;
1874
1874
  contains?: string | undefined;
@@ -1907,7 +1907,7 @@ export declare const actionStepSchemas: ({
1907
1907
  maxHeight?: number | undefined;
1908
1908
  } | {
1909
1909
  type: "session_metric";
1910
- key: string;
1910
+ key: "time_on_page" | "page_views" | "scroll_depth";
1911
1911
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
1912
1912
  threshold: number;
1913
1913
  } | {
@@ -1930,7 +1930,7 @@ export declare const actionStepSchemas: ({
1930
1930
  count: number;
1931
1931
  withinMs?: number | undefined;
1932
1932
  counter?: {
1933
- events: string[];
1933
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
1934
1934
  match?: Record<string, {
1935
1935
  equals?: string | number | boolean | undefined;
1936
1936
  contains?: string | undefined;
@@ -2032,7 +2032,7 @@ export declare const actionStepSchemas: ({
2032
2032
  maxHeight?: number | undefined;
2033
2033
  } | {
2034
2034
  type: "session_metric";
2035
- key: string;
2035
+ key: "time_on_page" | "page_views" | "scroll_depth";
2036
2036
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
2037
2037
  threshold: number;
2038
2038
  } | {
@@ -2055,7 +2055,7 @@ export declare const actionStepSchemas: ({
2055
2055
  count: number;
2056
2056
  withinMs?: number | undefined;
2057
2057
  counter?: {
2058
- events: string[];
2058
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
2059
2059
  match?: Record<string, {
2060
2060
  equals?: string | number | boolean | undefined;
2061
2061
  contains?: string | undefined;
@@ -2121,7 +2121,7 @@ export declare const actionStepSchemas: ({
2121
2121
  maxHeight?: number | undefined;
2122
2122
  } | {
2123
2123
  type: "session_metric";
2124
- key: string;
2124
+ key: "time_on_page" | "page_views" | "scroll_depth";
2125
2125
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
2126
2126
  threshold: number;
2127
2127
  } | {
@@ -2144,7 +2144,7 @@ export declare const actionStepSchemas: ({
2144
2144
  count: number;
2145
2145
  withinMs?: number | undefined;
2146
2146
  counter?: {
2147
- events: string[];
2147
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
2148
2148
  match?: Record<string, {
2149
2149
  equals?: string | number | boolean | undefined;
2150
2150
  contains?: string | undefined;
@@ -2259,17 +2259,17 @@ export declare const actionStepSchemas: ({
2259
2259
  maxHeight?: number | undefined;
2260
2260
  }>, z.ZodObject<{
2261
2261
  type: z.ZodLiteral<"session_metric">;
2262
- key: z.ZodString;
2262
+ key: z.ZodEnum<["time_on_page", "page_views", "scroll_depth"]>;
2263
2263
  operator: z.ZodEnum<["gte", "lte", "eq", "gt", "lt"]>;
2264
2264
  threshold: z.ZodNumber;
2265
2265
  }, "strip", z.ZodTypeAny, {
2266
2266
  type: "session_metric";
2267
- key: string;
2267
+ key: "time_on_page" | "page_views" | "scroll_depth";
2268
2268
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
2269
2269
  threshold: number;
2270
2270
  }, {
2271
2271
  type: "session_metric";
2272
- key: string;
2272
+ key: "time_on_page" | "page_views" | "scroll_depth";
2273
2273
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
2274
2274
  threshold: number;
2275
2275
  }>, z.ZodObject<{
@@ -2318,7 +2318,7 @@ export declare const actionStepSchemas: ({
2318
2318
  count: z.ZodNumber;
2319
2319
  withinMs: z.ZodOptional<z.ZodNumber>;
2320
2320
  counter: z.ZodOptional<z.ZodObject<{
2321
- events: z.ZodArray<z.ZodString, "many">;
2321
+ 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">;
2322
2322
  match: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
2323
2323
  equals: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
2324
2324
  contains: z.ZodOptional<z.ZodString>;
@@ -2330,13 +2330,13 @@ export declare const actionStepSchemas: ({
2330
2330
  contains?: string | undefined;
2331
2331
  }>>>;
2332
2332
  }, "strip", z.ZodTypeAny, {
2333
- events: string[];
2333
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
2334
2334
  match?: Record<string, {
2335
2335
  equals?: string | number | boolean | undefined;
2336
2336
  contains?: string | undefined;
2337
2337
  }> | undefined;
2338
2338
  }, {
2339
- events: string[];
2339
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
2340
2340
  match?: Record<string, {
2341
2341
  equals?: string | number | boolean | undefined;
2342
2342
  contains?: string | undefined;
@@ -2349,7 +2349,7 @@ export declare const actionStepSchemas: ({
2349
2349
  count: number;
2350
2350
  withinMs?: number | undefined;
2351
2351
  counter?: {
2352
- events: string[];
2352
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
2353
2353
  match?: Record<string, {
2354
2354
  equals?: string | number | boolean | undefined;
2355
2355
  contains?: string | undefined;
@@ -2362,7 +2362,7 @@ export declare const actionStepSchemas: ({
2362
2362
  count: number;
2363
2363
  withinMs?: number | undefined;
2364
2364
  counter?: {
2365
- events: string[];
2365
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
2366
2366
  match?: Record<string, {
2367
2367
  equals?: string | number | boolean | undefined;
2368
2368
  contains?: string | undefined;
@@ -2397,7 +2397,7 @@ export declare const actionStepSchemas: ({
2397
2397
  maxHeight?: number | undefined;
2398
2398
  } | {
2399
2399
  type: "session_metric";
2400
- key: string;
2400
+ key: "time_on_page" | "page_views" | "scroll_depth";
2401
2401
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
2402
2402
  threshold: number;
2403
2403
  } | {
@@ -2420,7 +2420,7 @@ export declare const actionStepSchemas: ({
2420
2420
  count: number;
2421
2421
  withinMs?: number | undefined;
2422
2422
  counter?: {
2423
- events: string[];
2423
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
2424
2424
  match?: Record<string, {
2425
2425
  equals?: string | number | boolean | undefined;
2426
2426
  contains?: string | undefined;
@@ -2455,7 +2455,7 @@ export declare const actionStepSchemas: ({
2455
2455
  maxHeight?: number | undefined;
2456
2456
  } | {
2457
2457
  type: "session_metric";
2458
- key: string;
2458
+ key: "time_on_page" | "page_views" | "scroll_depth";
2459
2459
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
2460
2460
  threshold: number;
2461
2461
  } | {
@@ -2478,7 +2478,7 @@ export declare const actionStepSchemas: ({
2478
2478
  count: number;
2479
2479
  withinMs?: number | undefined;
2480
2480
  counter?: {
2481
- events: string[];
2481
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
2482
2482
  match?: Record<string, {
2483
2483
  equals?: string | number | boolean | undefined;
2484
2484
  contains?: string | undefined;
@@ -2517,7 +2517,7 @@ export declare const actionStepSchemas: ({
2517
2517
  maxHeight?: number | undefined;
2518
2518
  } | {
2519
2519
  type: "session_metric";
2520
- key: string;
2520
+ key: "time_on_page" | "page_views" | "scroll_depth";
2521
2521
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
2522
2522
  threshold: number;
2523
2523
  } | {
@@ -2540,7 +2540,7 @@ export declare const actionStepSchemas: ({
2540
2540
  count: number;
2541
2541
  withinMs?: number | undefined;
2542
2542
  counter?: {
2543
- events: string[];
2543
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
2544
2544
  match?: Record<string, {
2545
2545
  equals?: string | number | boolean | undefined;
2546
2546
  contains?: string | undefined;
@@ -2579,7 +2579,7 @@ export declare const actionStepSchemas: ({
2579
2579
  maxHeight?: number | undefined;
2580
2580
  } | {
2581
2581
  type: "session_metric";
2582
- key: string;
2582
+ key: "time_on_page" | "page_views" | "scroll_depth";
2583
2583
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
2584
2584
  threshold: number;
2585
2585
  } | {
@@ -2602,7 +2602,7 @@ export declare const actionStepSchemas: ({
2602
2602
  count: number;
2603
2603
  withinMs?: number | undefined;
2604
2604
  counter?: {
2605
- events: string[];
2605
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
2606
2606
  match?: Record<string, {
2607
2607
  equals?: string | number | boolean | undefined;
2608
2608
  contains?: string | undefined;
@@ -2701,7 +2701,7 @@ export declare const actionStepSchemas: ({
2701
2701
  maxHeight?: number | undefined;
2702
2702
  } | {
2703
2703
  type: "session_metric";
2704
- key: string;
2704
+ key: "time_on_page" | "page_views" | "scroll_depth";
2705
2705
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
2706
2706
  threshold: number;
2707
2707
  } | {
@@ -2724,7 +2724,7 @@ export declare const actionStepSchemas: ({
2724
2724
  count: number;
2725
2725
  withinMs?: number | undefined;
2726
2726
  counter?: {
2727
- events: string[];
2727
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
2728
2728
  match?: Record<string, {
2729
2729
  equals?: string | number | boolean | undefined;
2730
2730
  contains?: string | undefined;
@@ -2787,7 +2787,7 @@ export declare const actionStepSchemas: ({
2787
2787
  maxHeight?: number | undefined;
2788
2788
  } | {
2789
2789
  type: "session_metric";
2790
- key: string;
2790
+ key: "time_on_page" | "page_views" | "scroll_depth";
2791
2791
  operator: "gte" | "lte" | "eq" | "gt" | "lt";
2792
2792
  threshold: number;
2793
2793
  } | {
@@ -2810,7 +2810,7 @@ export declare const actionStepSchemas: ({
2810
2810
  count: number;
2811
2811
  withinMs?: number | undefined;
2812
2812
  counter?: {
2813
- events: string[];
2813
+ events: ("ui.click" | "ui.scroll" | "ui.input" | "ui.change" | "ui.submit" | "ui.hover" | "ui.idle" | "ui.scroll_thrash" | "ui.focus_bounce" | "nav.page_view" | "nav.page_leave" | "behavior.rage_click" | "behavior.hesitation" | "behavior.confusion")[];
2814
2814
  match?: Record<string, {
2815
2815
  equals?: string | number | boolean | undefined;
2816
2816
  contains?: string | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../src/schema.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../src/schema.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@syntrologie/adapt-gamification",
3
- "version": "2.8.0-canary.63",
3
+ "version": "2.8.0-canary.64",
4
4
  "description": "Adaptive Gamification app - Badges, rewards, points, and engagement mechanics",
5
5
  "license": "Proprietary",
6
6
  "private": false,