@syntrologie/runtime-sdk 2.4.0-canary.17 → 2.4.0-canary.19

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.
Files changed (36) hide show
  1. package/dist/actions/schema.d.ts +7256 -384
  2. package/dist/actions/schema.js +2 -2
  3. package/dist/actions/types.d.ts +7 -0
  4. package/dist/anchor/AnchorResolver.d.ts +18 -0
  5. package/dist/anchor/index.d.ts +2 -0
  6. package/dist/{chunk-LZLDT5DA.js → chunk-LR5AA5SE.js} +2 -2
  7. package/dist/{chunk-VIGV46CB.js → chunk-LRN3K2VD.js} +284 -102
  8. package/dist/chunk-LRN3K2VD.js.map +7 -0
  9. package/dist/{chunk-4NYS7GAW.js → chunk-P5G4KT2U.js} +39 -6
  10. package/dist/chunk-P5G4KT2U.js.map +7 -0
  11. package/dist/config/schema.d.ts +448 -40
  12. package/dist/config/schema.js +1 -1
  13. package/dist/context/schema.d.ts +8 -8
  14. package/dist/decisions/schema.d.ts +424 -1408
  15. package/dist/decisions/schema.js +5 -1
  16. package/dist/decisions/types.d.ts +22 -0
  17. package/dist/events/registerConfigPredicates.d.ts +6 -10
  18. package/dist/events/schema.d.ts +8 -8
  19. package/dist/index.d.ts +1 -0
  20. package/dist/index.js +9 -77
  21. package/dist/index.js.map +3 -3
  22. package/dist/overlays/schema.d.ts +22 -22
  23. package/dist/react.js +3 -3
  24. package/dist/runtime.d.ts +3 -0
  25. package/dist/smart-canvas.esm.js +36 -37
  26. package/dist/smart-canvas.esm.js.map +4 -4
  27. package/dist/smart-canvas.js +320 -179
  28. package/dist/smart-canvas.js.map +4 -4
  29. package/dist/smart-canvas.min.js +36 -37
  30. package/dist/smart-canvas.min.js.map +4 -4
  31. package/dist/version.d.ts +1 -1
  32. package/package.json +7 -7
  33. package/schema/canvas-config.schema.json +996 -56
  34. package/dist/chunk-4NYS7GAW.js.map +0 -7
  35. package/dist/chunk-VIGV46CB.js.map +0 -7
  36. /package/dist/{chunk-LZLDT5DA.js.map → chunk-LR5AA5SE.js.map} +0 -0
@@ -388,6 +388,56 @@
388
388
  },
389
389
  "additionalProperties": false
390
390
  },
