@syntrologie/runtime-sdk 2.4.0-canary.21 → 2.4.0-canary.23
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/actions/schema.d.ts +3603 -36279
- package/dist/actions/schema.js +2 -2
- package/dist/{chunk-2UYZ5DWI.js → chunk-5SKKLUOS.js} +42 -4
- package/dist/chunk-5SKKLUOS.js.map +7 -0
- package/dist/{chunk-IPU3WVPY.js → chunk-FFIHKDHW.js} +217 -32
- package/dist/chunk-FFIHKDHW.js.map +7 -0
- package/dist/{chunk-HF3D7YFQ.js → chunk-MCX3AKSH.js} +21 -23
- package/dist/chunk-MCX3AKSH.js.map +7 -0
- package/dist/components/ShadowCanvasOverlay.d.ts +2 -1
- package/dist/config/schema.d.ts +890 -96
- package/dist/config/schema.js +3 -1
- package/dist/hooks/useShadowCanvasConfig.d.ts +3 -1
- package/dist/index.js +65 -64
- package/dist/index.js.map +2 -2
- package/dist/react.js +3 -3
- package/dist/smart-canvas.esm.js +62 -47
- package/dist/smart-canvas.esm.js.map +3 -3
- package/dist/smart-canvas.js +334 -113
- package/dist/smart-canvas.js.map +3 -3
- package/dist/smart-canvas.min.js +61 -46
- package/dist/smart-canvas.min.js.map +3 -3
- package/dist/theme/types.d.ts +2 -1
- package/dist/version.d.ts +1 -1
- package/package.json +9 -8
- package/schema/canvas-config.schema.json +1333 -388
- package/dist/chunk-2UYZ5DWI.js.map +0 -7
- package/dist/chunk-HF3D7YFQ.js.map +0 -7
- package/dist/chunk-IPU3WVPY.js.map +0 -7
|
@@ -63,6 +63,12 @@
|
|
|
63
63
|
"title": {
|
|
64
64
|
"type": "string"
|
|
65
65
|
},
|
|
66
|
+
"subtitle": {
|
|
67
|
+
"type": "string"
|
|
68
|
+
},
|
|
69
|
+
"icon": {
|
|
70
|
+
"type": "string"
|
|
71
|
+
},
|
|
66
72
|
"priority": {
|
|
67
73
|
"type": "number"
|
|
68
74
|
},
|
|
@@ -227,6 +233,13 @@
|
|
|
227
233
|
"right"
|
|
228
234
|
]
|
|
229
235
|
},
|
|
236
|
+
"layout": {
|
|
237
|
+
"type": "string",
|
|
238
|
+
"enum": [
|
|
239
|
+
"overlay",
|
|
240
|
+
"push"
|
|
241
|
+
]
|
|
242
|
+
},
|
|
230
243
|
"background": {
|
|
231
244
|
"type": "string"
|
|
232
245
|
},
|
|
@@ -259,6 +272,9 @@
|
|
|
259
272
|
},
|
|
260
273
|
"shadow": {
|
|
261
274
|
"type": "string"
|
|
275
|
+
},
|
|
276
|
+
"borderRadius": {
|
|
277
|
+
"type": "string"
|
|
262
278
|
}
|
|
263
279
|
},
|
|
264
280
|
"additionalProperties": false
|
|
@@ -292,6 +308,15 @@
|
|
|
292
308
|
},
|
|
293
309
|
"iconShadow": {
|
|
294
310
|
"type": "string"
|
|
311
|
+
},
|
|
312
|
+
"headerPadding": {
|
|
313
|
+
"type": "string"
|
|
314
|
+
},
|
|
315
|
+
"bodyPadding": {
|
|
316
|
+
"type": "string"
|
|
317
|
+
},
|
|
318
|
+
"gap": {
|
|
319
|
+
"type": "string"
|
|
295
320
|
}
|
|
296
321
|
},
|
|
297
322
|
"additionalProperties": false
|
|
@@ -305,6 +330,15 @@
|
|
|
305
330
|
"textColor": {
|
|
306
331
|
"type": "string"
|
|
307
332
|
},
|
|
333
|
+
"titleColor": {
|
|
334
|
+
"type": "string"
|
|
335
|
+
},
|
|
336
|
+
"arrowColor": {
|
|
337
|
+
"type": "string"
|
|
338
|
+
},
|
|
339
|
+
"arrowSize": {
|
|
340
|
+
"type": "string"
|
|
341
|
+
},
|
|
308
342
|
"border": {
|
|
309
343
|
"type": "string"
|
|
310
344
|
},
|
|
@@ -355,6 +389,66 @@
|
|
|
355
389
|
}
|
|
356
390
|
},
|
|
357
391
|
"additionalProperties": false
|
|
392
|
+
},
|
|
393
|
+
"content": {
|
|
394
|
+
"type": "object",
|
|
395
|
+
"properties": {
|
|
396
|
+
"background": {
|
|
397
|
+
"type": "string"
|
|
398
|
+
},
|
|
399
|
+
"backgroundHover": {
|
|
400
|
+
"type": "string"
|
|
401
|
+
},
|
|
402
|
+
"border": {
|
|
403
|
+
"type": "string"
|
|
404
|
+
},
|
|
405
|
+
"borderRadius": {
|
|
406
|
+
"type": "string"
|
|
407
|
+
},
|
|
408
|
+
"textColor": {
|
|
409
|
+
"type": "string"
|
|
410
|
+
},
|
|
411
|
+
"textSecondaryColor": {
|
|
412
|
+
"type": "string"
|
|
413
|
+
},
|
|
414
|
+
"itemDivider": {
|
|
415
|
+
"type": "string"
|
|
416
|
+
},
|
|
417
|
+
"itemGap": {
|
|
418
|
+
"type": "string"
|
|
419
|
+
},
|
|
420
|
+
"itemPadding": {
|
|
421
|
+
"type": "string"
|
|
422
|
+
},
|
|
423
|
+
"itemFontSize": {
|
|
424
|
+
"type": "string"
|
|
425
|
+
},
|
|
426
|
+
"bodyPadding": {
|
|
427
|
+
"type": "string"
|
|
428
|
+
},
|
|
429
|
+
"bodyFontSize": {
|
|
430
|
+
"type": "string"
|
|
431
|
+
},
|
|
432
|
+
"categoryPadding": {
|
|
433
|
+
"type": "string"
|
|
434
|
+
},
|
|
435
|
+
"categoryGap": {
|
|
436
|
+
"type": "string"
|
|
437
|
+
},
|
|
438
|
+
"categoryFontSize": {
|
|
439
|
+
"type": "string"
|
|
440
|
+
},
|
|
441
|
+
"searchBackground": {
|
|
442
|
+
"type": "string"
|
|
443
|
+
},
|
|
444
|
+
"searchColor": {
|
|
445
|
+
"type": "string"
|
|
446
|
+
},
|
|
447
|
+
"chevronColor": {
|
|
448
|
+
"type": "string"
|
|
449
|
+
}
|
|
450
|
+
},
|
|
451
|
+
"additionalProperties": false
|
|
358
452
|
}
|
|
359
453
|
},
|
|
360
454
|
"additionalProperties": false
|
|
@@ -368,6 +462,9 @@
|
|
|
368
462
|
"label": {
|
|
369
463
|
"type": "string"
|
|
370
464
|
},
|
|
465
|
+
"icon": {
|
|
466
|
+
"type": "string"
|
|
467
|
+
},
|
|
371
468
|
"position": {
|
|
372
469
|
"type": "string"
|
|
373
470
|
},
|
|
@@ -913,10 +1010,6 @@
|
|
|
913
1010
|
"label": {
|
|
914
1011
|
"type": "string"
|
|
915
1012
|
},
|
|
916
|
-
"activation": {
|
|
917
|
-
"$ref": "#/$defs/activationConfig",
|
|
918
|
-
"description": "Route and condition-based activation for this action"
|
|
919
|
-
},
|
|
920
1013
|
"triggerWhen": {
|
|
921
1014
|
"anyOf": [
|
|
922
1015
|
{
|
|
@@ -1385,10 +1478,6 @@
|
|
|
1385
1478
|
"label": {
|
|
1386
1479
|
"type": "string"
|
|
1387
1480
|
},
|
|
1388
|
-
"activation": {
|
|
1389
|
-
"$ref": "#/$defs/activationConfig",
|
|
1390
|
-
"description": "Route and condition-based activation for this action"
|
|
1391
|
-
},
|
|
1392
1481
|
"triggerWhen": {
|
|
1393
1482
|
"anyOf": [
|
|
1394
1483
|
{
|
|
@@ -1855,10 +1944,6 @@
|
|
|
1855
1944
|
"label": {
|
|
1856
1945
|
"type": "string"
|
|
1857
1946
|
},
|
|
1858
|
-
"activation": {
|
|
1859
|
-
"$ref": "#/$defs/activationConfig",
|
|
1860
|
-
"description": "Route and condition-based activation for this action"
|
|
1861
|
-
},
|
|
1862
1947
|
"triggerWhen": {
|
|
1863
1948
|
"anyOf": [
|
|
1864
1949
|
{
|
|
@@ -2324,10 +2409,6 @@
|
|
|
2324
2409
|
"label": {
|
|
2325
2410
|
"type": "string"
|
|
2326
2411
|
},
|
|
2327
|
-
"activation": {
|
|
2328
|
-
"$ref": "#/$defs/activationConfig",
|
|
2329
|
-
"description": "Route and condition-based activation for this action"
|
|
2330
|
-
},
|
|
2331
2412
|
"triggerWhen": {
|
|
2332
2413
|
"anyOf": [
|
|
2333
2414
|
{
|
|
@@ -2796,10 +2877,6 @@
|
|
|
2796
2877
|
"label": {
|
|
2797
2878
|
"type": "string"
|
|
2798
2879
|
},
|
|
2799
|
-
"activation": {
|
|
2800
|
-
"$ref": "#/$defs/activationConfig",
|
|
2801
|
-
"description": "Route and condition-based activation for this action"
|
|
2802
|
-
},
|
|
2803
2880
|
"triggerWhen": {
|
|
2804
2881
|
"anyOf": [
|
|
2805
2882
|
{
|
|
@@ -3290,10 +3367,6 @@
|
|
|
3290
3367
|
"label": {
|
|
3291
3368
|
"type": "string"
|
|
3292
3369
|
},
|
|
3293
|
-
"activation": {
|
|
3294
|
-
"$ref": "#/$defs/activationConfig",
|
|
3295
|
-
"description": "Route and condition-based activation for this action"
|
|
3296
|
-
},
|
|
3297
3370
|
"triggerWhen": {
|
|
3298
3371
|
"anyOf": [
|
|
3299
3372
|
{
|
|
@@ -3780,10 +3853,6 @@
|
|
|
3780
3853
|
"label": {
|
|
3781
3854
|
"type": "string"
|
|
3782
3855
|
},
|
|
3783
|
-
"activation": {
|
|
3784
|
-
"$ref": "#/$defs/activationConfig",
|
|
3785
|
-
"description": "Route and condition-based activation for this action"
|
|
3786
|
-
},
|
|
3787
3856
|
"triggerWhen": {
|
|
3788
3857
|
"anyOf": [
|
|
3789
3858
|
{
|
|
@@ -4248,10 +4317,6 @@
|
|
|
4248
4317
|
"label": {
|
|
4249
4318
|
"type": "string"
|
|
4250
4319
|
},
|
|
4251
|
-
"activation": {
|
|
4252
|
-
"$ref": "#/$defs/activationConfig",
|
|
4253
|
-
"description": "Route and condition-based activation for this action"
|
|
4254
|
-
},
|
|
4255
4320
|
"triggerWhen": {
|
|
4256
4321
|
"anyOf": [
|
|
4257
4322
|
{
|
|
@@ -4725,10 +4790,6 @@
|
|
|
4725
4790
|
"label": {
|
|
4726
4791
|
"type": "string"
|
|
4727
4792
|
},
|
|
4728
|
-
"activation": {
|
|
4729
|
-
"$ref": "#/$defs/activationConfig",
|
|
4730
|
-
"description": "Route and condition-based activation for this action"
|
|
4731
|
-
},
|
|
4732
4793
|
"triggerWhen": {
|
|
4733
4794
|
"anyOf": [
|
|
4734
4795
|
{
|
|
@@ -5256,10 +5317,6 @@
|
|
|
5256
5317
|
"label": {
|
|
5257
5318
|
"type": "string"
|
|
5258
5319
|
},
|
|
5259
|
-
"activation": {
|
|
5260
|
-
"$ref": "#/$defs/activationConfig",
|
|
5261
|
-
"description": "Route and condition-based activation for this action"
|
|
5262
|
-
},
|
|
5263
5320
|
"triggerWhen": {
|
|
5264
5321
|
"anyOf": [
|
|
5265
5322
|
{
|
|
@@ -5774,10 +5831,6 @@
|
|
|
5774
5831
|
"label": {
|
|
5775
5832
|
"type": "string"
|
|
5776
5833
|
},
|
|
5777
|
-
"activation": {
|
|
5778
|
-
"$ref": "#/$defs/activationConfig",
|
|
5779
|
-
"description": "Route and condition-based activation for this action"
|
|
5780
|
-
},
|
|
5781
5834
|
"triggerWhen": {
|
|
5782
5835
|
"anyOf": [
|
|
5783
5836
|
{
|
|
@@ -6265,10 +6318,6 @@
|
|
|
6265
6318
|
"label": {
|
|
6266
6319
|
"type": "string"
|
|
6267
6320
|
},
|
|
6268
|
-
"activation": {
|
|
6269
|
-
"$ref": "#/$defs/activationConfig",
|
|
6270
|
-
"description": "Route and condition-based activation for this action"
|
|
6271
|
-
},
|
|
6272
6321
|
"triggerWhen": {
|
|
6273
6322
|
"anyOf": [
|
|
6274
6323
|
{
|
|
@@ -6714,10 +6763,6 @@
|
|
|
6714
6763
|
"label": {
|
|
6715
6764
|
"type": "string"
|
|
6716
6765
|
},
|
|
6717
|
-
"activation": {
|
|
6718
|
-
"$ref": "#/$defs/activationConfig",
|
|
6719
|
-
"description": "Route and condition-based activation for this action"
|
|
6720
|
-
},
|
|
6721
6766
|
"triggerWhen": {
|
|
6722
6767
|
"anyOf": [
|
|
6723
6768
|
{
|
|
@@ -7181,10 +7226,6 @@
|
|
|
7181
7226
|
"label": {
|
|
7182
7227
|
"type": "string"
|
|
7183
7228
|
},
|
|
7184
|
-
"activation": {
|
|
7185
|
-
"$ref": "#/$defs/activationConfig",
|
|
7186
|
-
"description": "Route and condition-based activation for this action"
|
|
7187
|
-
},
|
|
7188
7229
|
"triggerWhen": {
|
|
7189
7230
|
"anyOf": [
|
|
7190
7231
|
{
|
|
@@ -7628,10 +7669,6 @@
|
|
|
7628
7669
|
"label": {
|
|
7629
7670
|
"type": "string"
|
|
7630
7671
|
},
|
|
7631
|
-
"activation": {
|
|
7632
|
-
"$ref": "#/$defs/activationConfig",
|
|
7633
|
-
"description": "Route and condition-based activation for this action"
|
|
7634
|
-
},
|
|
7635
7672
|
"triggerWhen": {
|
|
7636
7673
|
"anyOf": [
|
|
7637
7674
|
{
|
|
@@ -8072,10 +8109,6 @@
|
|
|
8072
8109
|
"label": {
|
|
8073
8110
|
"type": "string"
|
|
8074
8111
|
},
|
|
8075
|
-
"activation": {
|
|
8076
|
-
"$ref": "#/$defs/activationConfig",
|
|
8077
|
-
"description": "Route and condition-based activation for this action"
|
|
8078
|
-
},
|
|
8079
8112
|
"triggerWhen": {
|
|
8080
8113
|
"anyOf": [
|
|
8081
8114
|
{
|
|
@@ -8524,10 +8557,6 @@
|
|
|
8524
8557
|
"label": {
|
|
8525
8558
|
"type": "string"
|
|
8526
8559
|
},
|
|
8527
|
-
"activation": {
|
|
8528
|
-
"$ref": "#/$defs/activationConfig",
|
|
8529
|
-
"description": "Route and condition-based activation for this action"
|
|
8530
|
-
},
|
|
8531
8560
|
"triggerWhen": {
|
|
8532
8561
|
"anyOf": [
|
|
8533
8562
|
{
|
|
@@ -9000,10 +9029,6 @@
|
|
|
9000
9029
|
"label": {
|
|
9001
9030
|
"type": "string"
|
|
9002
9031
|
},
|
|
9003
|
-
"activation": {
|
|
9004
|
-
"$ref": "#/$defs/activationConfig",
|
|
9005
|
-
"description": "Route and condition-based activation for this action"
|
|
9006
|
-
},
|
|
9007
9032
|
"triggerWhen": {
|
|
9008
9033
|
"anyOf": [
|
|
9009
9034
|
{
|
|
@@ -10721,28 +10746,9 @@
|
|
|
10721
10746
|
"label": {
|
|
10722
10747
|
"type": "string"
|
|
10723
10748
|
},
|
|
10724
|
-
"
|
|
10725
|
-
"
|
|
10726
|
-
|
|
10727
|
-
"routes": {
|
|
10728
|
-
"type": "object",
|
|
10729
|
-
"properties": {
|
|
10730
|
-
"include": {
|
|
10731
|
-
"type": "array",
|
|
10732
|
-
"items": {
|
|
10733
|
-
"type": "string"
|
|
10734
|
-
}
|
|
10735
|
-
},
|
|
10736
|
-
"exclude": {
|
|
10737
|
-
"type": "array",
|
|
10738
|
-
"items": {
|
|
10739
|
-
"type": "string"
|
|
10740
|
-
}
|
|
10741
|
-
}
|
|
10742
|
-
},
|
|
10743
|
-
"additionalProperties": false
|
|
10744
|
-
},
|
|
10745
|
-
"strategy": {
|
|
10749
|
+
"triggerWhen": {
|
|
10750
|
+
"anyOf": [
|
|
10751
|
+
{
|
|
10746
10752
|
"anyOf": [
|
|
10747
10753
|
{
|
|
10748
10754
|
"type": "object",
|
|
@@ -10759,168 +10765,899 @@
|
|
|
10759
10765
|
"conditions": {
|
|
10760
10766
|
"type": "array",
|
|
10761
10767
|
"items": {
|
|
10762
|
-
"
|
|
10763
|
-
|
|
10764
|
-
|
|
10765
|
-
"
|
|
10766
|
-
|
|
10767
|
-
|
|
10768
|
-
|
|
10769
|
-
|
|
10770
|
-
|
|
10771
|
-
|
|
10772
|
-
|
|
10773
|
-
|
|
10774
|
-
|
|
10775
|
-
|
|
10776
|
-
|
|
10777
|
-
|
|
10778
|
-
|
|
10779
|
-
|
|
10780
|
-
|
|
10781
|
-
|
|
10782
|
-
|
|
10783
|
-
|
|
10784
|
-
|
|
10785
|
-
|
|
10786
|
-
|
|
10787
|
-
|
|
10788
|
-
|
|
10789
|
-
|
|
10790
|
-
|
|
10791
|
-
|
|
10792
|
-
|
|
10793
|
-
|
|
10794
|
-
|
|
10795
|
-
|
|
10796
|
-
|
|
10797
|
-
|
|
10798
|
-
|
|
10799
|
-
|
|
10800
|
-
|
|
10801
|
-
|
|
10802
|
-
|
|
10803
|
-
|
|
10804
|
-
|
|
10805
|
-
|
|
10806
|
-
|
|
10807
|
-
|
|
10808
|
-
|
|
10809
|
-
|
|
10810
|
-
|
|
10811
|
-
|
|
10812
|
-
|
|
10813
|
-
|
|
10814
|
-
|
|
10815
|
-
|
|
10816
|
-
|
|
10817
|
-
|
|
10818
|
-
|
|
10819
|
-
|
|
10820
|
-
|
|
10821
|
-
|
|
10822
|
-
|
|
10823
|
-
|
|
10824
|
-
|
|
10825
|
-
|
|
10826
|
-
|
|
10827
|
-
|
|
10828
|
-
|
|
10829
|
-
|
|
10830
|
-
|
|
10831
|
-
|
|
10832
|
-
|
|
10833
|
-
|
|
10834
|
-
|
|
10835
|
-
|
|
10836
|
-
|
|
10837
|
-
|
|
10838
|
-
|
|
10839
|
-
|
|
10840
|
-
|
|
10841
|
-
|
|
10842
|
-
|
|
10843
|
-
|
|
10844
|
-
|
|
10845
|
-
|
|
10846
|
-
|
|
10847
|
-
|
|
10848
|
-
|
|
10849
|
-
|
|
10850
|
-
|
|
10851
|
-
|
|
10852
|
-
|
|
10853
|
-
|
|
10854
|
-
|
|
10855
|
-
|
|
10856
|
-
|
|
10857
|
-
|
|
10858
|
-
|
|
10859
|
-
|
|
10860
|
-
|
|
10861
|
-
|
|
10862
|
-
|
|
10863
|
-
|
|
10864
|
-
|
|
10865
|
-
|
|
10866
|
-
|
|
10867
|
-
|
|
10868
|
-
|
|
10869
|
-
|
|
10870
|
-
|
|
10768
|
+
"anyOf": [
|
|
10769
|
+
{
|
|
10770
|
+
"type": "object",
|
|
10771
|
+
"properties": {
|
|
10772
|
+
"type": {
|
|
10773
|
+
"type": "string",
|
|
10774
|
+
"const": "page_url"
|
|
10775
|
+
},
|
|
10776
|
+
"url": {
|
|
10777
|
+
"type": "string"
|
|
10778
|
+
}
|
|
10779
|
+
},
|
|
10780
|
+
"required": [
|
|
10781
|
+
"type",
|
|
10782
|
+
"url"
|
|
10783
|
+
],
|
|
10784
|
+
"additionalProperties": false
|
|
10785
|
+
},
|
|
10786
|
+
{
|
|
10787
|
+
"type": "object",
|
|
10788
|
+
"properties": {
|
|
10789
|
+
"type": {
|
|
10790
|
+
"type": "string",
|
|
10791
|
+
"const": "route"
|
|
10792
|
+
},
|
|
10793
|
+
"routeId": {
|
|
10794
|
+
"type": "string"
|
|
10795
|
+
}
|
|
10796
|
+
},
|
|
10797
|
+
"required": [
|
|
10798
|
+
"type",
|
|
10799
|
+
"routeId"
|
|
10800
|
+
],
|
|
10801
|
+
"additionalProperties": false
|
|
10802
|
+
},
|
|
10803
|
+
{
|
|
10804
|
+
"type": "object",
|
|
10805
|
+
"properties": {
|
|
10806
|
+
"type": {
|
|
10807
|
+
"type": "string",
|
|
10808
|
+
"const": "anchor_visible"
|
|
10809
|
+
},
|
|
10810
|
+
"anchorId": {
|
|
10811
|
+
"type": "string"
|
|
10812
|
+
},
|
|
10813
|
+
"state": {
|
|
10814
|
+
"type": "string",
|
|
10815
|
+
"enum": [
|
|
10816
|
+
"visible",
|
|
10817
|
+
"present",
|
|
10818
|
+
"absent"
|
|
10819
|
+
]
|
|
10820
|
+
}
|
|
10821
|
+
},
|
|
10822
|
+
"required": [
|
|
10823
|
+
"type",
|
|
10824
|
+
"anchorId",
|
|
10825
|
+
"state"
|
|
10826
|
+
],
|
|
10827
|
+
"additionalProperties": false
|
|
10828
|
+
},
|
|
10829
|
+
{
|
|
10830
|
+
"type": "object",
|
|
10831
|
+
"properties": {
|
|
10832
|
+
"type": {
|
|
10833
|
+
"type": "string",
|
|
10834
|
+
"const": "event_occurred"
|
|
10835
|
+
},
|
|
10836
|
+
"eventName": {
|
|
10837
|
+
"type": "string"
|
|
10838
|
+
},
|
|
10839
|
+
"withinMs": {
|
|
10840
|
+
"type": "number"
|
|
10841
|
+
}
|
|
10842
|
+
},
|
|
10843
|
+
"required": [
|
|
10844
|
+
"type",
|
|
10845
|
+
"eventName"
|
|
10846
|
+
],
|
|
10847
|
+
"additionalProperties": false
|
|
10848
|
+
},
|
|
10849
|
+
{
|
|
10850
|
+
"type": "object",
|
|
10851
|
+
"properties": {
|
|
10852
|
+
"type": {
|
|
10853
|
+
"type": "string",
|
|
10854
|
+
"const": "state_equals"
|
|
10855
|
+
},
|
|
10856
|
+
"key": {
|
|
10857
|
+
"type": "string"
|
|
10858
|
+
},
|
|
10859
|
+
"value": {}
|
|
10860
|
+
},
|
|
10861
|
+
"required": [
|
|
10862
|
+
"type",
|
|
10863
|
+
"key"
|
|
10864
|
+
],
|
|
10865
|
+
"additionalProperties": false
|
|
10866
|
+
},
|
|
10867
|
+
{
|
|
10868
|
+
"type": "object",
|
|
10869
|
+
"properties": {
|
|
10870
|
+
"type": {
|
|
10871
|
+
"type": "string",
|
|
10872
|
+
"const": "viewport"
|
|
10873
|
+
},
|
|
10874
|
+
"minWidth": {
|
|
10875
|
+
"type": "number"
|
|
10876
|
+
},
|
|
10877
|
+
"maxWidth": {
|
|
10878
|
+
"type": "number"
|
|
10879
|
+
},
|
|
10880
|
+
"minHeight": {
|
|
10881
|
+
"type": "number"
|
|
10882
|
+
},
|
|
10883
|
+
"maxHeight": {
|
|
10884
|
+
"type": "number"
|
|
10885
|
+
}
|
|
10886
|
+
},
|
|
10887
|
+
"required": [
|
|
10888
|
+
"type"
|
|
10889
|
+
],
|
|
10890
|
+
"additionalProperties": false
|
|
10891
|
+
},
|
|
10892
|
+
{
|
|
10893
|
+
"type": "object",
|
|
10894
|
+
"properties": {
|
|
10895
|
+
"type": {
|
|
10896
|
+
"type": "string",
|
|
10897
|
+
"const": "session_metric"
|
|
10898
|
+
},
|
|
10899
|
+
"key": {
|
|
10900
|
+
"type": "string"
|
|
10901
|
+
},
|
|
10902
|
+
"operator": {
|
|
10903
|
+
"type": "string",
|
|
10904
|
+
"enum": [
|
|
10905
|
+
"gte",
|
|
10906
|
+
"lte",
|
|
10907
|
+
"eq",
|
|
10908
|
+
"gt",
|
|
10909
|
+
"lt"
|
|
10910
|
+
]
|
|
10911
|
+
},
|
|
10912
|
+
"threshold": {
|
|
10913
|
+
"type": "number"
|
|
10914
|
+
}
|
|
10915
|
+
},
|
|
10916
|
+
"required": [
|
|
10917
|
+
"type",
|
|
10918
|
+
"key",
|
|
10919
|
+
"operator",
|
|
10920
|
+
"threshold"
|
|
10921
|
+
],
|
|
10922
|
+
"additionalProperties": false
|
|
10923
|
+
},
|
|
10924
|
+
{
|
|
10925
|
+
"type": "object",
|
|
10926
|
+
"properties": {
|
|
10927
|
+
"type": {
|
|
10928
|
+
"type": "string",
|
|
10929
|
+
"const": "dismissed"
|
|
10930
|
+
},
|
|
10931
|
+
"key": {
|
|
10932
|
+
"type": "string"
|
|
10933
|
+
},
|
|
10934
|
+
"inverted": {
|
|
10935
|
+
"type": "boolean"
|
|
10936
|
+
}
|
|
10937
|
+
},
|
|
10938
|
+
"required": [
|
|
10939
|
+
"type",
|
|
10940
|
+
"key"
|
|
10941
|
+
],
|
|
10942
|
+
"additionalProperties": false
|
|
10943
|
+
},
|
|
10944
|
+
{
|
|
10945
|
+
"type": "object",
|
|
10946
|
+
"properties": {
|
|
10947
|
+
"type": {
|
|
10948
|
+
"type": "string",
|
|
10949
|
+
"const": "cooldown_active"
|
|
10950
|
+
},
|
|
10951
|
+
"key": {
|
|
10952
|
+
"type": "string"
|
|
10953
|
+
},
|
|
10954
|
+
"inverted": {
|
|
10955
|
+
"type": "boolean"
|
|
10956
|
+
}
|
|
10957
|
+
},
|
|
10958
|
+
"required": [
|
|
10959
|
+
"type",
|
|
10960
|
+
"key"
|
|
10961
|
+
],
|
|
10962
|
+
"additionalProperties": false
|
|
10963
|
+
},
|
|
10964
|
+
{
|
|
10965
|
+
"type": "object",
|
|
10966
|
+
"properties": {
|
|
10967
|
+
"type": {
|
|
10968
|
+
"type": "string",
|
|
10969
|
+
"const": "frequency_limit"
|
|
10970
|
+
},
|
|
10971
|
+
"key": {
|
|
10972
|
+
"type": "string"
|
|
10973
|
+
},
|
|
10974
|
+
"limit": {
|
|
10975
|
+
"type": "number"
|
|
10976
|
+
},
|
|
10977
|
+
"inverted": {
|
|
10978
|
+
"type": "boolean"
|
|
10979
|
+
}
|
|
10980
|
+
},
|
|
10981
|
+
"required": [
|
|
10982
|
+
"type",
|
|
10983
|
+
"key",
|
|
10984
|
+
"limit"
|
|
10985
|
+
],
|
|
10986
|
+
"additionalProperties": false
|
|
10987
|
+
},
|
|
10988
|
+
{
|
|
10989
|
+
"type": "object",
|
|
10990
|
+
"properties": {
|
|
10991
|
+
"type": {
|
|
10992
|
+
"type": "string",
|
|
10993
|
+
"const": "event_count"
|
|
10994
|
+
},
|
|
10995
|
+
"key": {
|
|
10996
|
+
"type": "string"
|
|
10997
|
+
},
|
|
10998
|
+
"operator": {
|
|
10999
|
+
"type": "string",
|
|
11000
|
+
"enum": [
|
|
11001
|
+
"gte",
|
|
11002
|
+
"lte",
|
|
11003
|
+
"eq",
|
|
11004
|
+
"gt",
|
|
11005
|
+
"lt"
|
|
11006
|
+
]
|
|
11007
|
+
},
|
|
11008
|
+
"count": {
|
|
11009
|
+
"type": "integer",
|
|
11010
|
+
"minimum": 0
|
|
11011
|
+
},
|
|
11012
|
+
"withinMs": {
|
|
11013
|
+
"type": "number",
|
|
11014
|
+
"exclusiveMinimum": 0
|
|
11015
|
+
},
|
|
11016
|
+
"counter": {
|
|
11017
|
+
"type": "object",
|
|
11018
|
+
"properties": {
|
|
11019
|
+
"events": {
|
|
11020
|
+
"type": "array",
|
|
11021
|
+
"items": {
|
|
11022
|
+
"type": "string"
|
|
11023
|
+
},
|
|
11024
|
+
"minItems": 1
|
|
11025
|
+
},
|
|
11026
|
+
"match": {
|
|
11027
|
+
"type": "object",
|
|
11028
|
+
"additionalProperties": {
|
|
11029
|
+
"type": "object",
|
|
11030
|
+
"properties": {
|
|
11031
|
+
"equals": {
|
|
11032
|
+
"type": [
|
|
11033
|
+
"string",
|
|
11034
|
+
"number",
|
|
11035
|
+
"boolean"
|
|
11036
|
+
]
|
|
11037
|
+
},
|
|
11038
|
+
"contains": {
|
|
11039
|
+
"type": "string"
|
|
11040
|
+
}
|
|
11041
|
+
},
|
|
11042
|
+
"additionalProperties": false
|
|
11043
|
+
}
|
|
11044
|
+
}
|
|
11045
|
+
},
|
|
11046
|
+
"required": [
|
|
11047
|
+
"events"
|
|
11048
|
+
],
|
|
11049
|
+
"additionalProperties": false
|
|
11050
|
+
}
|
|
11051
|
+
},
|
|
11052
|
+
"required": [
|
|
11053
|
+
"type",
|
|
11054
|
+
"key",
|
|
11055
|
+
"operator",
|
|
11056
|
+
"count"
|
|
11057
|
+
],
|
|
11058
|
+
"additionalProperties": false
|
|
11059
|
+
}
|
|
11060
|
+
]
|
|
11061
|
+
}
|
|
11062
|
+
},
|
|
11063
|
+
"value": {}
|
|
11064
|
+
},
|
|
11065
|
+
"required": [
|
|
11066
|
+
"conditions"
|
|
11067
|
+
],
|
|
11068
|
+
"additionalProperties": false
|
|
11069
|
+
}
|
|
11070
|
+
},
|
|
11071
|
+
"default": {}
|
|
11072
|
+
},
|
|
11073
|
+
"required": [
|
|
11074
|
+
"type",
|
|
11075
|
+
"rules"
|
|
11076
|
+
],
|
|
11077
|
+
"additionalProperties": false
|
|
11078
|
+
},
|
|
11079
|
+
{
|
|
11080
|
+
"type": "object",
|
|
11081
|
+
"properties": {
|
|
11082
|
+
"type": {
|
|
11083
|
+
"type": "string",
|
|
11084
|
+
"const": "score"
|
|
11085
|
+
},
|
|
11086
|
+
"field": {
|
|
11087
|
+
"type": "string"
|
|
11088
|
+
},
|
|
11089
|
+
"threshold": {
|
|
11090
|
+
"type": "number"
|
|
11091
|
+
},
|
|
11092
|
+
"above": {},
|
|
11093
|
+
"below": {}
|
|
11094
|
+
},
|
|
11095
|
+
"required": [
|
|
11096
|
+
"type",
|
|
11097
|
+
"field",
|
|
11098
|
+
"threshold"
|
|
11099
|
+
],
|
|
11100
|
+
"additionalProperties": false
|
|
11101
|
+
},
|
|
11102
|
+
{
|
|
11103
|
+
"type": "object",
|
|
11104
|
+
"properties": {
|
|
11105
|
+
"type": {
|
|
11106
|
+
"type": "string",
|
|
11107
|
+
"const": "model"
|
|
11108
|
+
},
|
|
11109
|
+
"modelId": {
|
|
11110
|
+
"type": "string"
|
|
11111
|
+
},
|
|
11112
|
+
"inputs": {
|
|
11113
|
+
"type": "array",
|
|
11114
|
+
"items": {
|
|
11115
|
+
"type": "string"
|
|
11116
|
+
}
|
|
11117
|
+
},
|
|
11118
|
+
"outputMapping": {
|
|
11119
|
+
"type": "object",
|
|
11120
|
+
"additionalProperties": {}
|
|
11121
|
+
},
|
|
11122
|
+
"default": {}
|
|
11123
|
+
},
|
|
11124
|
+
"required": [
|
|
11125
|
+
"type",
|
|
11126
|
+
"modelId",
|
|
11127
|
+
"inputs",
|
|
11128
|
+
"outputMapping"
|
|
11129
|
+
],
|
|
11130
|
+
"additionalProperties": false
|
|
11131
|
+
},
|
|
11132
|
+
{
|
|
11133
|
+
"type": "object",
|
|
11134
|
+
"properties": {
|
|
11135
|
+
"type": {
|
|
11136
|
+
"type": "string",
|
|
11137
|
+
"const": "external"
|
|
11138
|
+
},
|
|
11139
|
+
"endpoint": {
|
|
11140
|
+
"type": "string"
|
|
11141
|
+
},
|
|
11142
|
+
"method": {
|
|
11143
|
+
"type": "string",
|
|
11144
|
+
"enum": [
|
|
11145
|
+
"GET",
|
|
11146
|
+
"POST"
|
|
11147
|
+
]
|
|
11148
|
+
},
|
|
11149
|
+
"default": {},
|
|
11150
|
+
"timeoutMs": {
|
|
11151
|
+
"type": "number"
|
|
11152
|
+
}
|
|
11153
|
+
},
|
|
11154
|
+
"required": [
|
|
11155
|
+
"type",
|
|
11156
|
+
"endpoint"
|
|
11157
|
+
],
|
|
11158
|
+
"additionalProperties": false
|
|
11159
|
+
}
|
|
11160
|
+
]
|
|
11161
|
+
},
|
|
11162
|
+
{
|
|
11163
|
+
"type": "null"
|
|
11164
|
+
}
|
|
11165
|
+
]
|
|
11166
|
+
}
|
|
11167
|
+
},
|
|
11168
|
+
"required": [
|
|
11169
|
+
"kind",
|
|
11170
|
+
"badgeId"
|
|
11171
|
+
],
|
|
11172
|
+
"additionalProperties": false
|
|
11173
|
+
},
|
|
11174
|
+
"addPoints": {
|
|
11175
|
+
"type": "object",
|
|
11176
|
+
"properties": {
|
|
11177
|
+
"kind": {
|
|
11178
|
+
"type": "string",
|
|
11179
|
+
"const": "gamification:addPoints"
|
|
11180
|
+
},
|
|
11181
|
+
"points": {
|
|
11182
|
+
"type": "number"
|
|
11183
|
+
},
|
|
11184
|
+
"reason": {
|
|
11185
|
+
"type": "string"
|
|
11186
|
+
},
|
|
11187
|
+
"label": {
|
|
11188
|
+
"type": "string"
|
|
11189
|
+
},
|
|
11190
|
+
"triggerWhen": {
|
|
11191
|
+
"anyOf": [
|
|
11192
|
+
{
|
|
11193
|
+
"anyOf": [
|
|
11194
|
+
{
|
|
11195
|
+
"type": "object",
|
|
11196
|
+
"properties": {
|
|
11197
|
+
"type": {
|
|
11198
|
+
"type": "string",
|
|
11199
|
+
"const": "rules"
|
|
11200
|
+
},
|
|
11201
|
+
"rules": {
|
|
11202
|
+
"type": "array",
|
|
11203
|
+
"items": {
|
|
11204
|
+
"type": "object",
|
|
11205
|
+
"properties": {
|
|
11206
|
+
"conditions": {
|
|
11207
|
+
"type": "array",
|
|
11208
|
+
"items": {
|
|
11209
|
+
"anyOf": [
|
|
11210
|
+
{
|
|
11211
|
+
"type": "object",
|
|
11212
|
+
"properties": {
|
|
11213
|
+
"type": {
|
|
11214
|
+
"type": "string",
|
|
11215
|
+
"const": "page_url"
|
|
11216
|
+
},
|
|
11217
|
+
"url": {
|
|
11218
|
+
"type": "string"
|
|
11219
|
+
}
|
|
11220
|
+
},
|
|
11221
|
+
"required": [
|
|
11222
|
+
"type",
|
|
11223
|
+
"url"
|
|
11224
|
+
],
|
|
11225
|
+
"additionalProperties": false
|
|
11226
|
+
},
|
|
11227
|
+
{
|
|
11228
|
+
"type": "object",
|
|
11229
|
+
"properties": {
|
|
11230
|
+
"type": {
|
|
11231
|
+
"type": "string",
|
|
11232
|
+
"const": "route"
|
|
11233
|
+
},
|
|
11234
|
+
"routeId": {
|
|
11235
|
+
"type": "string"
|
|
11236
|
+
}
|
|
11237
|
+
},
|
|
11238
|
+
"required": [
|
|
11239
|
+
"type",
|
|
11240
|
+
"routeId"
|
|
11241
|
+
],
|
|
11242
|
+
"additionalProperties": false
|
|
11243
|
+
},
|
|
11244
|
+
{
|
|
11245
|
+
"type": "object",
|
|
11246
|
+
"properties": {
|
|
11247
|
+
"type": {
|
|
11248
|
+
"type": "string",
|
|
11249
|
+
"const": "anchor_visible"
|
|
11250
|
+
},
|
|
11251
|
+
"anchorId": {
|
|
11252
|
+
"type": "string"
|
|
11253
|
+
},
|
|
11254
|
+
"state": {
|
|
11255
|
+
"type": "string",
|
|
11256
|
+
"enum": [
|
|
11257
|
+
"visible",
|
|
11258
|
+
"present",
|
|
11259
|
+
"absent"
|
|
11260
|
+
]
|
|
11261
|
+
}
|
|
11262
|
+
},
|
|
11263
|
+
"required": [
|
|
11264
|
+
"type",
|
|
11265
|
+
"anchorId",
|
|
11266
|
+
"state"
|
|
11267
|
+
],
|
|
11268
|
+
"additionalProperties": false
|
|
11269
|
+
},
|
|
11270
|
+
{
|
|
11271
|
+
"type": "object",
|
|
11272
|
+
"properties": {
|
|
11273
|
+
"type": {
|
|
11274
|
+
"type": "string",
|
|
11275
|
+
"const": "event_occurred"
|
|
11276
|
+
},
|
|
11277
|
+
"eventName": {
|
|
11278
|
+
"type": "string"
|
|
11279
|
+
},
|
|
11280
|
+
"withinMs": {
|
|
11281
|
+
"type": "number"
|
|
11282
|
+
}
|
|
11283
|
+
},
|
|
11284
|
+
"required": [
|
|
11285
|
+
"type",
|
|
11286
|
+
"eventName"
|
|
11287
|
+
],
|
|
11288
|
+
"additionalProperties": false
|
|
11289
|
+
},
|
|
11290
|
+
{
|
|
11291
|
+
"type": "object",
|
|
11292
|
+
"properties": {
|
|
11293
|
+
"type": {
|
|
11294
|
+
"type": "string",
|
|
11295
|
+
"const": "state_equals"
|
|
11296
|
+
},
|
|
11297
|
+
"key": {
|
|
11298
|
+
"type": "string"
|
|
11299
|
+
},
|
|
11300
|
+
"value": {}
|
|
11301
|
+
},
|
|
11302
|
+
"required": [
|
|
11303
|
+
"type",
|
|
11304
|
+
"key"
|
|
11305
|
+
],
|
|
11306
|
+
"additionalProperties": false
|
|
11307
|
+
},
|
|
11308
|
+
{
|
|
11309
|
+
"type": "object",
|
|
11310
|
+
"properties": {
|
|
11311
|
+
"type": {
|
|
11312
|
+
"type": "string",
|
|
11313
|
+
"const": "viewport"
|
|
11314
|
+
},
|
|
11315
|
+
"minWidth": {
|
|
11316
|
+
"type": "number"
|
|
11317
|
+
},
|
|
11318
|
+
"maxWidth": {
|
|
11319
|
+
"type": "number"
|
|
11320
|
+
},
|
|
11321
|
+
"minHeight": {
|
|
11322
|
+
"type": "number"
|
|
11323
|
+
},
|
|
11324
|
+
"maxHeight": {
|
|
11325
|
+
"type": "number"
|
|
11326
|
+
}
|
|
11327
|
+
},
|
|
11328
|
+
"required": [
|
|
11329
|
+
"type"
|
|
11330
|
+
],
|
|
11331
|
+
"additionalProperties": false
|
|
11332
|
+
},
|
|
11333
|
+
{
|
|
11334
|
+
"type": "object",
|
|
11335
|
+
"properties": {
|
|
11336
|
+
"type": {
|
|
11337
|
+
"type": "string",
|
|
11338
|
+
"const": "session_metric"
|
|
11339
|
+
},
|
|
11340
|
+
"key": {
|
|
11341
|
+
"type": "string"
|
|
11342
|
+
},
|
|
11343
|
+
"operator": {
|
|
11344
|
+
"type": "string",
|
|
11345
|
+
"enum": [
|
|
11346
|
+
"gte",
|
|
11347
|
+
"lte",
|
|
11348
|
+
"eq",
|
|
11349
|
+
"gt",
|
|
11350
|
+
"lt"
|
|
11351
|
+
]
|
|
11352
|
+
},
|
|
11353
|
+
"threshold": {
|
|
11354
|
+
"type": "number"
|
|
11355
|
+
}
|
|
11356
|
+
},
|
|
11357
|
+
"required": [
|
|
11358
|
+
"type",
|
|
11359
|
+
"key",
|
|
11360
|
+
"operator",
|
|
11361
|
+
"threshold"
|
|
11362
|
+
],
|
|
11363
|
+
"additionalProperties": false
|
|
11364
|
+
},
|
|
11365
|
+
{
|
|
11366
|
+
"type": "object",
|
|
11367
|
+
"properties": {
|
|
11368
|
+
"type": {
|
|
11369
|
+
"type": "string",
|
|
11370
|
+
"const": "dismissed"
|
|
11371
|
+
},
|
|
11372
|
+
"key": {
|
|
11373
|
+
"type": "string"
|
|
11374
|
+
},
|
|
11375
|
+
"inverted": {
|
|
11376
|
+
"type": "boolean"
|
|
11377
|
+
}
|
|
11378
|
+
},
|
|
11379
|
+
"required": [
|
|
11380
|
+
"type",
|
|
11381
|
+
"key"
|
|
11382
|
+
],
|
|
11383
|
+
"additionalProperties": false
|
|
11384
|
+
},
|
|
11385
|
+
{
|
|
11386
|
+
"type": "object",
|
|
11387
|
+
"properties": {
|
|
11388
|
+
"type": {
|
|
11389
|
+
"type": "string",
|
|
11390
|
+
"const": "cooldown_active"
|
|
11391
|
+
},
|
|
11392
|
+
"key": {
|
|
11393
|
+
"type": "string"
|
|
11394
|
+
},
|
|
11395
|
+
"inverted": {
|
|
11396
|
+
"type": "boolean"
|
|
11397
|
+
}
|
|
11398
|
+
},
|
|
11399
|
+
"required": [
|
|
11400
|
+
"type",
|
|
11401
|
+
"key"
|
|
11402
|
+
],
|
|
11403
|
+
"additionalProperties": false
|
|
11404
|
+
},
|
|
11405
|
+
{
|
|
11406
|
+
"type": "object",
|
|
11407
|
+
"properties": {
|
|
11408
|
+
"type": {
|
|
11409
|
+
"type": "string",
|
|
11410
|
+
"const": "frequency_limit"
|
|
11411
|
+
},
|
|
11412
|
+
"key": {
|
|
11413
|
+
"type": "string"
|
|
11414
|
+
},
|
|
11415
|
+
"limit": {
|
|
11416
|
+
"type": "number"
|
|
11417
|
+
},
|
|
11418
|
+
"inverted": {
|
|
11419
|
+
"type": "boolean"
|
|
11420
|
+
}
|
|
11421
|
+
},
|
|
11422
|
+
"required": [
|
|
11423
|
+
"type",
|
|
11424
|
+
"key",
|
|
11425
|
+
"limit"
|
|
11426
|
+
],
|
|
11427
|
+
"additionalProperties": false
|
|
11428
|
+
},
|
|
11429
|
+
{
|
|
11430
|
+
"type": "object",
|
|
11431
|
+
"properties": {
|
|
11432
|
+
"type": {
|
|
11433
|
+
"type": "string",
|
|
11434
|
+
"const": "event_count"
|
|
11435
|
+
},
|
|
11436
|
+
"key": {
|
|
11437
|
+
"type": "string"
|
|
11438
|
+
},
|
|
11439
|
+
"operator": {
|
|
11440
|
+
"type": "string",
|
|
11441
|
+
"enum": [
|
|
11442
|
+
"gte",
|
|
11443
|
+
"lte",
|
|
11444
|
+
"eq",
|
|
11445
|
+
"gt",
|
|
11446
|
+
"lt"
|
|
11447
|
+
]
|
|
11448
|
+
},
|
|
11449
|
+
"count": {
|
|
11450
|
+
"type": "integer",
|
|
11451
|
+
"minimum": 0
|
|
11452
|
+
},
|
|
11453
|
+
"withinMs": {
|
|
11454
|
+
"type": "number",
|
|
11455
|
+
"exclusiveMinimum": 0
|
|
11456
|
+
},
|
|
11457
|
+
"counter": {
|
|
11458
|
+
"type": "object",
|
|
11459
|
+
"properties": {
|
|
11460
|
+
"events": {
|
|
11461
|
+
"type": "array",
|
|
11462
|
+
"items": {
|
|
11463
|
+
"type": "string"
|
|
11464
|
+
},
|
|
11465
|
+
"minItems": 1
|
|
11466
|
+
},
|
|
11467
|
+
"match": {
|
|
11468
|
+
"type": "object",
|
|
11469
|
+
"additionalProperties": {
|
|
11470
|
+
"type": "object",
|
|
11471
|
+
"properties": {
|
|
11472
|
+
"equals": {
|
|
11473
|
+
"type": [
|
|
11474
|
+
"string",
|
|
11475
|
+
"number",
|
|
11476
|
+
"boolean"
|
|
11477
|
+
]
|
|
11478
|
+
},
|
|
11479
|
+
"contains": {
|
|
11480
|
+
"type": "string"
|
|
11481
|
+
}
|
|
11482
|
+
},
|
|
11483
|
+
"additionalProperties": false
|
|
11484
|
+
}
|
|
11485
|
+
}
|
|
11486
|
+
},
|
|
11487
|
+
"required": [
|
|
11488
|
+
"events"
|
|
11489
|
+
],
|
|
11490
|
+
"additionalProperties": false
|
|
11491
|
+
}
|
|
11492
|
+
},
|
|
11493
|
+
"required": [
|
|
11494
|
+
"type",
|
|
11495
|
+
"key",
|
|
11496
|
+
"operator",
|
|
11497
|
+
"count"
|
|
11498
|
+
],
|
|
11499
|
+
"additionalProperties": false
|
|
11500
|
+
}
|
|
11501
|
+
]
|
|
11502
|
+
}
|
|
11503
|
+
},
|
|
11504
|
+
"value": {}
|
|
11505
|
+
},
|
|
11506
|
+
"required": [
|
|
11507
|
+
"conditions"
|
|
11508
|
+
],
|
|
11509
|
+
"additionalProperties": false
|
|
11510
|
+
}
|
|
11511
|
+
},
|
|
11512
|
+
"default": {}
|
|
11513
|
+
},
|
|
11514
|
+
"required": [
|
|
11515
|
+
"type",
|
|
11516
|
+
"rules"
|
|
11517
|
+
],
|
|
11518
|
+
"additionalProperties": false
|
|
11519
|
+
},
|
|
11520
|
+
{
|
|
11521
|
+
"type": "object",
|
|
11522
|
+
"properties": {
|
|
11523
|
+
"type": {
|
|
11524
|
+
"type": "string",
|
|
11525
|
+
"const": "score"
|
|
11526
|
+
},
|
|
11527
|
+
"field": {
|
|
11528
|
+
"type": "string"
|
|
11529
|
+
},
|
|
11530
|
+
"threshold": {
|
|
11531
|
+
"type": "number"
|
|
11532
|
+
},
|
|
11533
|
+
"above": {},
|
|
11534
|
+
"below": {}
|
|
11535
|
+
},
|
|
11536
|
+
"required": [
|
|
11537
|
+
"type",
|
|
11538
|
+
"field",
|
|
11539
|
+
"threshold"
|
|
11540
|
+
],
|
|
11541
|
+
"additionalProperties": false
|
|
11542
|
+
},
|
|
11543
|
+
{
|
|
11544
|
+
"type": "object",
|
|
11545
|
+
"properties": {
|
|
11546
|
+
"type": {
|
|
11547
|
+
"type": "string",
|
|
11548
|
+
"const": "model"
|
|
11549
|
+
},
|
|
11550
|
+
"modelId": {
|
|
11551
|
+
"type": "string"
|
|
11552
|
+
},
|
|
11553
|
+
"inputs": {
|
|
11554
|
+
"type": "array",
|
|
11555
|
+
"items": {
|
|
11556
|
+
"type": "string"
|
|
11557
|
+
}
|
|
11558
|
+
},
|
|
11559
|
+
"outputMapping": {
|
|
11560
|
+
"type": "object",
|
|
11561
|
+
"additionalProperties": {}
|
|
11562
|
+
},
|
|
11563
|
+
"default": {}
|
|
11564
|
+
},
|
|
11565
|
+
"required": [
|
|
11566
|
+
"type",
|
|
11567
|
+
"modelId",
|
|
11568
|
+
"inputs",
|
|
11569
|
+
"outputMapping"
|
|
11570
|
+
],
|
|
11571
|
+
"additionalProperties": false
|
|
11572
|
+
},
|
|
11573
|
+
{
|
|
11574
|
+
"type": "object",
|
|
11575
|
+
"properties": {
|
|
11576
|
+
"type": {
|
|
11577
|
+
"type": "string",
|
|
11578
|
+
"const": "external"
|
|
11579
|
+
},
|
|
11580
|
+
"endpoint": {
|
|
11581
|
+
"type": "string"
|
|
11582
|
+
},
|
|
11583
|
+
"method": {
|
|
11584
|
+
"type": "string",
|
|
11585
|
+
"enum": [
|
|
11586
|
+
"GET",
|
|
11587
|
+
"POST"
|
|
11588
|
+
]
|
|
11589
|
+
},
|
|
11590
|
+
"default": {},
|
|
11591
|
+
"timeoutMs": {
|
|
11592
|
+
"type": "number"
|
|
11593
|
+
}
|
|
11594
|
+
},
|
|
11595
|
+
"required": [
|
|
11596
|
+
"type",
|
|
11597
|
+
"endpoint"
|
|
11598
|
+
],
|
|
11599
|
+
"additionalProperties": false
|
|
11600
|
+
}
|
|
10871
11601
|
]
|
|
11602
|
+
},
|
|
11603
|
+
{
|
|
11604
|
+
"type": "null"
|
|
10872
11605
|
}
|
|
10873
|
-
|
|
10874
|
-
"required": [
|
|
10875
|
-
"routes"
|
|
10876
|
-
],
|
|
10877
|
-
"additionalProperties": false
|
|
11606
|
+
]
|
|
10878
11607
|
}
|
|
10879
11608
|
},
|
|
10880
11609
|
"required": [
|
|
10881
11610
|
"kind",
|
|
10882
|
-
"
|
|
11611
|
+
"points"
|
|
10883
11612
|
],
|
|
10884
11613
|
"additionalProperties": false
|
|
10885
11614
|
},
|
|
10886
|
-
"
|
|
11615
|
+
"navTip": {
|
|
10887
11616
|
"type": "object",
|
|
10888
11617
|
"properties": {
|
|
10889
11618
|
"kind": {
|
|
10890
11619
|
"type": "string",
|
|
10891
|
-
"const": "
|
|
10892
|
-
},
|
|
10893
|
-
"points": {
|
|
10894
|
-
"type": "number"
|
|
10895
|
-
},
|
|
10896
|
-
"reason": {
|
|
10897
|
-
"type": "string"
|
|
10898
|
-
},
|
|
10899
|
-
"label": {
|
|
10900
|
-
"type": "string"
|
|
11620
|
+
"const": "nav:tip"
|
|
10901
11621
|
},
|
|
10902
|
-
"
|
|
11622
|
+
"config": {
|
|
10903
11623
|
"type": "object",
|
|
10904
11624
|
"properties": {
|
|
10905
|
-
"
|
|
10906
|
-
"type": "
|
|
10907
|
-
"
|
|
10908
|
-
|
|
10909
|
-
|
|
10910
|
-
|
|
10911
|
-
|
|
10912
|
-
}
|
|
10913
|
-
},
|
|
10914
|
-
"exclude": {
|
|
10915
|
-
"type": "array",
|
|
10916
|
-
"items": {
|
|
10917
|
-
"type": "string"
|
|
10918
|
-
}
|
|
10919
|
-
}
|
|
10920
|
-
},
|
|
10921
|
-
"additionalProperties": false
|
|
11625
|
+
"id": {
|
|
11626
|
+
"type": "string",
|
|
11627
|
+
"minLength": 1
|
|
11628
|
+
},
|
|
11629
|
+
"title": {
|
|
11630
|
+
"type": "string",
|
|
11631
|
+
"minLength": 1
|
|
10922
11632
|
},
|
|
10923
|
-
"
|
|
11633
|
+
"description": {
|
|
11634
|
+
"type": "string",
|
|
11635
|
+
"minLength": 1
|
|
11636
|
+
},
|
|
11637
|
+
"href": {
|
|
11638
|
+
"type": "string"
|
|
11639
|
+
},
|
|
11640
|
+
"icon": {
|
|
11641
|
+
"type": "string"
|
|
11642
|
+
},
|
|
11643
|
+
"external": {
|
|
11644
|
+
"type": "boolean",
|
|
11645
|
+
"default": false
|
|
11646
|
+
},
|
|
11647
|
+
"category": {
|
|
11648
|
+
"type": "string"
|
|
11649
|
+
}
|
|
11650
|
+
},
|
|
11651
|
+
"required": [
|
|
11652
|
+
"id",
|
|
11653
|
+
"title",
|
|
11654
|
+
"description"
|
|
11655
|
+
],
|
|
11656
|
+
"additionalProperties": false
|
|
11657
|
+
},
|
|
11658
|
+
"triggerWhen": {
|
|
11659
|
+
"anyOf": [
|
|
11660
|
+
{
|
|
10924
11661
|
"anyOf": [
|
|
10925
11662
|
{
|
|
10926
11663
|
"type": "object",
|
|
@@ -10937,16 +11674,299 @@
|
|
|
10937
11674
|
"conditions": {
|
|
10938
11675
|
"type": "array",
|
|
10939
11676
|
"items": {
|
|
10940
|
-
"
|
|
10941
|
-
|
|
10942
|
-
|
|
10943
|
-
"
|
|
11677
|
+
"anyOf": [
|
|
11678
|
+
{
|
|
11679
|
+
"type": "object",
|
|
11680
|
+
"properties": {
|
|
11681
|
+
"type": {
|
|
11682
|
+
"type": "string",
|
|
11683
|
+
"const": "page_url"
|
|
11684
|
+
},
|
|
11685
|
+
"url": {
|
|
11686
|
+
"type": "string"
|
|
11687
|
+
}
|
|
11688
|
+
},
|
|
11689
|
+
"required": [
|
|
11690
|
+
"type",
|
|
11691
|
+
"url"
|
|
11692
|
+
],
|
|
11693
|
+
"additionalProperties": false
|
|
11694
|
+
},
|
|
11695
|
+
{
|
|
11696
|
+
"type": "object",
|
|
11697
|
+
"properties": {
|
|
11698
|
+
"type": {
|
|
11699
|
+
"type": "string",
|
|
11700
|
+
"const": "route"
|
|
11701
|
+
},
|
|
11702
|
+
"routeId": {
|
|
11703
|
+
"type": "string"
|
|
11704
|
+
}
|
|
11705
|
+
},
|
|
11706
|
+
"required": [
|
|
11707
|
+
"type",
|
|
11708
|
+
"routeId"
|
|
11709
|
+
],
|
|
11710
|
+
"additionalProperties": false
|
|
11711
|
+
},
|
|
11712
|
+
{
|
|
11713
|
+
"type": "object",
|
|
11714
|
+
"properties": {
|
|
11715
|
+
"type": {
|
|
11716
|
+
"type": "string",
|
|
11717
|
+
"const": "anchor_visible"
|
|
11718
|
+
},
|
|
11719
|
+
"anchorId": {
|
|
11720
|
+
"type": "string"
|
|
11721
|
+
},
|
|
11722
|
+
"state": {
|
|
11723
|
+
"type": "string",
|
|
11724
|
+
"enum": [
|
|
11725
|
+
"visible",
|
|
11726
|
+
"present",
|
|
11727
|
+
"absent"
|
|
11728
|
+
]
|
|
11729
|
+
}
|
|
11730
|
+
},
|
|
11731
|
+
"required": [
|
|
11732
|
+
"type",
|
|
11733
|
+
"anchorId",
|
|
11734
|
+
"state"
|
|
11735
|
+
],
|
|
11736
|
+
"additionalProperties": false
|
|
11737
|
+
},
|
|
11738
|
+
{
|
|
11739
|
+
"type": "object",
|
|
11740
|
+
"properties": {
|
|
11741
|
+
"type": {
|
|
11742
|
+
"type": "string",
|
|
11743
|
+
"const": "event_occurred"
|
|
11744
|
+
},
|
|
11745
|
+
"eventName": {
|
|
11746
|
+
"type": "string"
|
|
11747
|
+
},
|
|
11748
|
+
"withinMs": {
|
|
11749
|
+
"type": "number"
|
|
11750
|
+
}
|
|
11751
|
+
},
|
|
11752
|
+
"required": [
|
|
11753
|
+
"type",
|
|
11754
|
+
"eventName"
|
|
11755
|
+
],
|
|
11756
|
+
"additionalProperties": false
|
|
11757
|
+
},
|
|
11758
|
+
{
|
|
11759
|
+
"type": "object",
|
|
11760
|
+
"properties": {
|
|
11761
|
+
"type": {
|
|
11762
|
+
"type": "string",
|
|
11763
|
+
"const": "state_equals"
|
|
11764
|
+
},
|
|
11765
|
+
"key": {
|
|
11766
|
+
"type": "string"
|
|
11767
|
+
},
|
|
11768
|
+
"value": {}
|
|
11769
|
+
},
|
|
11770
|
+
"required": [
|
|
11771
|
+
"type",
|
|
11772
|
+
"key"
|
|
11773
|
+
],
|
|
11774
|
+
"additionalProperties": false
|
|
11775
|
+
},
|
|
11776
|
+
{
|
|
11777
|
+
"type": "object",
|
|
11778
|
+
"properties": {
|
|
11779
|
+
"type": {
|
|
11780
|
+
"type": "string",
|
|
11781
|
+
"const": "viewport"
|
|
11782
|
+
},
|
|
11783
|
+
"minWidth": {
|
|
11784
|
+
"type": "number"
|
|
11785
|
+
},
|
|
11786
|
+
"maxWidth": {
|
|
11787
|
+
"type": "number"
|
|
11788
|
+
},
|
|
11789
|
+
"minHeight": {
|
|
11790
|
+
"type": "number"
|
|
11791
|
+
},
|
|
11792
|
+
"maxHeight": {
|
|
11793
|
+
"type": "number"
|
|
11794
|
+
}
|
|
11795
|
+
},
|
|
11796
|
+
"required": [
|
|
11797
|
+
"type"
|
|
11798
|
+
],
|
|
11799
|
+
"additionalProperties": false
|
|
11800
|
+
},
|
|
11801
|
+
{
|
|
11802
|
+
"type": "object",
|
|
11803
|
+
"properties": {
|
|
11804
|
+
"type": {
|
|
11805
|
+
"type": "string",
|
|
11806
|
+
"const": "session_metric"
|
|
11807
|
+
},
|
|
11808
|
+
"key": {
|
|
11809
|
+
"type": "string"
|
|
11810
|
+
},
|
|
11811
|
+
"operator": {
|
|
11812
|
+
"type": "string",
|
|
11813
|
+
"enum": [
|
|
11814
|
+
"gte",
|
|
11815
|
+
"lte",
|
|
11816
|
+
"eq",
|
|
11817
|
+
"gt",
|
|
11818
|
+
"lt"
|
|
11819
|
+
]
|
|
11820
|
+
},
|
|
11821
|
+
"threshold": {
|
|
11822
|
+
"type": "number"
|
|
11823
|
+
}
|
|
11824
|
+
},
|
|
11825
|
+
"required": [
|
|
11826
|
+
"type",
|
|
11827
|
+
"key",
|
|
11828
|
+
"operator",
|
|
11829
|
+
"threshold"
|
|
11830
|
+
],
|
|
11831
|
+
"additionalProperties": false
|
|
11832
|
+
},
|
|
11833
|
+
{
|
|
11834
|
+
"type": "object",
|
|
11835
|
+
"properties": {
|
|
11836
|
+
"type": {
|
|
11837
|
+
"type": "string",
|
|
11838
|
+
"const": "dismissed"
|
|
11839
|
+
},
|
|
11840
|
+
"key": {
|
|
11841
|
+
"type": "string"
|
|
11842
|
+
},
|
|
11843
|
+
"inverted": {
|
|
11844
|
+
"type": "boolean"
|
|
11845
|
+
}
|
|
11846
|
+
},
|
|
11847
|
+
"required": [
|
|
11848
|
+
"type",
|
|
11849
|
+
"key"
|
|
11850
|
+
],
|
|
11851
|
+
"additionalProperties": false
|
|
11852
|
+
},
|
|
11853
|
+
{
|
|
11854
|
+
"type": "object",
|
|
11855
|
+
"properties": {
|
|
11856
|
+
"type": {
|
|
11857
|
+
"type": "string",
|
|
11858
|
+
"const": "cooldown_active"
|
|
11859
|
+
},
|
|
11860
|
+
"key": {
|
|
11861
|
+
"type": "string"
|
|
11862
|
+
},
|
|
11863
|
+
"inverted": {
|
|
11864
|
+
"type": "boolean"
|
|
11865
|
+
}
|
|
11866
|
+
},
|
|
11867
|
+
"required": [
|
|
11868
|
+
"type",
|
|
11869
|
+
"key"
|
|
11870
|
+
],
|
|
11871
|
+
"additionalProperties": false
|
|
11872
|
+
},
|
|
11873
|
+
{
|
|
11874
|
+
"type": "object",
|
|
11875
|
+
"properties": {
|
|
11876
|
+
"type": {
|
|
11877
|
+
"type": "string",
|
|
11878
|
+
"const": "frequency_limit"
|
|
11879
|
+
},
|
|
11880
|
+
"key": {
|
|
11881
|
+
"type": "string"
|
|
11882
|
+
},
|
|
11883
|
+
"limit": {
|
|
11884
|
+
"type": "number"
|
|
11885
|
+
},
|
|
11886
|
+
"inverted": {
|
|
11887
|
+
"type": "boolean"
|
|
11888
|
+
}
|
|
11889
|
+
},
|
|
11890
|
+
"required": [
|
|
11891
|
+
"type",
|
|
11892
|
+
"key",
|
|
11893
|
+
"limit"
|
|
11894
|
+
],
|
|
11895
|
+
"additionalProperties": false
|
|
11896
|
+
},
|
|
11897
|
+
{
|
|
11898
|
+
"type": "object",
|
|
11899
|
+
"properties": {
|
|
11900
|
+
"type": {
|
|
11901
|
+
"type": "string",
|
|
11902
|
+
"const": "event_count"
|
|
11903
|
+
},
|
|
11904
|
+
"key": {
|
|
11905
|
+
"type": "string"
|
|
11906
|
+
},
|
|
11907
|
+
"operator": {
|
|
11908
|
+
"type": "string",
|
|
11909
|
+
"enum": [
|
|
11910
|
+
"gte",
|
|
11911
|
+
"lte",
|
|
11912
|
+
"eq",
|
|
11913
|
+
"gt",
|
|
11914
|
+
"lt"
|
|
11915
|
+
]
|
|
11916
|
+
},
|
|
11917
|
+
"count": {
|
|
11918
|
+
"type": "integer",
|
|
11919
|
+
"minimum": 0
|
|
11920
|
+
},
|
|
11921
|
+
"withinMs": {
|
|
11922
|
+
"type": "number",
|
|
11923
|
+
"exclusiveMinimum": 0
|
|
11924
|
+
},
|
|
11925
|
+
"counter": {
|
|
11926
|
+
"type": "object",
|
|
11927
|
+
"properties": {
|
|
11928
|
+
"events": {
|
|
11929
|
+
"type": "array",
|
|
11930
|
+
"items": {
|
|
11931
|
+
"type": "string"
|
|
11932
|
+
},
|
|
11933
|
+
"minItems": 1
|
|
11934
|
+
},
|
|
11935
|
+
"match": {
|
|
11936
|
+
"type": "object",
|
|
11937
|
+
"additionalProperties": {
|
|
11938
|
+
"type": "object",
|
|
11939
|
+
"properties": {
|
|
11940
|
+
"equals": {
|
|
11941
|
+
"type": [
|
|
11942
|
+
"string",
|
|
11943
|
+
"number",
|
|
11944
|
+
"boolean"
|
|
11945
|
+
]
|
|
11946
|
+
},
|
|
11947
|
+
"contains": {
|
|
11948
|
+
"type": "string"
|
|
11949
|
+
}
|
|
11950
|
+
},
|
|
11951
|
+
"additionalProperties": false
|
|
11952
|
+
}
|
|
11953
|
+
}
|
|
11954
|
+
},
|
|
11955
|
+
"required": [
|
|
11956
|
+
"events"
|
|
11957
|
+
],
|
|
11958
|
+
"additionalProperties": false
|
|
11959
|
+
}
|
|
11960
|
+
},
|
|
11961
|
+
"required": [
|
|
11962
|
+
"type",
|
|
11963
|
+
"key",
|
|
11964
|
+
"operator",
|
|
11965
|
+
"count"
|
|
11966
|
+
],
|
|
11967
|
+
"additionalProperties": false
|
|
10944
11968
|
}
|
|
10945
|
-
|
|
10946
|
-
"required": [
|
|
10947
|
-
"type"
|
|
10948
|
-
],
|
|
10949
|
-
"additionalProperties": true
|
|
11969
|
+
]
|
|
10950
11970
|
}
|
|
10951
11971
|
},
|
|
10952
11972
|
"value": {}
|
|
@@ -11047,62 +12067,89 @@
|
|
|
11047
12067
|
"additionalProperties": false
|
|
11048
12068
|
}
|
|
11049
12069
|
]
|
|
12070
|
+
},
|
|
12071
|
+
{
|
|
12072
|
+
"type": "null"
|
|
12073
|
+
}
|
|
12074
|
+
]
|
|
12075
|
+
},
|
|
12076
|
+
"notify": {
|
|
12077
|
+
"anyOf": [
|
|
12078
|
+
{
|
|
12079
|
+
"type": "object",
|
|
12080
|
+
"properties": {
|
|
12081
|
+
"title": {
|
|
12082
|
+
"type": "string"
|
|
12083
|
+
},
|
|
12084
|
+
"body": {
|
|
12085
|
+
"type": "string"
|
|
12086
|
+
},
|
|
12087
|
+
"icon": {
|
|
12088
|
+
"type": "string"
|
|
12089
|
+
}
|
|
12090
|
+
},
|
|
12091
|
+
"additionalProperties": false
|
|
12092
|
+
},
|
|
12093
|
+
{
|
|
12094
|
+
"type": "null"
|
|
12095
|
+
}
|
|
12096
|
+
]
|
|
12097
|
+
},
|
|
12098
|
+
"rationale": {
|
|
12099
|
+
"type": "object",
|
|
12100
|
+
"properties": {
|
|
12101
|
+
"why": {
|
|
12102
|
+
"type": "string"
|
|
12103
|
+
},
|
|
12104
|
+
"confidence": {
|
|
12105
|
+
"type": "number"
|
|
11050
12106
|
}
|
|
11051
12107
|
},
|
|
11052
12108
|
"required": [
|
|
11053
|
-
"
|
|
12109
|
+
"why"
|
|
11054
12110
|
],
|
|
11055
12111
|
"additionalProperties": false
|
|
11056
12112
|
}
|
|
11057
12113
|
},
|
|
11058
12114
|
"required": [
|
|
11059
12115
|
"kind",
|
|
11060
|
-
"
|
|
12116
|
+
"config"
|
|
11061
12117
|
],
|
|
11062
12118
|
"additionalProperties": false
|
|
11063
12119
|
},
|
|
11064
|
-
"
|
|
12120
|
+
"celebrate": {
|
|
11065
12121
|
"type": "object",
|
|
11066
12122
|
"properties": {
|
|
11067
12123
|
"kind": {
|
|
11068
12124
|
"type": "string",
|
|
11069
|
-
"const": "
|
|
12125
|
+
"const": "overlays:celebrate"
|
|
11070
12126
|
},
|
|
11071
|
-
"
|
|
12127
|
+
"effect": {
|
|
12128
|
+
"type": "string"
|
|
12129
|
+
},
|
|
12130
|
+
"duration": {
|
|
12131
|
+
"type": "number"
|
|
12132
|
+
},
|
|
12133
|
+
"intensity": {
|
|
12134
|
+
"type": "string",
|
|
12135
|
+
"enum": [
|
|
12136
|
+
"light",
|
|
12137
|
+
"medium",
|
|
12138
|
+
"heavy"
|
|
12139
|
+
]
|
|
12140
|
+
},
|
|
12141
|
+
"colors": {
|
|
12142
|
+
"type": "array",
|
|
12143
|
+
"items": {
|
|
12144
|
+
"type": "string"
|
|
12145
|
+
}
|
|
12146
|
+
},
|
|
12147
|
+
"props": {
|
|
11072
12148
|
"type": "object",
|
|
11073
|
-
"
|
|
11074
|
-
|
|
11075
|
-
|
|
11076
|
-
|
|
11077
|
-
},
|
|
11078
|
-
"title": {
|
|
11079
|
-
"type": "string",
|
|
11080
|
-
"minLength": 1
|
|
11081
|
-
},
|
|
11082
|
-
"description": {
|
|
11083
|
-
"type": "string",
|
|
11084
|
-
"minLength": 1
|
|
11085
|
-
},
|
|
11086
|
-
"href": {
|
|
11087
|
-
"type": "string"
|
|
11088
|
-
},
|
|
11089
|
-
"icon": {
|
|
11090
|
-
"type": "string"
|
|
11091
|
-
},
|
|
11092
|
-
"external": {
|
|
11093
|
-
"type": "boolean",
|
|
11094
|
-
"default": false
|
|
11095
|
-
},
|
|
11096
|
-
"category": {
|
|
11097
|
-
"type": "string"
|
|
11098
|
-
}
|
|
11099
|
-
},
|
|
11100
|
-
"required": [
|
|
11101
|
-
"id",
|
|
11102
|
-
"title",
|
|
11103
|
-
"description"
|
|
11104
|
-
],
|
|
11105
|
-
"additionalProperties": false
|
|
12149
|
+
"additionalProperties": {}
|
|
12150
|
+
},
|
|
12151
|
+
"label": {
|
|
12152
|
+
"type": "string"
|
|
11106
12153
|
},
|
|
11107
12154
|
"triggerWhen": {
|
|
11108
12155
|
"anyOf": [
|
|
@@ -11521,108 +12568,6 @@
|
|
|
11521
12568
|
"type": "null"
|
|
11522
12569
|
}
|
|
11523
12570
|
]
|
|
11524
|
-
},
|
|
11525
|
-
"notify": {
|
|
11526
|
-
"anyOf": [
|
|
11527
|
-
{
|
|
11528
|
-
"type": "object",
|
|
11529
|
-
"properties": {
|
|
11530
|
-
"title": {
|
|
11531
|
-
"type": "string"
|
|
11532
|
-
},
|
|
11533
|
-
"body": {
|
|
11534
|
-
"type": "string"
|
|
11535
|
-
},
|
|
11536
|
-
"icon": {
|
|
11537
|
-
"type": "string"
|
|
11538
|
-
}
|
|
11539
|
-
},
|
|
11540
|
-
"additionalProperties": false
|
|
11541
|
-
},
|
|
11542
|
-
{
|
|
11543
|
-
"type": "null"
|
|
11544
|
-
}
|
|
11545
|
-
]
|
|
11546
|
-
},
|
|
11547
|
-
"rationale": {
|
|
11548
|
-
"type": "object",
|
|
11549
|
-
"properties": {
|
|
11550
|
-
"why": {
|
|
11551
|
-
"type": "string"
|
|
11552
|
-
},
|
|
11553
|
-
"confidence": {
|
|
11554
|
-
"type": "number"
|
|
11555
|
-
}
|
|
11556
|
-
},
|
|
11557
|
-
"required": [
|
|
11558
|
-
"why"
|
|
11559
|
-
],
|
|
11560
|
-
"additionalProperties": false
|
|
11561
|
-
}
|
|
11562
|
-
},
|
|
11563
|
-
"required": [
|
|
11564
|
-
"kind",
|
|
11565
|
-
"config"
|
|
11566
|
-
],
|
|
11567
|
-
"additionalProperties": false
|
|
11568
|
-
},
|
|
11569
|
-
"celebrate": {
|
|
11570
|
-
"type": "object",
|
|
11571
|
-
"properties": {
|
|
11572
|
-
"kind": {
|
|
11573
|
-
"type": "string",
|
|
11574
|
-
"const": "overlays:celebrate"
|
|
11575
|
-
},
|
|
11576
|
-
"effect": {
|
|
11577
|
-
"type": "string"
|
|
11578
|
-
},
|
|
11579
|
-
"duration": {
|
|
11580
|
-
"type": "number"
|
|
11581
|
-
},
|
|
11582
|
-
"intensity": {
|
|
11583
|
-
"type": "string",
|
|
11584
|
-
"enum": [
|
|
11585
|
-
"light",
|
|
11586
|
-
"medium",
|
|
11587
|
-
"heavy"
|
|
11588
|
-
]
|
|
11589
|
-
},
|
|
11590
|
-
"colors": {
|
|
11591
|
-
"type": "array",
|
|
11592
|
-
"items": {
|
|
11593
|
-
"type": "string"
|
|
11594
|
-
}
|
|
11595
|
-
},
|
|
11596
|
-
"props": {
|
|
11597
|
-
"type": "object",
|
|
11598
|
-
"additionalProperties": {}
|
|
11599
|
-
},
|
|
11600
|
-
"label": {
|
|
11601
|
-
"type": "string"
|
|
11602
|
-
},
|
|
11603
|
-
"activation": {
|
|
11604
|
-
"type": "object",
|
|
11605
|
-
"properties": {
|
|
11606
|
-
"routes": {
|
|
11607
|
-
"type": "object",
|
|
11608
|
-
"properties": {
|
|
11609
|
-
"include": {
|
|
11610
|
-
"type": "array",
|
|
11611
|
-
"items": {
|
|
11612
|
-
"type": "string"
|
|
11613
|
-
}
|
|
11614
|
-
},
|
|
11615
|
-
"exclude": {
|
|
11616
|
-
"type": "array",
|
|
11617
|
-
"items": {
|
|
11618
|
-
"type": "string"
|
|
11619
|
-
}
|
|
11620
|
-
}
|
|
11621
|
-
},
|
|
11622
|
-
"additionalProperties": false
|
|
11623
|
-
}
|
|
11624
|
-
},
|
|
11625
|
-
"additionalProperties": false
|
|
11626
12571
|
}
|
|
11627
12572
|
},
|
|
11628
12573
|
"required": [
|