391
+ "matchOp": {
392
+ "type": "object",
393
+ "properties": {
394
+ "equals": {
395
+ "type": [
396
+ "string",
397
+ "number",
398
+ "boolean"
399
+ ]
400
+ },
401
+ "contains": {
402
+ "type": "string"
403
+ }
404
+ },
405
+ "additionalProperties": false,
406
+ "oneOf": [
407
+ {
408
+ "required": [
409
+ "equals"
410
+ ]
411
+ },
412
+ {
413
+ "required": [
414
+ "contains"
415
+ ]
416
+ }
417
+ ]
418
+ },
419
+ "counterDef": {
420
+ "type": "object",
421
+ "properties": {
422
+ "events": {
423
+ "type": "array",
424
+ "items": {
425
+ "type": "string"
426
+ },
427
+ "minItems": 1
428
+ },
429
+ "match": {
430
+ "type": "object",
431
+ "additionalProperties": {
432
+ "$ref": "#/$defs/matchOp"
433
+ }
434
+ }
435
+ },
436
+ "required": [
437
+ "events"
438
+ ],
439
+ "additionalProperties": false
440
+ },
391
441
  "activationConfig": {
392
442
  "type": "object",
393
443
  "properties": {
@@ -793,6 +843,9 @@
793
843
  "withinMs": {
794
844
  "type": "number",
795
845
  "exclusiveMinimum": 0
846
+ },
847
+ "counter": {
848
+ "$ref": "#/$defs/counterDef"
796
849
  }
797
850
  },
798
851
  "required": [
@@ -1130,6 +1183,41 @@
1130
1183
  "withinMs": {
1131
1184
  "type": "number",
1132
1185
  "exclusiveMinimum": 0
1186
+ },
1187
+ "counter": {
1188
+ "type": "object",
1189
+ "properties": {
1190
+ "events": {
1191
+ "type": "array",
1192
+ "items": {
1193
+ "type": "string"
1194
+ },
1195
+ "minItems": 1
1196
+ },
1197
+ "match": {
1198
+ "type": "object",
1199
+ "additionalProperties": {
1200
+ "type": "object",
1201
+ "properties": {
1202
+ "equals": {
1203
+ "type": [
1204
+ "string",
1205
+ "number",
1206
+ "boolean"
1207
+ ]
1208
+ },
1209
+ "contains": {
1210
+ "type": "string"
1211
+ }
1212
+ },
1213
+ "additionalProperties": false
1214
+ }
1215
+ }
1216
+ },
1217
+ "required": [
1218
+ "events"
1219
+ ],
1220
+ "additionalProperties": false
1133
1221
  }
1134
1222
  },
1135
1223
  "required": [
@@ -1567,6 +1655,41 @@
1567
1655
  "withinMs": {
1568
1656
  "type": "number",
1569
1657
  "exclusiveMinimum": 0
1658
+ },
1659
+ "counter": {
1660
+ "type": "object",
1661
+ "properties": {
1662
+ "events": {
1663
+ "type": "array",
1664
+ "items": {
1665
+ "type": "string"
1666
+ },
1667
+ "minItems": 1
1668
+ },
1669
+ "match": {
1670
+ "type": "object",
1671
+ "additionalProperties": {
1672
+ "type": "object",
1673
+ "properties": {
1674
+ "equals": {
1675
+ "type": [
1676
+ "string",
1677
+ "number",
1678
+ "boolean"
1679
+ ]
1680
+ },
1681
+ "contains": {
1682
+ "type": "string"
1683
+ }
1684
+ },
1685
+ "additionalProperties": false
1686
+ }
1687
+ }
1688
+ },
1689
+ "required": [
1690
+ "events"
1691
+ ],
1692
+ "additionalProperties": false
1570
1693
  }
1571
1694
  },
1572
1695
  "required": [
@@ -2002,6 +2125,41 @@
2002
2125
  "withinMs": {
2003
2126
  "type": "number",
2004
2127
  "exclusiveMinimum": 0
2128
+ },
2129
+ "counter": {
2130
+ "type": "object",
2131
+ "properties": {
2132
+ "events": {
2133
+ "type": "array",
2134
+ "items": {
2135
+ "type": "string"
2136
+ },
2137
+ "minItems": 1
2138
+ },
2139
+ "match": {
2140
+ "type": "object",
2141
+ "additionalProperties": {
2142
+ "type": "object",
2143
+ "properties": {
2144
+ "equals": {
2145
+ "type": [
2146
+ "string",
2147
+ "number",
2148
+ "boolean"
2149
+ ]
2150
+ },
2151
+ "contains": {
2152
+ "type": "string"
2153
+ }
2154
+ },
2155
+ "additionalProperties": false
2156
+ }
2157
+ }
2158
+ },
2159
+ "required": [
2160
+ "events"
2161
+ ],
2162
+ "additionalProperties": false
2005
2163
  }
2006
2164
  },
2007
2165
  "required": [
@@ -2436,6 +2594,41 @@
2436
2594
  "withinMs": {
2437
2595
  "type": "number",
2438
2596
  "exclusiveMinimum": 0
2597
+ },
2598
+ "counter": {
2599
+ "type": "object",
2600
+ "properties": {
2601
+ "events": {
2602
+ "type": "array",
2603
+ "items": {
2604
+ "type": "string"
2605
+ },
2606
+ "minItems": 1
2607
+ },
2608
+ "match": {
2609
+ "type": "object",
2610
+ "additionalProperties": {
2611
+ "type": "object",
2612
+ "properties": {
2613
+ "equals": {
2614
+ "type": [
2615
+ "string",
2616
+ "number",
2617
+ "boolean"
2618
+ ]
2619
+ },
2620
+ "contains": {
2621
+ "type": "string"
2622
+ }
2623
+ },
2624
+ "additionalProperties": false
2625
+ }
2626
+ }
2627
+ },
2628
+ "required": [
2629
+ "events"
2630
+ ],
2631
+ "additionalProperties": false
2439
2632
  }
2440
2633
  },
2441
2634
  "required": [
@@ -2873,6 +3066,41 @@
2873
3066
  "withinMs": {
2874
3067
  "type": "number",
2875
3068
  "exclusiveMinimum": 0
3069
+ },
3070
+ "counter": {
3071
+ "type": "object",
3072
+ "properties": {
3073
+ "events": {
3074
+ "type": "array",
3075
+ "items": {
3076
+ "type": "string"
3077
+ },
3078
+ "minItems": 1
3079
+ },
3080
+ "match": {
3081
+ "type": "object",
3082
+ "additionalProperties": {
3083
+ "type": "object",
3084
+ "properties": {
3085
+ "equals": {
3086
+ "type": [
3087
+ "string",
3088
+ "number",
3089
+ "boolean"
3090
+ ]
3091
+ },
3092
+ "contains": {
3093
+ "type": "string"
3094
+ }
3095
+ },
3096
+ "additionalProperties": false
3097
+ }
3098
+ }
3099
+ },
3100
+ "required": [
3101
+ "events"
3102
+ ],
3103
+ "additionalProperties": false
2876
3104
  }
2877
3105
  },
2878
3106
  "required": [
@@ -3317,6 +3545,41 @@
3317
3545
  "withinMs": {
3318
3546
  "type": "number",
3319
3547
  "exclusiveMinimum": 0
3548
+ },
3549
+ "counter": {
3550
+ "type": "object",
3551
+ "properties": {
3552
+ "events": {
3553
+ "type": "array",
3554
+ "items": {
3555
+ "type": "string"
3556
+ },
3557
+ "minItems": 1
3558
+ },
3559
+ "match": {
3560
+ "type": "object",
3561
+ "additionalProperties": {
3562
+ "type": "object",
3563
+ "properties": {
3564
+ "equals": {
3565
+ "type": [
3566
+ "string",
3567
+ "number",
3568
+ "boolean"
3569
+ ]
3570
+ },
3571
+ "contains": {
3572
+ "type": "string"
3573
+ }
3574
+ },
3575
+ "additionalProperties": false
3576
+ }
3577
+ }
3578
+ },
3579
+ "required": [
3580
+ "events"
3581
+ ],
3582
+ "additionalProperties": false
3320
3583
  }
3321
3584
  },
3322
3585
  "required": [
@@ -3772,6 +4035,41 @@
3772
4035
  "withinMs": {
3773
4036
  "type": "number",
3774
4037
  "exclusiveMinimum": 0
4038
+ },
4039
+ "counter": {
4040
+ "type": "object",
4041
+ "properties": {
4042
+ "events": {
4043
+ "type": "array",
4044
+ "items": {
4045
+ "type": "string"
4046
+ },
4047
+ "minItems": 1
4048
+ },
4049
+ "match": {
4050
+ "type": "object",
4051
+ "additionalProperties": {
4052
+ "type": "object",
4053
+ "properties": {
4054
+ "equals": {
4055
+ "type": [
4056
+ "string",
4057
+ "number",
4058
+ "boolean"
4059
+ ]
4060
+ },
4061
+ "contains": {
4062
+ "type": "string"
4063
+ }
4064
+ },
4065
+ "additionalProperties": false
4066
+ }
4067
+ }
4068
+ },
4069
+ "required": [
4070
+ "events"
4071
+ ],
4072
+ "additionalProperties": false
3775
4073
  }
3776
4074
  },
3777
4075
  "required": [
@@ -4205,6 +4503,41 @@
4205
4503
  "withinMs": {
4206
4504
  "type": "number",
4207
4505
  "exclusiveMinimum": 0
4506
+ },
4507
+ "counter": {
4508
+ "type": "object",
4509
+ "properties": {
4510
+ "events": {
4511
+ "type": "array",
4512
+ "items": {
4513
+ "type": "string"
4514
+ },
4515
+ "minItems": 1
4516
+ },
4517
+ "match": {
4518
+ "type": "object",
4519
+ "additionalProperties": {
4520
+ "type": "object",
4521
+ "properties": {
4522
+ "equals": {
4523
+ "type": [
4524
+ "string",
4525
+ "number",
4526
+ "boolean"
4527
+ ]
4528
+ },
4529
+ "contains": {
4530
+ "type": "string"
4531
+ }
4532
+ },
4533
+ "additionalProperties": false
4534
+ }
4535
+ }
4536
+ },
4537
+ "required": [
4538
+ "events"
4539
+ ],
4540
+ "additionalProperties": false
4208
4541
  }
4209
4542
  },
4210
4543
  "required": [
@@ -4647,6 +4980,41 @@
4647
4980
  "withinMs": {
4648
4981
  "type": "number",
4649
4982
  "exclusiveMinimum": 0
4983
+ },
4984
+ "counter": {
4985
+ "type": "object",
4986
+ "properties": {
4987
+ "events": {
4988
+ "type": "array",
4989
+ "items": {
4990
+ "type": "string"
4991
+ },
4992
+ "minItems": 1
4993
+ },
4994
+ "match": {
4995
+ "type": "object",
4996
+ "additionalProperties": {
4997
+ "type": "object",
4998
+ "properties": {
4999
+ "equals": {
5000
+ "type": [
5001
+ "string",
5002
+ "number",
5003
+ "boolean"
5004
+ ]
5005
+ },
5006
+ "contains": {
5007
+ "type": "string"
5008
+ }
5009
+ },
5010
+ "additionalProperties": false
5011
+ }
5012
+ }
5013
+ },
5014
+ "required": [
5015
+ "events"
5016
+ ],
5017
+ "additionalProperties": false
4650
5018
  }
4651
5019
  },
4652
5020
  "required": [
@@ -5143,6 +5511,41 @@
5143
5511
  "withinMs": {
5144
5512
  "type": "number",
5145
5513
  "exclusiveMinimum": 0
5514
+ },
5515
+ "counter": {
5516
+ "type": "object",
5517
+ "properties": {
5518
+ "events": {
5519
+ "type": "array",
5520
+ "items": {
5521
+ "type": "string"
5522
+ },
5523
+ "minItems": 1
5524
+ },
5525
+ "match": {
5526
+ "type": "object",
5527
+ "additionalProperties": {
5528
+ "type": "object",
5529
+ "properties": {
5530
+ "equals": {
5531
+ "type": [
5532
+ "string",
5533
+ "number",
5534
+ "boolean"
5535
+ ]
5536
+ },
5537
+ "contains": {
5538
+ "type": "string"
5539
+ }
5540
+ },
5541
+ "additionalProperties": false
5542
+ }
5543
+ }
5544
+ },
5545
+ "required": [
5546
+ "events"
5547
+ ],
5548
+ "additionalProperties": false
5146
5549
  }
5147
5550
  },
5148
5551
  "required": [
@@ -5626,6 +6029,41 @@
5626
6029
  "withinMs": {
5627
6030
  "type": "number",
5628
6031
  "exclusiveMinimum": 0
6032
+ },
6033
+ "counter": {
6034
+ "type": "object",
6035
+ "properties": {
6036
+ "events": {
6037
+ "type": "array",
6038
+ "items": {
6039
+ "type": "string"
6040
+ },
6041
+ "minItems": 1
6042
+ },
6043
+ "match": {
6044
+ "type": "object",
6045
+ "additionalProperties": {
6046
+ "type": "object",
6047
+ "properties": {
6048
+ "equals": {
6049
+ "type": [
6050
+ "string",
6051
+ "number",
6052
+ "boolean"
6053
+ ]
6054
+ },
6055
+ "contains": {
6056
+ "type": "string"
6057
+ }
6058
+ },
6059
+ "additionalProperties": false
6060
+ }
6061
+ }
6062
+ },
6063
+ "required": [
6064
+ "events"
6065
+ ],
6066
+ "additionalProperties": false
5629
6067
  }
5630
6068
  },
5631
6069
  "required": [
@@ -6082,6 +6520,41 @@
6082
6520
  "withinMs": {
6083
6521
  "type": "number",
6084
6522
  "exclusiveMinimum": 0
6523
+ },
6524
+ "counter": {
6525
+ "type": "object",
6526
+ "properties": {
6527
+ "events": {
6528
+ "type": "array",
6529
+ "items": {
6530
+ "type": "string"
6531
+ },
6532
+ "minItems": 1
6533
+ },
6534
+ "match": {
6535
+ "type": "object",
6536
+ "additionalProperties": {
6537
+ "type": "object",
6538
+ "properties": {
6539
+ "equals": {
6540
+ "type": [
6541
+ "string",
6542
+ "number",
6543
+ "boolean"
6544
+ ]
6545
+ },
6546
+ "contains": {
6547
+ "type": "string"
6548
+ }
6549
+ },
6550
+ "additionalProperties": false
6551
+ }
6552
+ }
6553
+ },
6554
+ "required": [
6555
+ "events"
6556
+ ],
6557
+ "additionalProperties": false
6085
6558
  }
6086
6559
  },
6087
6560
  "required": [
@@ -6496,6 +6969,41 @@
6496
6969
  "withinMs": {
6497
6970
  "type": "number",
6498
6971
  "exclusiveMinimum": 0
6972
+ },
6973
+ "counter": {
6974
+ "type": "object",
6975
+ "properties": {
6976
+ "events": {
6977
+ "type": "array",
6978
+ "items": {
6979
+ "type": "string"
6980
+ },
6981
+ "minItems": 1
6982
+ },
6983
+ "match": {
6984
+ "type": "object",
6985
+ "additionalProperties": {
6986
+ "type": "object",
6987
+ "properties": {
6988
+ "equals": {
6989
+ "type": [
6990
+ "string",
6991
+ "number",
6992
+ "boolean"
6993
+ ]
6994
+ },
6995
+ "contains": {
6996
+ "type": "string"
6997
+ }
6998
+ },
6999
+ "additionalProperties": false
7000
+ }
7001
+ }
7002
+ },
7003
+ "required": [
7004
+ "events"
7005
+ ],
7006
+ "additionalProperties": false
6499
7007
  }
6500
7008
  },
6501
7009
  "required": [
@@ -6928,6 +7436,41 @@
6928
7436
  "withinMs": {
6929
7437
  "type": "number",
6930
7438
  "exclusiveMinimum": 0
7439
+ },
7440
+ "counter": {
7441
+ "type": "object",
7442
+ "properties": {
7443
+ "events": {
7444
+ "type": "array",
7445
+ "items": {
7446
+ "type": "string"
7447
+ },
7448
+ "minItems": 1
7449
+ },
7450
+ "match": {
7451
+ "type": "object",
7452
+ "additionalProperties": {
7453
+ "type": "object",
7454
+ "properties": {
7455
+ "equals": {
7456
+ "type": [
7457
+ "string",
7458
+ "number",
7459
+ "boolean"
7460
+ ]
7461
+ },
7462
+ "contains": {
7463
+ "type": "string"
7464
+ }
7465
+ },
7466
+ "additionalProperties": false
7467
+ }
7468
+ }
7469
+ },
7470
+ "required": [
7471
+ "events"
7472
+ ],
7473
+ "additionalProperties": false
6931
7474
  }
6932
7475
  },
6933
7476
  "required": [
@@ -7340,6 +7883,41 @@
7340
7883
  "withinMs": {
7341
7884
  "type": "number",
7342
7885
  "exclusiveMinimum": 0
7886
+ },
7887
+ "counter": {
7888
+ "type": "object",
7889
+ "properties": {
7890
+ "events": {
7891
+ "type": "array",
7892
+ "items": {
7893
+ "type": "string"
7894
+ },
7895
+ "minItems": 1
7896
+ },
7897
+ "match": {
7898
+ "type": "object",
7899
+ "additionalProperties": {
7900
+ "type": "object",
7901
+ "properties": {
7902
+ "equals": {
7903
+ "type": [
7904
+ "string",
7905
+ "number",
7906
+ "boolean"
7907
+ ]
7908
+ },
7909
+ "contains": {
7910
+ "type": "string"
7911
+ }
7912
+ },
7913
+ "additionalProperties": false
7914
+ }
7915
+ }
7916
+ },
7917
+ "required": [
7918
+ "events"
7919
+ ],
7920
+ "additionalProperties": false
7343
7921
  }
7344
7922
  },
7345
7923
  "required": [
@@ -7749,6 +8327,41 @@
7749
8327
  "withinMs": {
7750
8328
  "type": "number",
7751
8329
  "exclusiveMinimum": 0
8330
+ },
8331
+ "counter": {
8332
+ "type": "object",
8333
+ "properties": {
8334
+ "events": {
8335
+ "type": "array",
8336
+ "items": {
8337
+ "type": "string"
8338
+ },
8339
+ "minItems": 1
8340
+ },
8341
+ "match": {
8342
+ "type": "object",
8343
+ "additionalProperties": {
8344
+ "type": "object",
8345
+ "properties": {
8346
+ "equals": {
8347
+ "type": [
8348
+ "string",
8349
+ "number",
8350
+ "boolean"
8351
+ ]
8352
+ },
8353
+ "contains": {
8354
+ "type": "string"
8355
+ }
8356
+ },
8357
+ "additionalProperties": false
8358
+ }
8359
+ }
8360
+ },
8361
+ "required": [
8362
+ "events"
8363
+ ],
8364
+ "additionalProperties": false
7752
8365
  }
7753
8366
  },
7754
8367
  "required": [
@@ -8166,6 +8779,41 @@
8166
8779
  "withinMs": {
8167
8780
  "type": "number",
8168
8781
  "exclusiveMinimum": 0
8782
+ },
8783
+ "counter": {
8784
+ "type": "object",
8785
+ "properties": {
8786
+ "events": {
8787
+ "type": "array",
8788
+ "items": {
8789
+ "type": "string"
8790
+ },
8791
+ "minItems": 1
8792
+ },
8793
+ "match": {
8794
+ "type": "object",
8795
+ "additionalProperties": {
8796
+ "type": "object",
8797
+ "properties": {
8798
+ "equals": {
8799
+ "type": [
8800
+ "string",
8801
+ "number",
8802
+ "boolean"
8803
+ ]
8804
+ },
8805
+ "contains": {
8806
+ "type": "string"
8807
+ }
8808
+ },
8809
+ "additionalProperties": false
8810
+ }
8811
+ }
8812
+ },
8813
+ "required": [
8814
+ "events"
8815
+ ],
8816
+ "additionalProperties": false
8169
8817
  }
8170
8818
  },
8171
8819
  "required": [
@@ -8607,6 +9255,41 @@
8607
9255
  "withinMs": {
8608
9256
  "type": "number",
8609
9257
  "exclusiveMinimum": 0
9258
+ },
9259
+ "counter": {
9260
+ "type": "object",
9261
+ "properties": {
9262
+ "events": {
9263
+ "type": "array",
9264
+ "items": {
9265
+ "type": "string"
9266
+ },
9267
+ "minItems": 1
9268
+ },
9269
+ "match": {
9270
+ "type": "object",
9271
+ "additionalProperties": {
9272
+ "type": "object",
9273
+ "properties": {
9274
+ "equals": {
9275
+ "type": [
9276
+ "string",
9277
+ "number",
9278
+ "boolean"
9279
+ ]
9280
+ },
9281
+ "contains": {
9282
+ "type": "string"
9283
+ }
9284
+ },
9285
+ "additionalProperties": false
9286
+ }
9287
+ }
9288
+ },
9289
+ "required": [
9290
+ "events"
9291
+ ],
9292
+ "additionalProperties": false
8610
9293
  }
8611
9294
  },
8612
9295
  "required": [
@@ -9136,6 +9819,41 @@
9136
9819
  "withinMs": {
9137
9820
  "type": "number",
9138
9821
  "exclusiveMinimum": 0
9822
+ },
9823
+ "counter": {
9824
+ "type": "object",
9825
+ "properties": {
9826
+ "events": {
9827
+ "type": "array",
9828
+ "items": {
9829
+ "type": "string"
9830
+ },
9831
+ "minItems": 1
9832
+ },
9833
+ "match": {
9834
+ "type": "object",
9835
+ "additionalProperties": {
9836
+ "type": "object",
9837
+ "properties": {
9838
+ "equals": {
9839
+ "type": [
9840
+ "string",
9841
+ "number",
9842
+ "boolean"
9843
+ ]
9844
+ },
9845
+ "contains": {
9846
+ "type": "string"
9847
+ }
9848
+ },
9849
+ "additionalProperties": false
9850
+ }
9851
+ }
9852
+ },
9853
+ "required": [
9854
+ "events"
9855
+ ],
9856
+ "additionalProperties": false
9139
9857
  }
9140
9858
  },
9141
9859
  "required": [
@@ -9762,6 +10480,41 @@
9762
10480
  "withinMs": {
9763
10481
  "type": "number",
9764
10482
  "exclusiveMinimum": 0
10483
+ },
10484
+ "counter": {
10485
+ "type": "object",
10486
+ "properties": {
10487
+ "events": {
10488
+ "type": "array",
10489
+ "items": {
10490
+ "type": "string"
10491
+ },
10492
+ "minItems": 1
10493
+ },
10494
+ "match": {
10495
+ "type": "object",
10496
+ "additionalProperties": {
10497
+ "type": "object",
10498
+ "properties": {
10499
+ "equals": {
10500
+ "type": [
10501
+ "string",
10502
+ "number",
10503
+ "boolean"
10504
+ ]
10505
+ },
10506
+ "contains": {
10507
+ "type": "string"
10508
+ }
10509
+ },
10510
+ "additionalProperties": false
10511
+ }
10512
+ }
10513
+ },
10514
+ "required": [
10515
+ "events"
10516
+ ],
10517
+ "additionalProperties": false
9765
10518
  }
9766
10519
  },
9767
10520
  "required": [
@@ -10602,6 +11355,41 @@
10602
11355
  "withinMs": {
10603
11356
  "type": "number",
10604
11357
  "exclusiveMinimum": 0
11358
+ },
11359
+ "counter": {
11360
+ "type": "object",
11361
+ "properties": {
11362
+ "events": {
11363
+ "type": "array",
11364
+ "items": {
11365
+ "type": "string"
11366
+ },
11367
+ "minItems": 1
11368
+ },
11369
+ "match": {
11370
+ "type": "object",
11371
+ "additionalProperties": {
11372
+ "type": "object",
11373
+ "properties": {
11374
+ "equals": {
11375
+ "type": [
11376
+ "string",
11377
+ "number",
11378
+ "boolean"
11379
+ ]
11380
+ },
11381
+ "contains": {
11382
+ "type": "string"
11383
+ }
11384
+ },
11385
+ "additionalProperties": false
11386
+ }
11387
+ }
11388
+ },
11389
+ "required": [
11390
+ "events"
11391
+ ],
11392
+ "additionalProperties": false
10605
11393
  }
10606
11394
  },
10607
11395
  "required": [
@@ -10763,6 +11551,71 @@
10763
11551
  ],
10764
11552
  "additionalProperties": false
10765
11553
  },
11554
+ "celebrate": {
11555
+ "type": "object",
11556
+ "properties": {
11557
+ "kind": {
11558
+ "type": "string",
11559
+ "const": "overlays:celebrate"
11560
+ },
11561
+ "effect": {
11562
+ "type": "string"
11563
+ },
11564
+ "duration": {
11565
+ "type": "number"
11566
+ },
11567
+ "intensity": {
11568
+ "type": "string",
11569
+ "enum": [
11570
+ "light",
11571
+ "medium",
11572
+ "heavy"
11573
+ ]
11574
+ },
11575
+ "colors": {
11576
+ "type": "array",
11577
+ "items": {
11578
+ "type": "string"
11579
+ }
11580
+ },
11581
+ "props": {
11582
+ "type": "object",
11583
+ "additionalProperties": {}
11584
+ },
11585
+ "label": {
11586
+ "type": "string"
11587
+ },
11588
+ "activation": {
11589
+ "type": "object",
11590
+ "properties": {
11591
+ "routes": {
11592
+ "type": "object",
11593
+ "properties": {
11594
+ "include": {
11595
+ "type": "array",
11596
+ "items": {
11597
+ "type": "string"
11598
+ }
11599
+ },
11600
+ "exclude": {
11601
+ "type": "array",
11602
+ "items": {
11603
+ "type": "string"
11604
+ }
11605
+ }
11606
+ },
11607
+ "additionalProperties": false
11608
+ }
11609
+ },
11610
+ "additionalProperties": false
11611
+ }
11612
+ },
11613
+ "required": [
11614
+ "kind",
11615
+ "effect"
11616
+ ],
11617
+ "additionalProperties": false
11618
+ },
10766
11619
  "chatbotAssistantProps": {
10767
11620
  "type": "object",
10768
11621
  "properties": {
@@ -11222,6 +12075,41 @@
11222
12075
  "withinMs": {
11223
12076
  "type": "number",
11224
12077
  "exclusiveMinimum": 0
12078
+ },
12079
+ "counter": {
12080
+ "type": "object",
12081
+ "properties": {
12082
+ "events": {
12083
+ "type": "array",
12084
+ "items": {
12085
+ "type": "string"
12086
+ },
12087
+ "minItems": 1
12088
+ },
12089
+ "match": {
12090
+ "type": "object",
12091
+ "additionalProperties": {
12092
+ "type": "object",
12093
+ "properties": {
12094
+ "equals": {
12095
+ "type": [
12096
+ "string",
12097
+ "number",
12098
+ "boolean"
12099
+ ]
12100
+ },
12101
+ "contains": {
12102
+ "type": "string"
12103
+ }
12104
+ },
12105
+ "additionalProperties": false
12106
+ }
12107
+ }
12108
+ },
12109
+ "required": [
12110
+ "events"
12111
+ ],
12112
+ "additionalProperties": false
11225
12113
  }
11226
12114
  },
11227
12115
  "required": [
@@ -11699,6 +12587,41 @@
11699
12587
  "withinMs": {
11700
12588
  "type": "number",
11701
12589
  "exclusiveMinimum": 0
12590
+ },
12591
+ "counter": {
12592
+ "type": "object",
12593
+ "properties": {
12594
+ "events": {
12595
+ "type": "array",
12596
+ "items": {
12597
+ "type": "string"
12598
+ },
12599
+ "minItems": 1
12600
+ },
12601
+ "match": {
12602
+ "type": "object",
12603
+ "additionalProperties": {
12604
+ "type": "object",
12605
+ "properties": {
12606
+ "equals": {
12607
+ "type": [
12608
+ "string",
12609
+ "number",
12610
+ "boolean"
12611
+ ]
12612
+ },
12613
+ "contains": {
12614
+ "type": "string"
12615
+ }
12616
+ },
12617
+ "additionalProperties": false
12618
+ }
12619
+ }
12620
+ },
12621
+ "required": [
12622
+ "events"
12623
+ ],
12624
+ "additionalProperties": false
11702
12625
  }
11703
12626
  },
11704
12627
  "required": [
@@ -12217,6 +13140,41 @@
12217
13140
  "withinMs": {
12218
13141
  "type": "number",
12219
13142
  "exclusiveMinimum": 0
13143
+ },
13144
+ "counter": {
13145
+ "type": "object",
13146
+ "properties": {
13147
+ "events": {
13148
+ "type": "array",
13149
+ "items": {
13150
+ "type": "string"
13151
+ },
13152
+ "minItems": 1
13153
+ },
13154
+ "match": {
13155
+ "type": "object",
13156
+ "additionalProperties": {
13157
+ "type": "object",
13158
+ "properties": {
13159
+ "equals": {
13160
+ "type": [
13161
+ "string",
13162
+ "number",
13163
+ "boolean"
13164
+ ]
13165
+ },
13166
+ "contains": {
13167
+ "type": "string"
13168
+ }
13169
+ },
13170
+ "additionalProperties": false
13171
+ }
13172
+ }
13173
+ },
13174
+ "required": [
13175
+ "events"
13176
+ ],
13177
+ "additionalProperties": false
12220
13178
  }
12221
13179
  },
12222
13180
  "required": [
@@ -12381,34 +13339,6 @@
12381
13339
  ],
12382
13340
  "additionalProperties": false
12383
13341
  }
12384
- },
12385
- "scope": {
12386
- "type": "object",
12387
- "properties": {
12388
- "events": {
12389
- "type": "array",
12390
- "items": {
12391
- "type": "string"
12392
- }
12393
- },
12394
- "urlContains": {
12395
- "type": "string"
12396
- },
12397
- "props": {
12398
- "type": "object",
12399
- "additionalProperties": {
12400
- "type": [
12401
- "string",
12402
- "number",
12403
- "boolean"
12404
- ]
12405
- }
12406
- }
12407
- },
12408
- "required": [
12409
- "events"
12410
- ],
12411
- "additionalProperties": false
12412
13342
  }
12413
13343
  },
12414
13344
  "additionalProperties": false
@@ -12747,6 +13677,41 @@
12747
13677
  "withinMs": {
12748
13678
  "type": "number",
12749
13679
  "exclusiveMinimum": 0
13680
+ },
13681
+ "counter": {
13682
+ "type": "object",
13683
+ "properties": {
13684
+ "events": {
13685
+ "type": "array",
13686
+ "items": {
13687
+ "type": "string"
13688
+ },
13689
+ "minItems": 1
13690
+ },
13691
+ "match": {
13692
+ "type": "object",
13693
+ "additionalProperties": {
13694
+ "type": "object",
13695
+ "properties": {
13696
+ "equals": {
13697
+ "type": [
13698
+ "string",
13699
+ "number",
13700
+ "boolean"
13701
+ ]
13702
+ },
13703
+ "contains": {
13704
+ "type": "string"
13705
+ }
13706
+ },
13707
+ "additionalProperties": false
13708
+ }
13709
+ }
13710
+ },
13711
+ "required": [
13712
+ "events"
13713
+ ],
13714
+ "additionalProperties": false
12750
13715
  }
12751
13716
  },
12752
13717
  "required": [
@@ -12909,34 +13874,6 @@
12909
13874
  "additionalProperties": false
12910
13875
  },
12911
13876
  "default": []
12912
- },
12913
- "scope": {
12914
- "type": "object",
12915
- "properties": {
12916
- "events": {
12917
- "type": "array",
12918
- "items": {
12919
- "type": "string"
12920
- }
12921
- },
12922
- "urlContains": {
12923
- "type": "string"
12924
- },
12925
- "props": {
12926
- "type": "object",
12927
- "additionalProperties": {
12928
- "type": [
12929
- "string",
12930
- "number",
12931
- "boolean"
12932
- ]
12933
- }
12934
- }
12935
- },
12936
- "required": [
12937
- "events"
12938
- ],
12939
- "additionalProperties": false
12940
13877
  }
12941
13878
  },
12942
13879
  "additionalProperties": false
@@ -12955,6 +13892,9 @@
12955
13892
  {
12956
13893
  "$ref": "#/$defs/badge"
12957
13894
  },
13895
+ {
13896
+ "$ref": "#/$defs/celebrate"
13897
+ },
12958
13898
  {
12959
13899
  "$ref": "#/$defs/faqQuestion"
12960
13900
  },