@knime/hub-features 1.26.2 → 1.28.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9,412 +9,3995 @@
9
9
  "version": {
10
10
  "$comment": "Version of this document",
11
11
  "type": "string",
12
- "const": "v1.0"
12
+ "const": "v2.0"
13
13
  },
14
14
  "events": {
15
15
  "type": "object",
16
16
  "additionalProperties": false,
17
17
  "required": [
18
- "kai_prompted",
19
- "layouteditor_opened",
20
- "annotation_created",
21
- "workflow_saved",
22
- "connection_created",
23
- "node_created",
24
- "qam_opened",
25
- "node_searched",
26
- "sidepanel_opened",
27
- "action_undone",
28
- "action_redone",
29
- "configuration_completed",
30
- "version_created",
31
- "session_started",
32
- "session_ended",
33
- "session_interrupted",
34
- "session_resumed",
35
- "containernode_created",
36
- "containernode_entered",
37
- "containernode_exited",
38
- "hint_shown",
39
- "hint_closed"
18
+ "kaiPromptedQA",
19
+ "kaiPromptedBuild",
20
+ "kaiPromptedQuickBuild",
21
+ "sessionStarted",
22
+ "layoutEditorOpenedCtxMenu",
23
+ "layoutEditorOpenedKeyboard",
24
+ "layoutEditorOpenedToolbar",
25
+ "adHocExecutionStartedDeploymentsPage",
26
+ "adHocExecutionStartedExecutionPanel",
27
+ "adHocExecutionStartedWorkflowPage",
28
+ "annotationCreatedCtxMenu",
29
+ "annotationCreatedKaiExplain",
30
+ "workflowSavedToolbar",
31
+ "workflowSavedKeyboard",
32
+ "connectionCreatedPortDragDrop",
33
+ "connectionCreatedKeyboard",
34
+ "connectionCreatedCtxMenu",
35
+ "nodeCreatedNodeRepoDragDrop",
36
+ "nodeCreatedNodeRepoDoubleClick",
37
+ "nodeCreatedNodeRepoKeyboard",
38
+ "nodeCreatedExplorerDragDrop",
39
+ "nodeCreatedQamClick",
40
+ "nodeCreatedQamKeyboard",
41
+ "nodeCreatedKaiQaDragDrop",
42
+ "nodeCreatedKaiQaKeyboard",
43
+ "qamOpenedPortDragDrop",
44
+ "qamOpenedCanvasDoubleClick",
45
+ "qamOpenedKeyboard",
46
+ "qamOpenedCtxMenu",
47
+ "nodeSearchedNodeRepo",
48
+ "nodeSearchedQam",
49
+ "workflowInfoOpened",
50
+ "nodeRepositoryOpened",
51
+ "spaceExplorerOpened",
52
+ "kaiOpened",
53
+ "workflowMonitorOpened",
54
+ "versionHistoryOpened",
55
+ "actionUndoneToolbar",
56
+ "actionUndoneKeyboard",
57
+ "actionRedoneToolbar",
58
+ "actionRedoneKeyboard",
59
+ "versionCreated",
60
+ "secretCreatedMySecrets",
61
+ "secretCreatedTeamSecrets",
62
+ "sessionEnded",
63
+ "sessionInterrupted",
64
+ "sessionResumed",
65
+ "containerNodeCreatedCtxMenu",
66
+ "containerNodeCreatedKeyboard",
67
+ "hintShown",
68
+ "hintClosed",
69
+ "configurationCompletedApply",
70
+ "configurationCompletedAutoApply",
71
+ "containerNodeEnteredCanvasDoubleClick",
72
+ "containerNodeEnteredKeyboard",
73
+ "containerNodeEnteredCtxMenu",
74
+ "containerNodeExitedKeyboard",
75
+ "containerNodeExitedToolbar",
76
+ "deploymentCreated",
77
+ "deploymentSharedDeploymentsAccessPanel",
78
+ "deploymentSharedDeploymentsSharingPopup",
79
+ "deploymentSharedWorkflowAccessPanel",
80
+ "deploymentSharedWorkflowSharingPopup",
81
+ "nodeCreatedCanvasDragDropFile",
82
+ "nodeCreatedFloatingToolsAddByFile"
40
83
  ],
41
84
  "properties": {
42
- "kai_prompted": {
85
+ "kaiPromptedQA": {
43
86
  "type": "object",
44
87
  "additionalProperties": false,
45
- "required": ["kaiqa_button_", "kaibuild_button_", "qam_button_"],
88
+ "$comment": "This is KAI Prompted QA",
89
+ "required": [
90
+ "event_name",
91
+ "event_source",
92
+ "event_display_name",
93
+ "interaction",
94
+ "payload"
95
+ ],
96
+ "properties": {
97
+ "event_name": {
98
+ "type": "string",
99
+ "const": "kai_prompted"
100
+ },
101
+ "event_source": {
102
+ "type": "string",
103
+ "const": "editor"
104
+ },
105
+ "event_display_name": {
106
+ "type": "string",
107
+ "const": "K-AI Prompted"
108
+ },
109
+ "interaction": {
110
+ "type": "object",
111
+ "additionalProperties": false,
112
+ "required": ["location", "trigger", "type"],
113
+ "properties": {
114
+ "location": {
115
+ "type": "string",
116
+ "const": "kai_qa"
117
+ },
118
+ "trigger": {
119
+ "allOf": [
120
+ {
121
+ "$ref": "#/definitions/InteractionTrigger"
122
+ },
123
+ {
124
+ "const": "user"
125
+ }
126
+ ]
127
+ },
128
+ "type": {
129
+ "allOf": [
130
+ {
131
+ "$ref": "#/definitions/InteractionType"
132
+ },
133
+ {
134
+ "const": "click"
135
+ }
136
+ ]
137
+ }
138
+ }
139
+ },
140
+ "payload": {
141
+ "$ref": "#/definitions/EmptyPayload"
142
+ }
143
+ }
144
+ },
145
+ "kaiPromptedBuild": {
146
+ "type": "object",
147
+ "additionalProperties": false,
148
+ "required": [
149
+ "event_name",
150
+ "event_source",
151
+ "event_display_name",
152
+ "interaction",
153
+ "payload"
154
+ ],
155
+ "properties": {
156
+ "event_name": {
157
+ "type": "string",
158
+ "const": "kai_prompted"
159
+ },
160
+ "event_source": {
161
+ "type": "string",
162
+ "const": "editor"
163
+ },
164
+ "event_display_name": {
165
+ "type": "string",
166
+ "const": "K-AI Prompted"
167
+ },
168
+ "interaction": {
169
+ "type": "object",
170
+ "additionalProperties": false,
171
+ "required": ["location", "trigger", "type"],
172
+ "properties": {
173
+ "location": {
174
+ "type": "string",
175
+ "const": "kai_build"
176
+ },
177
+ "trigger": {
178
+ "allOf": [
179
+ {
180
+ "$ref": "#/definitions/InteractionTrigger"
181
+ },
182
+ {
183
+ "const": "user"
184
+ }
185
+ ]
186
+ },
187
+ "type": {
188
+ "allOf": [
189
+ {
190
+ "$ref": "#/definitions/InteractionType"
191
+ },
192
+ {
193
+ "const": "click"
194
+ }
195
+ ]
196
+ }
197
+ }
198
+ },
199
+ "payload": {
200
+ "$ref": "#/definitions/EmptyPayload"
201
+ }
202
+ }
203
+ },
204
+ "kaiPromptedQuickBuild": {
205
+ "type": "object",
206
+ "additionalProperties": false,
207
+ "required": [
208
+ "event_name",
209
+ "event_source",
210
+ "event_display_name",
211
+ "interaction",
212
+ "payload"
213
+ ],
214
+ "properties": {
215
+ "event_name": {
216
+ "type": "string",
217
+ "const": "kai_prompted"
218
+ },
219
+ "event_source": {
220
+ "type": "string",
221
+ "const": "editor"
222
+ },
223
+ "event_display_name": {
224
+ "type": "string",
225
+ "const": "K-AI Prompted"
226
+ },
227
+ "interaction": {
228
+ "type": "object",
229
+ "additionalProperties": false,
230
+ "required": ["location", "trigger", "type"],
231
+ "properties": {
232
+ "location": {
233
+ "type": "string",
234
+ "const": "qam"
235
+ },
236
+ "trigger": {
237
+ "allOf": [
238
+ {
239
+ "$ref": "#/definitions/InteractionTrigger"
240
+ },
241
+ {
242
+ "const": "user"
243
+ }
244
+ ]
245
+ },
246
+ "type": {
247
+ "allOf": [
248
+ {
249
+ "$ref": "#/definitions/InteractionType"
250
+ },
251
+ {
252
+ "const": "click"
253
+ }
254
+ ]
255
+ }
256
+ }
257
+ },
258
+ "payload": {
259
+ "$ref": "#/definitions/KaiPromptedPayload"
260
+ }
261
+ }
262
+ },
263
+ "sessionStarted": {
264
+ "type": "object",
265
+ "additionalProperties": false,
266
+ "$comment": "This is the sessions started",
267
+ "required": [
268
+ "event_name",
269
+ "event_source",
270
+ "event_display_name",
271
+ "interaction",
272
+ "payload"
273
+ ],
274
+ "properties": {
275
+ "event_name": {
276
+ "type": "string",
277
+ "const": "session_started"
278
+ },
279
+ "event_source": {
280
+ "type": "string",
281
+ "const": "editor"
282
+ },
283
+ "event_display_name": {
284
+ "type": "string",
285
+ "const": "Editor session start"
286
+ },
287
+ "interaction": {
288
+ "type": "object",
289
+ "additionalProperties": false,
290
+ "required": ["location", "trigger", "type"],
291
+ "properties": {
292
+ "location": {
293
+ "type": "string",
294
+ "const": "global"
295
+ },
296
+ "trigger": {
297
+ "allOf": [
298
+ {
299
+ "$ref": "#/definitions/InteractionTrigger"
300
+ },
301
+ {
302
+ "const": "system"
303
+ }
304
+ ]
305
+ },
306
+ "type": {
307
+ "allOf": [
308
+ {
309
+ "$ref": "#/definitions/InteractionType"
310
+ },
311
+ {
312
+ "const": "auto"
313
+ }
314
+ ]
315
+ }
316
+ }
317
+ },
318
+ "payload": {
319
+ "$ref": "#/definitions/EmptyPayload"
320
+ }
321
+ }
322
+ },
323
+ "layoutEditorOpenedCtxMenu": {
324
+ "type": "object",
325
+ "additionalProperties": false,
326
+ "required": [
327
+ "event_name",
328
+ "event_source",
329
+ "event_display_name",
330
+ "interaction",
331
+ "payload"
332
+ ],
333
+ "properties": {
334
+ "event_name": {
335
+ "type": "string",
336
+ "const": "layouteditor_opened"
337
+ },
338
+ "event_source": {
339
+ "type": "string",
340
+ "const": "editor"
341
+ },
342
+ "event_display_name": {
343
+ "type": "string",
344
+ "const": "Layout Editor Opened"
345
+ },
346
+ "interaction": {
347
+ "type": "object",
348
+ "additionalProperties": false,
349
+ "required": ["location", "trigger", "type"],
350
+ "properties": {
351
+ "location": {
352
+ "type": "string",
353
+ "const": "canvas"
354
+ },
355
+ "trigger": {
356
+ "allOf": [
357
+ {
358
+ "$ref": "#/definitions/InteractionTrigger"
359
+ },
360
+ {
361
+ "const": "user"
362
+ }
363
+ ]
364
+ },
365
+ "type": {
366
+ "allOf": [
367
+ {
368
+ "$ref": "#/definitions/InteractionType"
369
+ },
370
+ {
371
+ "const": "click"
372
+ }
373
+ ]
374
+ }
375
+ }
376
+ },
377
+ "payload": {
378
+ "$ref": "#/definitions/EmptyPayload"
379
+ }
380
+ }
381
+ },
382
+ "layoutEditorOpenedKeyboard": {
383
+ "type": "object",
384
+ "additionalProperties": false,
385
+ "required": [
386
+ "event_name",
387
+ "event_source",
388
+ "event_display_name",
389
+ "interaction",
390
+ "payload"
391
+ ],
392
+ "properties": {
393
+ "event_name": {
394
+ "type": "string",
395
+ "const": "layouteditor_opened"
396
+ },
397
+ "event_source": {
398
+ "type": "string",
399
+ "const": "editor"
400
+ },
401
+ "event_display_name": {
402
+ "type": "string",
403
+ "const": "Layout Editor Opened"
404
+ },
405
+ "interaction": {
406
+ "type": "object",
407
+ "additionalProperties": false,
408
+ "required": ["location", "trigger", "type"],
409
+ "properties": {
410
+ "location": {
411
+ "type": "string",
412
+ "const": "global"
413
+ },
414
+ "trigger": {
415
+ "allOf": [
416
+ {
417
+ "$ref": "#/definitions/InteractionTrigger"
418
+ },
419
+ {
420
+ "const": "user"
421
+ }
422
+ ]
423
+ },
424
+ "type": {
425
+ "allOf": [
426
+ {
427
+ "$ref": "#/definitions/InteractionType"
428
+ },
429
+ {
430
+ "const": "shortcut"
431
+ }
432
+ ]
433
+ }
434
+ }
435
+ },
436
+ "payload": {
437
+ "$ref": "#/definitions/EmptyPayload"
438
+ }
439
+ }
440
+ },
441
+ "layoutEditorOpenedToolbar": {
442
+ "type": "object",
443
+ "additionalProperties": false,
444
+ "required": [
445
+ "event_name",
446
+ "event_source",
447
+ "event_display_name",
448
+ "interaction",
449
+ "payload"
450
+ ],
451
+ "properties": {
452
+ "event_name": {
453
+ "type": "string",
454
+ "const": "layouteditor_opened"
455
+ },
456
+ "event_source": {
457
+ "type": "string",
458
+ "const": "editor"
459
+ },
460
+ "event_display_name": {
461
+ "type": "string",
462
+ "const": "Layout Editor Opened"
463
+ },
464
+ "interaction": {
465
+ "type": "object",
466
+ "additionalProperties": false,
467
+ "required": ["location", "trigger", "type"],
468
+ "properties": {
469
+ "location": {
470
+ "type": "string",
471
+ "const": "workflow_toolbar"
472
+ },
473
+ "trigger": {
474
+ "allOf": [
475
+ {
476
+ "$ref": "#/definitions/InteractionTrigger"
477
+ },
478
+ {
479
+ "const": "user"
480
+ }
481
+ ]
482
+ },
483
+ "type": {
484
+ "allOf": [
485
+ {
486
+ "$ref": "#/definitions/InteractionType"
487
+ },
488
+ {
489
+ "const": "click"
490
+ }
491
+ ]
492
+ }
493
+ }
494
+ },
495
+ "payload": {
496
+ "$ref": "#/definitions/EmptyPayload"
497
+ }
498
+ }
499
+ },
500
+ "annotationCreatedCtxMenu": {
501
+ "type": "object",
502
+ "additionalProperties": false,
503
+ "required": [
504
+ "event_name",
505
+ "event_source",
506
+ "event_display_name",
507
+ "interaction",
508
+ "payload"
509
+ ],
510
+ "properties": {
511
+ "event_name": {
512
+ "type": "string",
513
+ "const": "annotation_created"
514
+ },
515
+ "event_source": {
516
+ "type": "string",
517
+ "const": "editor"
518
+ },
519
+ "event_display_name": {
520
+ "type": "string",
521
+ "const": "Annotation Created"
522
+ },
523
+ "interaction": {
524
+ "type": "object",
525
+ "additionalProperties": false,
526
+ "required": ["location", "trigger", "type"],
527
+ "properties": {
528
+ "location": {
529
+ "type": "string",
530
+ "const": "canvas"
531
+ },
532
+ "trigger": {
533
+ "allOf": [
534
+ {
535
+ "$ref": "#/definitions/InteractionTrigger"
536
+ },
537
+ {
538
+ "const": "user"
539
+ }
540
+ ]
541
+ },
542
+ "type": {
543
+ "allOf": [
544
+ {
545
+ "$ref": "#/definitions/InteractionType"
546
+ },
547
+ {
548
+ "const": "click"
549
+ }
550
+ ]
551
+ },
552
+ "ui_element": {
553
+ "type": "string",
554
+ "const": "context_menu"
555
+ }
556
+ }
557
+ },
558
+ "payload": {
559
+ "$ref": "#/definitions/EmptyPayload"
560
+ }
561
+ }
562
+ },
563
+ "annotationCreatedKaiExplain": {
564
+ "type": "object",
565
+ "additionalProperties": false,
566
+ "required": [
567
+ "event_name",
568
+ "event_source",
569
+ "event_display_name",
570
+ "interaction",
571
+ "payload"
572
+ ],
573
+ "properties": {
574
+ "event_name": {
575
+ "type": "string",
576
+ "const": "annotation_created"
577
+ },
578
+ "event_source": {
579
+ "type": "string",
580
+ "const": "editor"
581
+ },
582
+ "event_display_name": {
583
+ "type": "string",
584
+ "const": "Annotation Created"
585
+ },
586
+ "interaction": {
587
+ "type": "object",
588
+ "additionalProperties": false,
589
+ "required": ["location", "trigger", "type"],
590
+ "properties": {
591
+ "location": {
592
+ "type": "string",
593
+ "const": "canvas"
594
+ },
595
+ "trigger": {
596
+ "allOf": [
597
+ {
598
+ "$ref": "#/definitions/InteractionTrigger"
599
+ },
600
+ {
601
+ "const": "user"
602
+ }
603
+ ]
604
+ },
605
+ "type": {
606
+ "allOf": [
607
+ {
608
+ "$ref": "#/definitions/InteractionType"
609
+ },
610
+ {
611
+ "const": "click"
612
+ }
613
+ ]
614
+ },
615
+ "ui_element": {
616
+ "type": "string",
617
+ "const": "context_menu"
618
+ }
619
+ }
620
+ },
621
+ "payload": {
622
+ "$ref": "#/definitions/EmptyPayload"
623
+ }
624
+ }
625
+ },
626
+ "workflowSavedToolbar": {
627
+ "type": "object",
628
+ "additionalProperties": false,
629
+ "required": [
630
+ "event_name",
631
+ "event_source",
632
+ "event_display_name",
633
+ "interaction",
634
+ "payload"
635
+ ],
636
+ "properties": {
637
+ "event_name": {
638
+ "type": "string",
639
+ "const": "workflow_saved"
640
+ },
641
+ "event_source": {
642
+ "type": "string",
643
+ "const": "editor"
644
+ },
645
+ "event_display_name": {
646
+ "type": "string",
647
+ "const": "Workflow Saved"
648
+ },
649
+ "interaction": {
650
+ "type": "object",
651
+ "additionalProperties": false,
652
+ "required": ["location", "trigger", "type"],
653
+ "properties": {
654
+ "location": {
655
+ "type": "string",
656
+ "const": "workflow_toolbar"
657
+ },
658
+ "trigger": {
659
+ "allOf": [
660
+ {
661
+ "$ref": "#/definitions/InteractionTrigger"
662
+ },
663
+ {
664
+ "const": "user"
665
+ }
666
+ ]
667
+ },
668
+ "type": {
669
+ "allOf": [
670
+ {
671
+ "$ref": "#/definitions/InteractionType"
672
+ },
673
+ {
674
+ "const": "click"
675
+ }
676
+ ]
677
+ }
678
+ }
679
+ },
680
+ "payload": {
681
+ "$ref": "#/definitions/WorkflowSavedPayload"
682
+ }
683
+ }
684
+ },
685
+ "workflowSavedKeyboard": {
686
+ "type": "object",
687
+ "additionalProperties": false,
688
+ "required": [
689
+ "event_name",
690
+ "event_source",
691
+ "event_display_name",
692
+ "interaction",
693
+ "payload"
694
+ ],
695
+ "properties": {
696
+ "event_name": {
697
+ "type": "string",
698
+ "const": "workflow_saved"
699
+ },
700
+ "event_source": {
701
+ "type": "string",
702
+ "const": "editor"
703
+ },
704
+ "event_display_name": {
705
+ "type": "string",
706
+ "const": "Workflow Saved"
707
+ },
708
+ "interaction": {
709
+ "type": "object",
710
+ "additionalProperties": false,
711
+ "required": ["location", "trigger", "type"],
712
+ "properties": {
713
+ "location": {
714
+ "type": "string",
715
+ "const": "global"
716
+ },
717
+ "trigger": {
718
+ "allOf": [
719
+ {
720
+ "$ref": "#/definitions/InteractionTrigger"
721
+ },
722
+ {
723
+ "const": "user"
724
+ }
725
+ ]
726
+ },
727
+ "type": {
728
+ "allOf": [
729
+ {
730
+ "$ref": "#/definitions/InteractionType"
731
+ },
732
+ {
733
+ "const": "shortcut"
734
+ }
735
+ ]
736
+ }
737
+ }
738
+ },
739
+ "payload": {
740
+ "$ref": "#/definitions/WorkflowSavedPayload"
741
+ }
742
+ }
743
+ },
744
+ "connectionCreatedPortDragDrop": {
745
+ "type": "object",
746
+ "additionalProperties": false,
747
+ "required": [
748
+ "event_name",
749
+ "event_source",
750
+ "event_display_name",
751
+ "interaction",
752
+ "payload"
753
+ ],
754
+ "properties": {
755
+ "event_name": {
756
+ "type": "string",
757
+ "const": "connection_created"
758
+ },
759
+ "event_source": {
760
+ "type": "string",
761
+ "const": "editor"
762
+ },
763
+ "event_display_name": {
764
+ "type": "string",
765
+ "const": "Connection Created"
766
+ },
767
+ "interaction": {
768
+ "type": "object",
769
+ "additionalProperties": false,
770
+ "required": ["location", "trigger", "type"],
771
+ "properties": {
772
+ "location": {
773
+ "type": "string",
774
+ "const": "canvas"
775
+ },
776
+ "trigger": {
777
+ "allOf": [
778
+ {
779
+ "$ref": "#/definitions/InteractionTrigger"
780
+ },
781
+ {
782
+ "const": "user"
783
+ }
784
+ ]
785
+ },
786
+ "type": {
787
+ "allOf": [
788
+ {
789
+ "$ref": "#/definitions/InteractionType"
790
+ },
791
+ {
792
+ "const": "drag_drop"
793
+ }
794
+ ]
795
+ }
796
+ }
797
+ },
798
+ "payload": {
799
+ "$ref": "#/definitions/ConnectionCreatedPayload"
800
+ }
801
+ }
802
+ },
803
+ "connectionCreatedKeyboard": {
804
+ "type": "object",
805
+ "additionalProperties": false,
806
+ "required": [
807
+ "event_name",
808
+ "event_source",
809
+ "event_display_name",
810
+ "interaction",
811
+ "payload"
812
+ ],
813
+ "properties": {
814
+ "event_name": {
815
+ "type": "string",
816
+ "const": "connection_created_autoconnect"
817
+ },
818
+ "event_source": {
819
+ "type": "string",
820
+ "const": "editor"
821
+ },
822
+ "event_display_name": {
823
+ "type": "string",
824
+ "const": "Connection created autoconnect"
825
+ },
826
+ "interaction": {
827
+ "type": "object",
828
+ "additionalProperties": false,
829
+ "required": ["location", "trigger", "type"],
830
+ "properties": {
831
+ "location": {
832
+ "type": "string",
833
+ "const": "canvas"
834
+ },
835
+ "trigger": {
836
+ "allOf": [
837
+ {
838
+ "$ref": "#/definitions/InteractionTrigger"
839
+ },
840
+ {
841
+ "const": "user"
842
+ }
843
+ ]
844
+ },
845
+ "type": {
846
+ "allOf": [
847
+ {
848
+ "$ref": "#/definitions/InteractionType"
849
+ },
850
+ {
851
+ "const": "shortcut"
852
+ }
853
+ ]
854
+ }
855
+ }
856
+ },
857
+ "payload": {
858
+ "$ref": "#/definitions/ConnectionCreatedAutoconnectPayload"
859
+ }
860
+ }
861
+ },
862
+ "connectionCreatedCtxMenu": {
863
+ "type": "object",
864
+ "additionalProperties": false,
865
+ "required": [
866
+ "event_name",
867
+ "event_source",
868
+ "event_display_name",
869
+ "interaction",
870
+ "payload"
871
+ ],
872
+ "properties": {
873
+ "event_name": {
874
+ "type": "string",
875
+ "const": "connection_created_autoconnect"
876
+ },
877
+ "event_source": {
878
+ "type": "string",
879
+ "const": "editor"
880
+ },
881
+ "event_display_name": {
882
+ "type": "string",
883
+ "const": "Connection created autoconnect"
884
+ },
885
+ "interaction": {
886
+ "type": "object",
887
+ "additionalProperties": false,
888
+ "required": ["location", "trigger", "type"],
889
+ "properties": {
890
+ "location": {
891
+ "type": "string",
892
+ "const": "canvas"
893
+ },
894
+ "trigger": {
895
+ "allOf": [
896
+ {
897
+ "$ref": "#/definitions/InteractionTrigger"
898
+ },
899
+ {
900
+ "const": "user"
901
+ }
902
+ ]
903
+ },
904
+ "type": {
905
+ "allOf": [
906
+ {
907
+ "$ref": "#/definitions/InteractionType"
908
+ },
909
+ {
910
+ "const": "click"
911
+ }
912
+ ]
913
+ },
914
+ "ui_element": {
915
+ "type": "string",
916
+ "const": "context_menu"
917
+ }
918
+ }
919
+ },
920
+ "payload": {
921
+ "$ref": "#/definitions/ConnectionCreatedAutoconnectPayload"
922
+ }
923
+ }
924
+ },
925
+ "nodeCreatedNodeRepoDragDrop": {
926
+ "type": "object",
927
+ "additionalProperties": false,
928
+ "required": [
929
+ "event_name",
930
+ "event_source",
931
+ "event_display_name",
932
+ "interaction",
933
+ "payload"
934
+ ],
935
+ "properties": {
936
+ "event_name": {
937
+ "type": "string",
938
+ "const": "node_created"
939
+ },
940
+ "event_source": {
941
+ "type": "string",
942
+ "const": "editor"
943
+ },
944
+ "event_display_name": {
945
+ "type": "string",
946
+ "const": "Node Created"
947
+ },
948
+ "interaction": {
949
+ "type": "object",
950
+ "additionalProperties": false,
951
+ "required": ["location", "trigger", "type"],
952
+ "properties": {
953
+ "location": {
954
+ "type": "string",
955
+ "const": "noderepository"
956
+ },
957
+ "trigger": {
958
+ "allOf": [
959
+ {
960
+ "$ref": "#/definitions/InteractionTrigger"
961
+ },
962
+ {
963
+ "const": "user"
964
+ }
965
+ ]
966
+ },
967
+ "type": {
968
+ "allOf": [
969
+ {
970
+ "$ref": "#/definitions/InteractionType"
971
+ },
972
+ {
973
+ "const": "drag_drop"
974
+ }
975
+ ]
976
+ }
977
+ }
978
+ },
979
+ "payload": {
980
+ "$ref": "#/definitions/NodeCreated_Base"
981
+ }
982
+ }
983
+ },
984
+ "nodeCreatedNodeRepoDoubleClick": {
985
+ "type": "object",
986
+ "additionalProperties": false,
987
+ "required": [
988
+ "event_name",
989
+ "event_source",
990
+ "event_display_name",
991
+ "interaction",
992
+ "payload"
993
+ ],
994
+ "properties": {
995
+ "event_name": {
996
+ "type": "string",
997
+ "const": "node_created"
998
+ },
999
+ "event_source": {
1000
+ "type": "string",
1001
+ "const": "editor"
1002
+ },
1003
+ "event_display_name": {
1004
+ "type": "string",
1005
+ "const": "Node Created"
1006
+ },
1007
+ "interaction": {
1008
+ "type": "object",
1009
+ "additionalProperties": false,
1010
+ "required": ["location", "trigger", "type"],
1011
+ "properties": {
1012
+ "location": {
1013
+ "type": "string",
1014
+ "const": "noderepository"
1015
+ },
1016
+ "trigger": {
1017
+ "allOf": [
1018
+ {
1019
+ "$ref": "#/definitions/InteractionTrigger"
1020
+ },
1021
+ {
1022
+ "const": "user"
1023
+ }
1024
+ ]
1025
+ },
1026
+ "type": {
1027
+ "allOf": [
1028
+ {
1029
+ "$ref": "#/definitions/InteractionType"
1030
+ },
1031
+ {
1032
+ "const": "double_click"
1033
+ }
1034
+ ]
1035
+ }
1036
+ }
1037
+ },
1038
+ "payload": {
1039
+ "$ref": "#/definitions/NodeCreated_WithOptionalConnectedTo"
1040
+ }
1041
+ }
1042
+ },
1043
+ "nodeCreatedNodeRepoKeyboard": {
1044
+ "type": "object",
1045
+ "additionalProperties": false,
1046
+ "required": [
1047
+ "event_name",
1048
+ "event_source",
1049
+ "event_display_name",
1050
+ "interaction",
1051
+ "payload"
1052
+ ],
1053
+ "properties": {
1054
+ "event_name": {
1055
+ "type": "string",
1056
+ "const": "node_created"
1057
+ },
1058
+ "event_source": {
1059
+ "type": "string",
1060
+ "const": "editor"
1061
+ },
1062
+ "event_display_name": {
1063
+ "type": "string",
1064
+ "const": "Node Created"
1065
+ },
1066
+ "interaction": {
1067
+ "type": "object",
1068
+ "additionalProperties": false,
1069
+ "required": ["location", "trigger", "type"],
1070
+ "properties": {
1071
+ "location": {
1072
+ "type": "string",
1073
+ "const": "noderepository"
1074
+ },
1075
+ "trigger": {
1076
+ "allOf": [
1077
+ {
1078
+ "$ref": "#/definitions/InteractionTrigger"
1079
+ },
1080
+ {
1081
+ "const": "user"
1082
+ }
1083
+ ]
1084
+ },
1085
+ "type": {
1086
+ "allOf": [
1087
+ {
1088
+ "$ref": "#/definitions/InteractionType"
1089
+ },
1090
+ {
1091
+ "const": "key_press"
1092
+ }
1093
+ ]
1094
+ }
1095
+ }
1096
+ },
1097
+ "payload": {
1098
+ "$ref": "#/definitions/NodeCreated_WithOptionalConnectedTo"
1099
+ }
1100
+ }
1101
+ },
1102
+ "nodeCreatedExplorerDragDrop": {
1103
+ "type": "object",
1104
+ "additionalProperties": false,
1105
+ "required": [
1106
+ "event_name",
1107
+ "event_source",
1108
+ "event_display_name",
1109
+ "interaction",
1110
+ "payload"
1111
+ ],
1112
+ "properties": {
1113
+ "event_name": {
1114
+ "type": "string",
1115
+ "const": "node_created"
1116
+ },
1117
+ "event_source": {
1118
+ "type": "string",
1119
+ "const": "editor"
1120
+ },
1121
+ "event_display_name": {
1122
+ "type": "string",
1123
+ "const": "Node Created"
1124
+ },
1125
+ "interaction": {
1126
+ "type": "object",
1127
+ "additionalProperties": false,
1128
+ "required": ["location", "trigger", "type"],
1129
+ "properties": {
1130
+ "location": {
1131
+ "type": "string",
1132
+ "const": "space_explorer"
1133
+ },
1134
+ "trigger": {
1135
+ "allOf": [
1136
+ {
1137
+ "$ref": "#/definitions/InteractionTrigger"
1138
+ },
1139
+ {
1140
+ "const": "user"
1141
+ }
1142
+ ]
1143
+ },
1144
+ "type": {
1145
+ "allOf": [
1146
+ {
1147
+ "$ref": "#/definitions/InteractionType"
1148
+ },
1149
+ {
1150
+ "const": "drag_drop"
1151
+ }
1152
+ ]
1153
+ }
1154
+ }
1155
+ },
1156
+ "payload": {
1157
+ "$ref": "#/definitions/NodeCreated_Base"
1158
+ }
1159
+ }
1160
+ },
1161
+ "nodeCreatedQamClick": {
1162
+ "type": "object",
1163
+ "additionalProperties": false,
1164
+ "required": [
1165
+ "event_name",
1166
+ "event_source",
1167
+ "event_display_name",
1168
+ "interaction",
1169
+ "payload"
1170
+ ],
1171
+ "properties": {
1172
+ "event_name": {
1173
+ "type": "string",
1174
+ "const": "node_created"
1175
+ },
1176
+ "event_source": {
1177
+ "type": "string",
1178
+ "const": "editor"
1179
+ },
1180
+ "event_display_name": {
1181
+ "type": "string",
1182
+ "const": "Node Created"
1183
+ },
1184
+ "interaction": {
1185
+ "type": "object",
1186
+ "additionalProperties": false,
1187
+ "required": ["location", "trigger", "type"],
1188
+ "properties": {
1189
+ "location": {
1190
+ "type": "string",
1191
+ "const": "qam"
1192
+ },
1193
+ "trigger": {
1194
+ "allOf": [
1195
+ {
1196
+ "$ref": "#/definitions/InteractionTrigger"
1197
+ },
1198
+ {
1199
+ "const": "user"
1200
+ }
1201
+ ]
1202
+ },
1203
+ "type": {
1204
+ "allOf": [
1205
+ {
1206
+ "$ref": "#/definitions/InteractionType"
1207
+ },
1208
+ {
1209
+ "const": "click"
1210
+ }
1211
+ ]
1212
+ }
1213
+ }
1214
+ },
1215
+ "payload": {
1216
+ "$ref": "#/definitions/NodeCreated_WithOptionalConnectedToPorts"
1217
+ }
1218
+ }
1219
+ },
1220
+ "nodeCreatedQamKeyboard": {
1221
+ "type": "object",
1222
+ "additionalProperties": false,
1223
+ "required": [
1224
+ "event_name",
1225
+ "event_source",
1226
+ "event_display_name",
1227
+ "interaction",
1228
+ "payload"
1229
+ ],
1230
+ "properties": {
1231
+ "event_name": {
1232
+ "type": "string",
1233
+ "const": "node_created"
1234
+ },
1235
+ "event_source": {
1236
+ "type": "string",
1237
+ "const": "editor"
1238
+ },
1239
+ "event_display_name": {
1240
+ "type": "string",
1241
+ "const": "Node Created"
1242
+ },
1243
+ "interaction": {
1244
+ "type": "object",
1245
+ "additionalProperties": false,
1246
+ "required": ["location", "trigger", "type"],
1247
+ "properties": {
1248
+ "location": {
1249
+ "type": "string",
1250
+ "const": "qam"
1251
+ },
1252
+ "trigger": {
1253
+ "allOf": [
1254
+ {
1255
+ "$ref": "#/definitions/InteractionTrigger"
1256
+ },
1257
+ {
1258
+ "const": "user"
1259
+ }
1260
+ ]
1261
+ },
1262
+ "type": {
1263
+ "allOf": [
1264
+ {
1265
+ "$ref": "#/definitions/InteractionType"
1266
+ },
1267
+ {
1268
+ "const": "key_press"
1269
+ }
1270
+ ]
1271
+ }
1272
+ }
1273
+ },
1274
+ "payload": {
1275
+ "$ref": "#/definitions/NodeCreated_WithOptionalConnectedToPorts"
1276
+ }
1277
+ }
1278
+ },
1279
+ "nodeCreatedKaiQaDragDrop": {
1280
+ "type": "object",
1281
+ "additionalProperties": false,
1282
+ "required": [
1283
+ "event_name",
1284
+ "event_source",
1285
+ "event_display_name",
1286
+ "interaction",
1287
+ "payload"
1288
+ ],
1289
+ "properties": {
1290
+ "event_name": {
1291
+ "type": "string",
1292
+ "const": "node_created"
1293
+ },
1294
+ "event_source": {
1295
+ "type": "string",
1296
+ "const": "editor"
1297
+ },
1298
+ "event_display_name": {
1299
+ "type": "string",
1300
+ "const": "Node Created"
1301
+ },
1302
+ "interaction": {
1303
+ "type": "object",
1304
+ "additionalProperties": false,
1305
+ "required": ["location", "trigger", "type"],
1306
+ "properties": {
1307
+ "location": {
1308
+ "type": "string",
1309
+ "const": "kai"
1310
+ },
1311
+ "trigger": {
1312
+ "allOf": [
1313
+ {
1314
+ "$ref": "#/definitions/InteractionTrigger"
1315
+ },
1316
+ {
1317
+ "const": "user"
1318
+ }
1319
+ ]
1320
+ },
1321
+ "type": {
1322
+ "allOf": [
1323
+ {
1324
+ "$ref": "#/definitions/InteractionType"
1325
+ },
1326
+ {
1327
+ "const": "drag_drop"
1328
+ }
1329
+ ]
1330
+ }
1331
+ }
1332
+ },
1333
+ "payload": {
1334
+ "$ref": "#/definitions/NodeCreated_Base"
1335
+ }
1336
+ }
1337
+ },
1338
+ "nodeCreatedKaiQaKeyboard": {
1339
+ "type": "object",
1340
+ "additionalProperties": false,
1341
+ "required": [
1342
+ "event_name",
1343
+ "event_source",
1344
+ "event_display_name",
1345
+ "interaction",
1346
+ "payload"
1347
+ ],
1348
+ "properties": {
1349
+ "event_name": {
1350
+ "type": "string",
1351
+ "const": "node_created"
1352
+ },
1353
+ "event_source": {
1354
+ "type": "string",
1355
+ "const": "editor"
1356
+ },
1357
+ "event_display_name": {
1358
+ "type": "string",
1359
+ "const": "Node Created"
1360
+ },
1361
+ "interaction": {
1362
+ "type": "object",
1363
+ "additionalProperties": false,
1364
+ "required": ["location", "trigger", "type"],
1365
+ "properties": {
1366
+ "location": {
1367
+ "type": "string",
1368
+ "const": "kai"
1369
+ },
1370
+ "trigger": {
1371
+ "allOf": [
1372
+ {
1373
+ "$ref": "#/definitions/InteractionTrigger"
1374
+ },
1375
+ {
1376
+ "const": "user"
1377
+ }
1378
+ ]
1379
+ },
1380
+ "type": {
1381
+ "allOf": [
1382
+ {
1383
+ "$ref": "#/definitions/InteractionType"
1384
+ },
1385
+ {
1386
+ "const": "key_press"
1387
+ }
1388
+ ]
1389
+ }
1390
+ }
1391
+ },
1392
+ "payload": {
1393
+ "$ref": "#/definitions/NodeCreated_Base"
1394
+ }
1395
+ }
1396
+ },
1397
+ "qamOpenedPortDragDrop": {
1398
+ "type": "object",
1399
+ "additionalProperties": false,
1400
+ "required": [
1401
+ "event_name",
1402
+ "event_source",
1403
+ "event_display_name",
1404
+ "interaction",
1405
+ "payload"
1406
+ ],
1407
+ "properties": {
1408
+ "event_name": {
1409
+ "type": "string",
1410
+ "const": "qam_opened"
1411
+ },
1412
+ "event_source": {
1413
+ "type": "string",
1414
+ "const": "editor"
1415
+ },
1416
+ "event_display_name": {
1417
+ "type": "string",
1418
+ "const": "QAM Opened"
1419
+ },
1420
+ "interaction": {
1421
+ "type": "object",
1422
+ "additionalProperties": false,
1423
+ "required": ["location", "trigger", "type"],
1424
+ "properties": {
1425
+ "location": {
1426
+ "type": "string",
1427
+ "const": "canvas"
1428
+ },
1429
+ "trigger": {
1430
+ "allOf": [
1431
+ {
1432
+ "$ref": "#/definitions/InteractionTrigger"
1433
+ },
1434
+ {
1435
+ "const": "user"
1436
+ }
1437
+ ]
1438
+ },
1439
+ "type": {
1440
+ "allOf": [
1441
+ {
1442
+ "$ref": "#/definitions/InteractionType"
1443
+ },
1444
+ {
1445
+ "const": "drag_drop"
1446
+ }
1447
+ ]
1448
+ }
1449
+ }
1450
+ },
1451
+ "payload": {
1452
+ "$ref": "#/definitions/QAMOpened_Payload"
1453
+ }
1454
+ }
1455
+ },
1456
+ "qamOpenedCanvasDoubleClick": {
1457
+ "type": "object",
1458
+ "additionalProperties": false,
1459
+ "required": [
1460
+ "event_name",
1461
+ "event_source",
1462
+ "event_display_name",
1463
+ "interaction",
1464
+ "payload"
1465
+ ],
1466
+ "properties": {
1467
+ "event_name": {
1468
+ "type": "string",
1469
+ "const": "qam_opened"
1470
+ },
1471
+ "event_source": {
1472
+ "type": "string",
1473
+ "const": "editor"
1474
+ },
1475
+ "event_display_name": {
1476
+ "type": "string",
1477
+ "const": "QAM Opened"
1478
+ },
1479
+ "interaction": {
1480
+ "type": "object",
1481
+ "additionalProperties": false,
1482
+ "required": ["location", "trigger", "type"],
1483
+ "properties": {
1484
+ "location": {
1485
+ "type": "string",
1486
+ "const": "canvas"
1487
+ },
1488
+ "trigger": {
1489
+ "allOf": [
1490
+ {
1491
+ "$ref": "#/definitions/InteractionTrigger"
1492
+ },
1493
+ {
1494
+ "const": "user"
1495
+ }
1496
+ ]
1497
+ },
1498
+ "type": {
1499
+ "allOf": [
1500
+ {
1501
+ "$ref": "#/definitions/InteractionType"
1502
+ },
1503
+ {
1504
+ "const": "double_click"
1505
+ }
1506
+ ]
1507
+ }
1508
+ }
1509
+ },
1510
+ "payload": {
1511
+ "$ref": "#/definitions/EmptyPayload"
1512
+ }
1513
+ }
1514
+ },
1515
+ "qamOpenedKeyboard": {
1516
+ "type": "object",
1517
+ "additionalProperties": false,
1518
+ "required": [
1519
+ "event_name",
1520
+ "event_source",
1521
+ "event_display_name",
1522
+ "interaction",
1523
+ "payload"
1524
+ ],
1525
+ "properties": {
1526
+ "event_name": {
1527
+ "type": "string",
1528
+ "const": "qam_opened"
1529
+ },
1530
+ "event_source": {
1531
+ "type": "string",
1532
+ "const": "editor"
1533
+ },
1534
+ "event_display_name": {
1535
+ "type": "string",
1536
+ "const": "QAM Opened"
1537
+ },
1538
+ "interaction": {
1539
+ "type": "object",
1540
+ "additionalProperties": false,
1541
+ "required": ["location", "trigger", "type"],
1542
+ "properties": {
1543
+ "location": {
1544
+ "type": "string",
1545
+ "const": "canvas"
1546
+ },
1547
+ "trigger": {
1548
+ "allOf": [
1549
+ {
1550
+ "$ref": "#/definitions/InteractionTrigger"
1551
+ },
1552
+ {
1553
+ "const": "user"
1554
+ }
1555
+ ]
1556
+ },
1557
+ "type": {
1558
+ "allOf": [
1559
+ {
1560
+ "$ref": "#/definitions/InteractionType"
1561
+ },
1562
+ {
1563
+ "const": "shortcut"
1564
+ }
1565
+ ]
1566
+ }
1567
+ }
1568
+ },
1569
+ "payload": {
1570
+ "$ref": "#/definitions/QAMOpened_PartialPayload"
1571
+ }
1572
+ }
1573
+ },
1574
+ "qamOpenedCtxMenu": {
1575
+ "type": "object",
1576
+ "additionalProperties": false,
1577
+ "required": [
1578
+ "event_name",
1579
+ "event_source",
1580
+ "event_display_name",
1581
+ "interaction",
1582
+ "payload"
1583
+ ],
1584
+ "properties": {
1585
+ "event_name": {
1586
+ "type": "string",
1587
+ "const": "qam_opened"
1588
+ },
1589
+ "event_source": {
1590
+ "type": "string",
1591
+ "const": "editor"
1592
+ },
1593
+ "event_display_name": {
1594
+ "type": "string",
1595
+ "const": "QAM Opened"
1596
+ },
1597
+ "interaction": {
1598
+ "type": "object",
1599
+ "additionalProperties": false,
1600
+ "required": ["location", "trigger", "type"],
1601
+ "properties": {
1602
+ "location": {
1603
+ "type": "string",
1604
+ "const": "canvas"
1605
+ },
1606
+ "trigger": {
1607
+ "allOf": [
1608
+ {
1609
+ "$ref": "#/definitions/InteractionTrigger"
1610
+ },
1611
+ {
1612
+ "const": "user"
1613
+ }
1614
+ ]
1615
+ },
1616
+ "type": {
1617
+ "allOf": [
1618
+ {
1619
+ "$ref": "#/definitions/InteractionType"
1620
+ },
1621
+ {
1622
+ "const": "click"
1623
+ }
1624
+ ]
1625
+ },
1626
+ "ui_element": {
1627
+ "type": "string",
1628
+ "const": "context_menu"
1629
+ }
1630
+ }
1631
+ },
1632
+ "payload": {
1633
+ "$ref": "#/definitions/EmptyPayload"
1634
+ }
1635
+ }
1636
+ },
1637
+ "nodeSearchedNodeRepo": {
1638
+ "type": "object",
1639
+ "additionalProperties": false,
1640
+ "required": [
1641
+ "event_name",
1642
+ "event_source",
1643
+ "event_display_name",
1644
+ "interaction",
1645
+ "payload"
1646
+ ],
1647
+ "properties": {
1648
+ "event_name": {
1649
+ "type": "string",
1650
+ "const": "node_searched"
1651
+ },
1652
+ "event_source": {
1653
+ "type": "string",
1654
+ "const": "editor"
1655
+ },
1656
+ "event_display_name": {
1657
+ "type": "string",
1658
+ "const": "Node Searched"
1659
+ },
1660
+ "interaction": {
1661
+ "type": "object",
1662
+ "additionalProperties": false,
1663
+ "required": ["location", "trigger", "type"],
1664
+ "properties": {
1665
+ "location": {
1666
+ "type": "string",
1667
+ "const": "noderepository"
1668
+ },
1669
+ "trigger": {
1670
+ "allOf": [
1671
+ {
1672
+ "$ref": "#/definitions/InteractionTrigger"
1673
+ },
1674
+ {
1675
+ "const": "user"
1676
+ }
1677
+ ]
1678
+ },
1679
+ "type": {
1680
+ "allOf": [
1681
+ {
1682
+ "$ref": "#/definitions/InteractionType"
1683
+ },
1684
+ {
1685
+ "const": "key_press"
1686
+ }
1687
+ ]
1688
+ }
1689
+ }
1690
+ },
1691
+ "payload": {
1692
+ "$ref": "#/definitions/SearchPayload"
1693
+ }
1694
+ }
1695
+ },
1696
+ "nodeSearchedQam": {
1697
+ "type": "object",
1698
+ "additionalProperties": false,
1699
+ "required": [
1700
+ "event_name",
1701
+ "event_source",
1702
+ "event_display_name",
1703
+ "interaction",
1704
+ "payload"
1705
+ ],
1706
+ "properties": {
1707
+ "event_name": {
1708
+ "type": "string",
1709
+ "const": "node_searched"
1710
+ },
1711
+ "event_source": {
1712
+ "type": "string",
1713
+ "const": "editor"
1714
+ },
1715
+ "event_display_name": {
1716
+ "type": "string",
1717
+ "const": "Node Searched"
1718
+ },
1719
+ "interaction": {
1720
+ "type": "object",
1721
+ "additionalProperties": false,
1722
+ "required": ["location", "trigger", "type"],
1723
+ "properties": {
1724
+ "location": {
1725
+ "type": "string",
1726
+ "const": "qam"
1727
+ },
1728
+ "trigger": {
1729
+ "allOf": [
1730
+ {
1731
+ "$ref": "#/definitions/InteractionTrigger"
1732
+ },
1733
+ {
1734
+ "const": "user"
1735
+ }
1736
+ ]
1737
+ },
1738
+ "type": {
1739
+ "allOf": [
1740
+ {
1741
+ "$ref": "#/definitions/InteractionType"
1742
+ },
1743
+ {
1744
+ "const": "key_press"
1745
+ }
1746
+ ]
1747
+ }
1748
+ }
1749
+ },
1750
+ "payload": {
1751
+ "$ref": "#/definitions/SearchPayload"
1752
+ }
1753
+ }
1754
+ },
1755
+ "workflowInfoOpened": {
1756
+ "type": "object",
1757
+ "additionalProperties": false,
1758
+ "required": [
1759
+ "event_name",
1760
+ "event_source",
1761
+ "event_display_name",
1762
+ "interaction",
1763
+ "payload"
1764
+ ],
1765
+ "properties": {
1766
+ "event_name": {
1767
+ "type": "string",
1768
+ "const": "workflow_info_opened"
1769
+ },
1770
+ "event_source": {
1771
+ "type": "string",
1772
+ "const": "editor"
1773
+ },
1774
+ "event_display_name": {
1775
+ "type": "string",
1776
+ "const": "Workflow Info Opened"
1777
+ },
1778
+ "interaction": {
1779
+ "type": "object",
1780
+ "additionalProperties": false,
1781
+ "required": ["location", "trigger", "type"],
1782
+ "properties": {
1783
+ "location": {
1784
+ "type": "string",
1785
+ "const": "workflow_info"
1786
+ },
1787
+ "trigger": {
1788
+ "allOf": [
1789
+ {
1790
+ "$ref": "#/definitions/InteractionTrigger"
1791
+ },
1792
+ {
1793
+ "const": "user"
1794
+ }
1795
+ ]
1796
+ },
1797
+ "type": {
1798
+ "allOf": [
1799
+ {
1800
+ "$ref": "#/definitions/InteractionType"
1801
+ },
1802
+ {
1803
+ "const": "click"
1804
+ }
1805
+ ]
1806
+ }
1807
+ }
1808
+ },
1809
+ "payload": {
1810
+ "$ref": "#/definitions/EmptyPayload"
1811
+ }
1812
+ }
1813
+ },
1814
+ "nodeRepositoryOpened": {
1815
+ "type": "object",
1816
+ "additionalProperties": false,
1817
+ "required": [
1818
+ "event_name",
1819
+ "event_source",
1820
+ "event_display_name",
1821
+ "interaction",
1822
+ "payload"
1823
+ ],
46
1824
  "properties": {
47
- "kaiqa_button_": {
1825
+ "event_name": {
1826
+ "type": "string",
1827
+ "const": "noderepository_opened"
1828
+ },
1829
+ "event_source": {
1830
+ "type": "string",
1831
+ "const": "editor"
1832
+ },
1833
+ "event_display_name": {
1834
+ "type": "string",
1835
+ "const": "Node Repository Opened"
1836
+ },
1837
+ "interaction": {
1838
+ "type": "object",
1839
+ "additionalProperties": false,
1840
+ "required": ["location", "trigger", "type"],
1841
+ "properties": {
1842
+ "location": {
1843
+ "type": "string",
1844
+ "const": "noderepository"
1845
+ },
1846
+ "trigger": {
1847
+ "allOf": [
1848
+ {
1849
+ "$ref": "#/definitions/InteractionTrigger"
1850
+ },
1851
+ {
1852
+ "const": "user"
1853
+ }
1854
+ ]
1855
+ },
1856
+ "type": {
1857
+ "allOf": [
1858
+ {
1859
+ "$ref": "#/definitions/InteractionType"
1860
+ },
1861
+ {
1862
+ "const": "click"
1863
+ }
1864
+ ]
1865
+ }
1866
+ }
1867
+ },
1868
+ "payload": {
48
1869
  "$ref": "#/definitions/EmptyPayload"
1870
+ }
1871
+ }
1872
+ },
1873
+ "spaceExplorerOpened": {
1874
+ "type": "object",
1875
+ "additionalProperties": false,
1876
+ "required": [
1877
+ "event_name",
1878
+ "event_source",
1879
+ "event_display_name",
1880
+ "interaction",
1881
+ "payload"
1882
+ ],
1883
+ "properties": {
1884
+ "event_name": {
1885
+ "type": "string",
1886
+ "const": "space_explorer_opened"
1887
+ },
1888
+ "event_source": {
1889
+ "type": "string",
1890
+ "const": "editor"
49
1891
  },
50
- "kaibuild_button_": {
1892
+ "event_display_name": {
1893
+ "type": "string",
1894
+ "const": "Space Explorer Opened"
1895
+ },
1896
+ "interaction": {
1897
+ "type": "object",
1898
+ "additionalProperties": false,
1899
+ "required": ["location", "trigger", "type"],
1900
+ "properties": {
1901
+ "location": {
1902
+ "type": "string",
1903
+ "const": "space_explorer"
1904
+ },
1905
+ "trigger": {
1906
+ "allOf": [
1907
+ {
1908
+ "$ref": "#/definitions/InteractionTrigger"
1909
+ },
1910
+ {
1911
+ "const": "user"
1912
+ }
1913
+ ]
1914
+ },
1915
+ "type": {
1916
+ "allOf": [
1917
+ {
1918
+ "$ref": "#/definitions/InteractionType"
1919
+ },
1920
+ {
1921
+ "const": "click"
1922
+ }
1923
+ ]
1924
+ }
1925
+ }
1926
+ },
1927
+ "payload": {
51
1928
  "$ref": "#/definitions/EmptyPayload"
1929
+ }
1930
+ }
1931
+ },
1932
+ "kaiOpened": {
1933
+ "type": "object",
1934
+ "additionalProperties": false,
1935
+ "required": [
1936
+ "event_name",
1937
+ "event_source",
1938
+ "event_display_name",
1939
+ "interaction",
1940
+ "payload"
1941
+ ],
1942
+ "properties": {
1943
+ "event_name": {
1944
+ "type": "string",
1945
+ "const": "kai_opened"
52
1946
  },
53
- "qam_button_": {
54
- "$ref": "#/definitions/KaiPromptedPayload"
1947
+ "event_source": {
1948
+ "type": "string",
1949
+ "const": "editor"
1950
+ },
1951
+ "event_display_name": {
1952
+ "type": "string",
1953
+ "const": "K-AI Opened"
1954
+ },
1955
+ "interaction": {
1956
+ "type": "object",
1957
+ "additionalProperties": false,
1958
+ "required": ["location", "trigger", "type"],
1959
+ "properties": {
1960
+ "location": {
1961
+ "type": "string",
1962
+ "const": "kai"
1963
+ },
1964
+ "trigger": {
1965
+ "allOf": [
1966
+ {
1967
+ "$ref": "#/definitions/InteractionTrigger"
1968
+ },
1969
+ {
1970
+ "const": "user"
1971
+ }
1972
+ ]
1973
+ },
1974
+ "type": {
1975
+ "allOf": [
1976
+ {
1977
+ "$ref": "#/definitions/InteractionType"
1978
+ },
1979
+ {
1980
+ "const": "click"
1981
+ }
1982
+ ]
1983
+ }
1984
+ }
1985
+ },
1986
+ "payload": {
1987
+ "$ref": "#/definitions/EmptyPayload"
1988
+ }
1989
+ }
1990
+ },
1991
+ "workflowMonitorOpened": {
1992
+ "type": "object",
1993
+ "additionalProperties": false,
1994
+ "required": [
1995
+ "event_name",
1996
+ "event_source",
1997
+ "event_display_name",
1998
+ "interaction",
1999
+ "payload"
2000
+ ],
2001
+ "properties": {
2002
+ "event_name": {
2003
+ "type": "string",
2004
+ "const": "workflow_monitor_opened"
2005
+ },
2006
+ "event_source": {
2007
+ "type": "string",
2008
+ "const": "editor"
2009
+ },
2010
+ "event_display_name": {
2011
+ "type": "string",
2012
+ "const": "Workflow Monitor opened"
2013
+ },
2014
+ "interaction": {
2015
+ "type": "object",
2016
+ "additionalProperties": false,
2017
+ "required": ["location", "trigger", "type"],
2018
+ "properties": {
2019
+ "location": {
2020
+ "type": "string",
2021
+ "const": "workflow_monitor"
2022
+ },
2023
+ "trigger": {
2024
+ "allOf": [
2025
+ {
2026
+ "$ref": "#/definitions/InteractionTrigger"
2027
+ },
2028
+ {
2029
+ "const": "user"
2030
+ }
2031
+ ]
2032
+ },
2033
+ "type": {
2034
+ "allOf": [
2035
+ {
2036
+ "$ref": "#/definitions/InteractionType"
2037
+ },
2038
+ {
2039
+ "const": "click"
2040
+ }
2041
+ ]
2042
+ }
2043
+ }
2044
+ },
2045
+ "payload": {
2046
+ "$ref": "#/definitions/EmptyPayload"
55
2047
  }
56
2048
  }
57
2049
  },
58
- "session_started": {
2050
+ "versionHistoryOpened": {
59
2051
  "type": "object",
60
2052
  "additionalProperties": false,
61
- "required": ["autotrigger"],
2053
+ "required": [
2054
+ "event_name",
2055
+ "event_source",
2056
+ "event_display_name",
2057
+ "interaction",
2058
+ "payload"
2059
+ ],
62
2060
  "properties": {
63
- "autotrigger": {
2061
+ "event_name": {
2062
+ "type": "string",
2063
+ "const": "version_history_opened"
2064
+ },
2065
+ "event_source": {
2066
+ "type": "string",
2067
+ "const": "editor"
2068
+ },
2069
+ "event_display_name": {
2070
+ "type": "string",
2071
+ "const": "Version History opened"
2072
+ },
2073
+ "interaction": {
2074
+ "type": "object",
2075
+ "additionalProperties": false,
2076
+ "required": ["location", "trigger", "type"],
2077
+ "properties": {
2078
+ "location": {
2079
+ "type": "string",
2080
+ "const": "workflow_toolbar"
2081
+ },
2082
+ "trigger": {
2083
+ "allOf": [
2084
+ {
2085
+ "$ref": "#/definitions/InteractionTrigger"
2086
+ },
2087
+ {
2088
+ "const": "user"
2089
+ }
2090
+ ]
2091
+ },
2092
+ "type": {
2093
+ "allOf": [
2094
+ {
2095
+ "$ref": "#/definitions/InteractionType"
2096
+ },
2097
+ {
2098
+ "const": "click"
2099
+ }
2100
+ ]
2101
+ },
2102
+ "ui_element": {
2103
+ "type": "string",
2104
+ "const": "dropdown_menu"
2105
+ }
2106
+ }
2107
+ },
2108
+ "payload": {
64
2109
  "$ref": "#/definitions/EmptyPayload"
65
2110
  }
66
2111
  }
67
2112
  },
68
- "session_ended": {
2113
+ "actionUndoneToolbar": {
69
2114
  "type": "object",
70
2115
  "additionalProperties": false,
71
2116
  "required": [
72
- "session_tab_closed",
73
- "autotrigger_timedout_",
74
- "autotrigger_disconnect_"
2117
+ "event_name",
2118
+ "event_source",
2119
+ "event_display_name",
2120
+ "interaction",
2121
+ "payload"
75
2122
  ],
76
2123
  "properties": {
77
- "session_tab_closed": {
2124
+ "event_name": {
2125
+ "type": "string",
2126
+ "const": "action_undone"
2127
+ },
2128
+ "event_source": {
2129
+ "type": "string",
2130
+ "const": "editor"
2131
+ },
2132
+ "event_display_name": {
2133
+ "type": "string",
2134
+ "const": "Action Undone"
2135
+ },
2136
+ "interaction": {
2137
+ "type": "object",
2138
+ "additionalProperties": false,
2139
+ "required": ["location", "trigger", "type"],
2140
+ "properties": {
2141
+ "location": {
2142
+ "type": "string",
2143
+ "const": "workflow_toolbar"
2144
+ },
2145
+ "trigger": {
2146
+ "allOf": [
2147
+ {
2148
+ "$ref": "#/definitions/InteractionTrigger"
2149
+ },
2150
+ {
2151
+ "const": "user"
2152
+ }
2153
+ ]
2154
+ },
2155
+ "type": {
2156
+ "allOf": [
2157
+ {
2158
+ "$ref": "#/definitions/InteractionType"
2159
+ },
2160
+ {
2161
+ "const": "click"
2162
+ }
2163
+ ]
2164
+ }
2165
+ }
2166
+ },
2167
+ "payload": {
78
2168
  "$ref": "#/definitions/EmptyPayload"
2169
+ }
2170
+ }
2171
+ },
2172
+ "actionUndoneKeyboard": {
2173
+ "type": "object",
2174
+ "additionalProperties": false,
2175
+ "required": [
2176
+ "event_name",
2177
+ "event_source",
2178
+ "event_display_name",
2179
+ "interaction",
2180
+ "payload"
2181
+ ],
2182
+ "properties": {
2183
+ "event_name": {
2184
+ "type": "string",
2185
+ "const": "action_undone"
2186
+ },
2187
+ "event_source": {
2188
+ "type": "string",
2189
+ "const": "editor"
79
2190
  },
80
- "autotrigger_timedout_": {
2191
+ "event_display_name": {
2192
+ "type": "string",
2193
+ "const": "Action Undone"
2194
+ },
2195
+ "interaction": {
2196
+ "type": "object",
2197
+ "additionalProperties": false,
2198
+ "required": ["location", "trigger", "type"],
2199
+ "properties": {
2200
+ "location": {
2201
+ "type": "string",
2202
+ "const": "global"
2203
+ },
2204
+ "trigger": {
2205
+ "allOf": [
2206
+ {
2207
+ "$ref": "#/definitions/InteractionTrigger"
2208
+ },
2209
+ {
2210
+ "const": "user"
2211
+ }
2212
+ ]
2213
+ },
2214
+ "type": {
2215
+ "allOf": [
2216
+ {
2217
+ "$ref": "#/definitions/InteractionType"
2218
+ },
2219
+ {
2220
+ "const": "shortcut"
2221
+ }
2222
+ ]
2223
+ }
2224
+ }
2225
+ },
2226
+ "payload": {
81
2227
  "$ref": "#/definitions/EmptyPayload"
2228
+ }
2229
+ }
2230
+ },
2231
+ "adHocExecutionStartedDeploymentsPage": {
2232
+ "type": "object",
2233
+ "additionalProperties": false,
2234
+ "$comment": "Fired when the user clicks Run from the deployments page",
2235
+ "required": [
2236
+ "event_name",
2237
+ "event_source",
2238
+ "event_display_name",
2239
+ "interaction",
2240
+ "payload"
2241
+ ],
2242
+ "properties": {
2243
+ "event_name": {
2244
+ "type": "string",
2245
+ "const": "adhoc_execution_started"
2246
+ },
2247
+ "event_source": {
2248
+ "type": "string",
2249
+ "const": "cloudhome"
82
2250
  },
83
- "autotrigger_disconnect_": {
2251
+ "event_display_name": {
2252
+ "type": "string",
2253
+ "const": "Ad Hoc Execution Started"
2254
+ },
2255
+ "interaction": {
2256
+ "type": "object",
2257
+ "additionalProperties": false,
2258
+ "required": ["location", "page", "trigger", "type"],
2259
+ "properties": {
2260
+ "location": {
2261
+ "type": "string",
2262
+ "const": "main_area"
2263
+ },
2264
+ "page": {
2265
+ "type": "string",
2266
+ "const": "deployments"
2267
+ },
2268
+ "trigger": {
2269
+ "allOf": [
2270
+ {
2271
+ "$ref": "#/definitions/InteractionTrigger"
2272
+ },
2273
+ {
2274
+ "const": "user"
2275
+ }
2276
+ ]
2277
+ },
2278
+ "type": {
2279
+ "allOf": [
2280
+ {
2281
+ "$ref": "#/definitions/InteractionType"
2282
+ },
2283
+ {
2284
+ "const": "click"
2285
+ }
2286
+ ]
2287
+ }
2288
+ }
2289
+ },
2290
+ "payload": {
84
2291
  "$ref": "#/definitions/EmptyPayload"
85
2292
  }
86
2293
  }
87
2294
  },
88
- "session_interrupted": {
2295
+ "adHocExecutionStartedExecutionPanel": {
89
2296
  "type": "object",
90
2297
  "additionalProperties": false,
91
- "required": ["session_tab"],
2298
+ "$comment": "Fired when the user clicks Run in the ad hoc execution panel",
2299
+ "required": [
2300
+ "event_name",
2301
+ "event_source",
2302
+ "event_display_name",
2303
+ "interaction",
2304
+ "payload"
2305
+ ],
92
2306
  "properties": {
93
- "session_tab": {
2307
+ "event_name": {
2308
+ "type": "string",
2309
+ "const": "adhoc_execution_started"
2310
+ },
2311
+ "event_source": {
2312
+ "type": "string",
2313
+ "const": "cloudhome"
2314
+ },
2315
+ "event_display_name": {
2316
+ "type": "string",
2317
+ "const": "Ad Hoc Execution Started"
2318
+ },
2319
+ "interaction": {
2320
+ "type": "object",
2321
+ "additionalProperties": false,
2322
+ "required": ["location", "page", "trigger", "type"],
2323
+ "properties": {
2324
+ "location": {
2325
+ "type": "string",
2326
+ "const": "contextual_side_panel"
2327
+ },
2328
+ "page": {
2329
+ "type": "string",
2330
+ "const": "workflow_details"
2331
+ },
2332
+ "trigger": {
2333
+ "allOf": [
2334
+ {
2335
+ "$ref": "#/definitions/InteractionTrigger"
2336
+ },
2337
+ {
2338
+ "const": "user"
2339
+ }
2340
+ ]
2341
+ },
2342
+ "type": {
2343
+ "allOf": [
2344
+ {
2345
+ "$ref": "#/definitions/InteractionType"
2346
+ },
2347
+ {
2348
+ "const": "click"
2349
+ }
2350
+ ]
2351
+ }
2352
+ }
2353
+ },
2354
+ "payload": {
94
2355
  "$ref": "#/definitions/EmptyPayload"
95
2356
  }
96
2357
  }
97
2358
  },
98
- "session_resumed": {
2359
+ "adHocExecutionStartedWorkflowPage": {
99
2360
  "type": "object",
100
2361
  "additionalProperties": false,
101
- "required": ["session_tab"],
2362
+ "$comment": "Fired when the user clicks Run from the workflow page",
2363
+ "required": [
2364
+ "event_name",
2365
+ "event_source",
2366
+ "event_display_name",
2367
+ "interaction",
2368
+ "payload"
2369
+ ],
102
2370
  "properties": {
103
- "session_tab": {
2371
+ "event_name": {
2372
+ "type": "string",
2373
+ "const": "adhoc_execution_started"
2374
+ },
2375
+ "event_source": {
2376
+ "type": "string",
2377
+ "const": "cloudhome"
2378
+ },
2379
+ "event_display_name": {
2380
+ "type": "string",
2381
+ "const": "Ad Hoc Execution Started"
2382
+ },
2383
+ "interaction": {
2384
+ "type": "object",
2385
+ "additionalProperties": false,
2386
+ "required": ["location", "page", "trigger", "type"],
2387
+ "properties": {
2388
+ "location": {
2389
+ "type": "string",
2390
+ "const": "main_area"
2391
+ },
2392
+ "page": {
2393
+ "type": "string",
2394
+ "const": "workflow_details"
2395
+ },
2396
+ "trigger": {
2397
+ "allOf": [
2398
+ {
2399
+ "$ref": "#/definitions/InteractionTrigger"
2400
+ },
2401
+ {
2402
+ "const": "user"
2403
+ }
2404
+ ]
2405
+ },
2406
+ "type": {
2407
+ "allOf": [
2408
+ {
2409
+ "$ref": "#/definitions/InteractionType"
2410
+ },
2411
+ {
2412
+ "const": "click"
2413
+ }
2414
+ ]
2415
+ }
2416
+ }
2417
+ },
2418
+ "payload": {
104
2419
  "$ref": "#/definitions/EmptyPayload"
105
2420
  }
106
2421
  }
107
2422
  },
108
- "containernode_created": {
2423
+ "actionRedoneToolbar": {
109
2424
  "type": "object",
110
2425
  "additionalProperties": false,
111
- "required": ["canvas_ctxmenu_", "keyboard_shortcut_"],
2426
+ "required": [
2427
+ "event_name",
2428
+ "event_source",
2429
+ "event_display_name",
2430
+ "interaction",
2431
+ "payload"
2432
+ ],
112
2433
  "properties": {
113
- "canvas_ctxmenu_": {
114
- "$ref": "#/definitions/ContainerNodeCreatedPayload"
2434
+ "event_name": {
2435
+ "type": "string",
2436
+ "const": "action_redone"
2437
+ },
2438
+ "event_source": {
2439
+ "type": "string",
2440
+ "const": "editor"
2441
+ },
2442
+ "event_display_name": {
2443
+ "type": "string",
2444
+ "const": "Action Redone"
2445
+ },
2446
+ "interaction": {
2447
+ "type": "object",
2448
+ "additionalProperties": false,
2449
+ "required": ["location", "trigger", "type"],
2450
+ "properties": {
2451
+ "location": {
2452
+ "type": "string",
2453
+ "const": "workflow_toolbar"
2454
+ },
2455
+ "trigger": {
2456
+ "allOf": [
2457
+ {
2458
+ "$ref": "#/definitions/InteractionTrigger"
2459
+ },
2460
+ {
2461
+ "const": "user"
2462
+ }
2463
+ ]
2464
+ },
2465
+ "type": {
2466
+ "allOf": [
2467
+ {
2468
+ "$ref": "#/definitions/InteractionType"
2469
+ },
2470
+ {
2471
+ "const": "click"
2472
+ }
2473
+ ]
2474
+ }
2475
+ }
115
2476
  },
116
- "keyboard_shortcut_": {
2477
+ "payload": {
2478
+ "$ref": "#/definitions/EmptyPayload"
2479
+ }
2480
+ }
2481
+ },
2482
+ "actionRedoneKeyboard": {
2483
+ "type": "object",
2484
+ "additionalProperties": false,
2485
+ "required": [
2486
+ "event_name",
2487
+ "event_source",
2488
+ "event_display_name",
2489
+ "interaction",
2490
+ "payload"
2491
+ ],
2492
+ "properties": {
2493
+ "event_name": {
2494
+ "type": "string",
2495
+ "const": "action_redone"
2496
+ },
2497
+ "event_source": {
2498
+ "type": "string",
2499
+ "const": "editor"
2500
+ },
2501
+ "event_display_name": {
2502
+ "type": "string",
2503
+ "const": "Action Redone"
2504
+ },
2505
+ "interaction": {
2506
+ "type": "object",
2507
+ "additionalProperties": false,
2508
+ "required": ["location", "trigger", "type"],
2509
+ "properties": {
2510
+ "location": {
2511
+ "type": "string",
2512
+ "const": "global"
2513
+ },
2514
+ "trigger": {
2515
+ "allOf": [
2516
+ {
2517
+ "$ref": "#/definitions/InteractionTrigger"
2518
+ },
2519
+ {
2520
+ "const": "user"
2521
+ }
2522
+ ]
2523
+ },
2524
+ "type": {
2525
+ "allOf": [
2526
+ {
2527
+ "$ref": "#/definitions/InteractionType"
2528
+ },
2529
+ {
2530
+ "const": "shortcut"
2531
+ }
2532
+ ]
2533
+ }
2534
+ }
2535
+ },
2536
+ "payload": {
2537
+ "$ref": "#/definitions/EmptyPayload"
2538
+ }
2539
+ }
2540
+ },
2541
+ "versionCreated": {
2542
+ "type": "object",
2543
+ "additionalProperties": false,
2544
+ "required": [
2545
+ "event_name",
2546
+ "event_source",
2547
+ "event_display_name",
2548
+ "interaction",
2549
+ "payload"
2550
+ ],
2551
+ "properties": {
2552
+ "event_name": {
2553
+ "type": "string",
2554
+ "const": "version_created"
2555
+ },
2556
+ "event_source": {
2557
+ "type": "string",
2558
+ "const": "editor"
2559
+ },
2560
+ "event_display_name": {
2561
+ "type": "string",
2562
+ "const": "Version Created"
2563
+ },
2564
+ "interaction": {
2565
+ "type": "object",
2566
+ "additionalProperties": false,
2567
+ "required": ["location", "trigger", "type"],
2568
+ "properties": {
2569
+ "location": {
2570
+ "type": "string",
2571
+ "const": "version_history"
2572
+ },
2573
+ "trigger": {
2574
+ "allOf": [
2575
+ {
2576
+ "$ref": "#/definitions/InteractionTrigger"
2577
+ },
2578
+ {
2579
+ "const": "user"
2580
+ }
2581
+ ]
2582
+ },
2583
+ "type": {
2584
+ "allOf": [
2585
+ {
2586
+ "$ref": "#/definitions/InteractionType"
2587
+ },
2588
+ {
2589
+ "const": "click"
2590
+ }
2591
+ ]
2592
+ }
2593
+ }
2594
+ },
2595
+ "payload": {
2596
+ "$ref": "#/definitions/EmptyPayload"
2597
+ }
2598
+ }
2599
+ },
2600
+ "secretCreatedTeamSecrets": {
2601
+ "type": "object",
2602
+ "additionalProperties": false,
2603
+ "$comment": "Fired when the user creates a new secret by clicking Create in the side panel on the team secrets page",
2604
+ "required": [
2605
+ "event_name",
2606
+ "event_source",
2607
+ "event_display_name",
2608
+ "interaction",
2609
+ "payload"
2610
+ ],
2611
+ "properties": {
2612
+ "event_name": {
2613
+ "type": "string",
2614
+ "const": "secret_created"
2615
+ },
2616
+ "event_source": {
2617
+ "type": "string",
2618
+ "const": "cloudhome"
2619
+ },
2620
+ "event_display_name": {
2621
+ "type": "string",
2622
+ "const": "Secret Created"
2623
+ },
2624
+ "interaction": {
2625
+ "type": "object",
2626
+ "additionalProperties": false,
2627
+ "required": ["location", "page", "trigger", "type"],
2628
+ "properties": {
2629
+ "location": {
2630
+ "type": "string",
2631
+ "const": "contextual_side_panel"
2632
+ },
2633
+ "page": {
2634
+ "type": "string",
2635
+ "const": "secrets"
2636
+ },
2637
+ "trigger": {
2638
+ "allOf": [
2639
+ {
2640
+ "$ref": "#/definitions/InteractionTrigger"
2641
+ },
2642
+ {
2643
+ "const": "user"
2644
+ }
2645
+ ]
2646
+ },
2647
+ "type": {
2648
+ "allOf": [
2649
+ {
2650
+ "$ref": "#/definitions/InteractionType"
2651
+ },
2652
+ {
2653
+ "const": "click"
2654
+ }
2655
+ ]
2656
+ }
2657
+ }
2658
+ },
2659
+ "payload": {
2660
+ "$ref": "#/definitions/EmptyPayload"
2661
+ }
2662
+ }
2663
+ },
2664
+ "secretCreatedMySecrets": {
2665
+ "type": "object",
2666
+ "additionalProperties": false,
2667
+ "$comment": "Fired when the user creates a new secret by clicking Create in the side panel on the personal secrets page",
2668
+ "required": [
2669
+ "event_name",
2670
+ "event_source",
2671
+ "event_display_name",
2672
+ "interaction",
2673
+ "payload"
2674
+ ],
2675
+ "properties": {
2676
+ "event_name": {
2677
+ "type": "string",
2678
+ "const": "secret_created"
2679
+ },
2680
+ "event_source": {
2681
+ "type": "string",
2682
+ "const": "cloudhome"
2683
+ },
2684
+ "event_display_name": {
2685
+ "type": "string",
2686
+ "const": "Secret Created"
2687
+ },
2688
+ "interaction": {
2689
+ "type": "object",
2690
+ "additionalProperties": false,
2691
+ "required": ["location", "page", "trigger", "type"],
2692
+ "properties": {
2693
+ "location": {
2694
+ "type": "string",
2695
+ "const": "contextual_side_panel"
2696
+ },
2697
+ "page": {
2698
+ "type": "string",
2699
+ "const": "my_secrets"
2700
+ },
2701
+ "trigger": {
2702
+ "allOf": [
2703
+ {
2704
+ "$ref": "#/definitions/InteractionTrigger"
2705
+ },
2706
+ {
2707
+ "const": "user"
2708
+ }
2709
+ ]
2710
+ },
2711
+ "type": {
2712
+ "allOf": [
2713
+ {
2714
+ "$ref": "#/definitions/InteractionType"
2715
+ },
2716
+ {
2717
+ "const": "click"
2718
+ }
2719
+ ]
2720
+ }
2721
+ }
2722
+ },
2723
+ "payload": {
2724
+ "$ref": "#/definitions/EmptyPayload"
2725
+ }
2726
+ }
2727
+ },
2728
+ "sessionEnded": {
2729
+ "type": "object",
2730
+ "additionalProperties": false,
2731
+ "required": [
2732
+ "event_name",
2733
+ "event_source",
2734
+ "event_display_name",
2735
+ "interaction",
2736
+ "payload"
2737
+ ],
2738
+ "properties": {
2739
+ "event_name": {
2740
+ "type": "string",
2741
+ "const": "session_ended"
2742
+ },
2743
+ "event_source": {
2744
+ "type": "string",
2745
+ "const": "editor"
2746
+ },
2747
+ "event_display_name": {
2748
+ "type": "string",
2749
+ "const": "Editor Session End"
2750
+ },
2751
+ "interaction": {
2752
+ "type": "object",
2753
+ "additionalProperties": false,
2754
+ "required": ["location", "trigger", "type"],
2755
+ "properties": {
2756
+ "location": {
2757
+ "type": "string",
2758
+ "const": "global"
2759
+ },
2760
+ "trigger": {
2761
+ "allOf": [
2762
+ {
2763
+ "$ref": "#/definitions/InteractionTrigger"
2764
+ },
2765
+ {
2766
+ "const": "user"
2767
+ }
2768
+ ]
2769
+ },
2770
+ "type": {
2771
+ "allOf": [
2772
+ {
2773
+ "$ref": "#/definitions/InteractionType"
2774
+ },
2775
+ {
2776
+ "const": "click"
2777
+ }
2778
+ ]
2779
+ }
2780
+ }
2781
+ },
2782
+ "payload": {
2783
+ "$ref": "#/definitions/SessionEndedPayload"
2784
+ }
2785
+ }
2786
+ },
2787
+ "sessionInterrupted": {
2788
+ "type": "object",
2789
+ "additionalProperties": false,
2790
+ "required": [
2791
+ "event_name",
2792
+ "event_source",
2793
+ "event_display_name",
2794
+ "interaction",
2795
+ "payload"
2796
+ ],
2797
+ "properties": {
2798
+ "event_name": {
2799
+ "type": "string",
2800
+ "const": "session_interrupted"
2801
+ },
2802
+ "event_source": {
2803
+ "type": "string",
2804
+ "const": "editor"
2805
+ },
2806
+ "event_display_name": {
2807
+ "type": "string",
2808
+ "const": "Editor Session Interrupted"
2809
+ },
2810
+ "interaction": {
2811
+ "type": "object",
2812
+ "additionalProperties": false,
2813
+ "required": ["location", "trigger", "type"],
2814
+ "properties": {
2815
+ "location": {
2816
+ "type": "string",
2817
+ "const": "global"
2818
+ },
2819
+ "trigger": {
2820
+ "allOf": [
2821
+ {
2822
+ "$ref": "#/definitions/InteractionTrigger"
2823
+ },
2824
+ {
2825
+ "const": "system"
2826
+ }
2827
+ ]
2828
+ },
2829
+ "type": {
2830
+ "allOf": [
2831
+ {
2832
+ "$ref": "#/definitions/InteractionType"
2833
+ },
2834
+ {
2835
+ "const": "auto"
2836
+ }
2837
+ ]
2838
+ }
2839
+ }
2840
+ },
2841
+ "payload": {
2842
+ "$ref": "#/definitions/EmptyPayload"
2843
+ }
2844
+ }
2845
+ },
2846
+ "sessionResumed": {
2847
+ "type": "object",
2848
+ "additionalProperties": false,
2849
+ "required": [
2850
+ "event_name",
2851
+ "event_source",
2852
+ "event_display_name",
2853
+ "interaction",
2854
+ "payload"
2855
+ ],
2856
+ "properties": {
2857
+ "event_name": {
2858
+ "type": "string",
2859
+ "const": "session_resumed"
2860
+ },
2861
+ "event_source": {
2862
+ "type": "string",
2863
+ "const": "editor"
2864
+ },
2865
+ "event_display_name": {
2866
+ "type": "string",
2867
+ "const": "Editor Session Resumed"
2868
+ },
2869
+ "interaction": {
2870
+ "type": "object",
2871
+ "additionalProperties": false,
2872
+ "required": ["location", "trigger", "type"],
2873
+ "properties": {
2874
+ "location": {
2875
+ "type": "string",
2876
+ "const": "global"
2877
+ },
2878
+ "trigger": {
2879
+ "allOf": [
2880
+ {
2881
+ "$ref": "#/definitions/InteractionTrigger"
2882
+ },
2883
+ {
2884
+ "const": "system"
2885
+ }
2886
+ ]
2887
+ },
2888
+ "type": {
2889
+ "allOf": [
2890
+ {
2891
+ "$ref": "#/definitions/InteractionType"
2892
+ },
2893
+ {
2894
+ "const": "auto"
2895
+ }
2896
+ ]
2897
+ }
2898
+ }
2899
+ },
2900
+ "payload": {
2901
+ "$ref": "#/definitions/EmptyPayload"
2902
+ }
2903
+ }
2904
+ },
2905
+ "containerNodeCreatedCtxMenu": {
2906
+ "type": "object",
2907
+ "additionalProperties": false,
2908
+ "required": [
2909
+ "event_name",
2910
+ "event_source",
2911
+ "event_display_name",
2912
+ "interaction",
2913
+ "payload"
2914
+ ],
2915
+ "properties": {
2916
+ "event_name": {
2917
+ "type": "string",
2918
+ "const": "containernode_created"
2919
+ },
2920
+ "event_source": {
2921
+ "type": "string",
2922
+ "const": "editor"
2923
+ },
2924
+ "event_display_name": {
2925
+ "type": "string",
2926
+ "const": "Container Node Created"
2927
+ },
2928
+ "interaction": {
2929
+ "type": "object",
2930
+ "additionalProperties": false,
2931
+ "required": ["location", "trigger", "type"],
2932
+ "properties": {
2933
+ "location": {
2934
+ "type": "string",
2935
+ "const": "canvas"
2936
+ },
2937
+ "trigger": {
2938
+ "allOf": [
2939
+ {
2940
+ "$ref": "#/definitions/InteractionTrigger"
2941
+ },
2942
+ {
2943
+ "const": "user"
2944
+ }
2945
+ ]
2946
+ },
2947
+ "type": {
2948
+ "allOf": [
2949
+ {
2950
+ "$ref": "#/definitions/InteractionType"
2951
+ },
2952
+ {
2953
+ "const": "click"
2954
+ }
2955
+ ]
2956
+ },
2957
+ "ui_element": {
2958
+ "type": "string",
2959
+ "const": "context_menu"
2960
+ }
2961
+ }
2962
+ },
2963
+ "payload": {
117
2964
  "$ref": "#/definitions/ContainerNodeCreatedPayload"
118
2965
  }
119
2966
  }
120
2967
  },
121
- "hint_shown": {
2968
+ "containerNodeCreatedKeyboard": {
122
2969
  "type": "object",
123
2970
  "additionalProperties": false,
124
- "required": ["autotrigger"],
2971
+ "required": [
2972
+ "event_name",
2973
+ "event_source",
2974
+ "event_display_name",
2975
+ "interaction",
2976
+ "payload"
2977
+ ],
125
2978
  "properties": {
126
- "autotrigger": { "$ref": "#/definitions/HintIdPayload" }
2979
+ "event_name": {
2980
+ "type": "string",
2981
+ "const": "containernode_created"
2982
+ },
2983
+ "event_source": {
2984
+ "type": "string",
2985
+ "const": "editor"
2986
+ },
2987
+ "event_display_name": {
2988
+ "type": "string",
2989
+ "const": "Container Node Created"
2990
+ },
2991
+ "interaction": {
2992
+ "type": "object",
2993
+ "additionalProperties": false,
2994
+ "required": ["location", "trigger", "type"],
2995
+ "properties": {
2996
+ "location": {
2997
+ "type": "string",
2998
+ "const": "canvas"
2999
+ },
3000
+ "trigger": {
3001
+ "allOf": [
3002
+ {
3003
+ "$ref": "#/definitions/InteractionTrigger"
3004
+ },
3005
+ {
3006
+ "const": "user"
3007
+ }
3008
+ ]
3009
+ },
3010
+ "type": {
3011
+ "allOf": [
3012
+ {
3013
+ "$ref": "#/definitions/InteractionType"
3014
+ },
3015
+ {
3016
+ "const": "shortcut"
3017
+ }
3018
+ ]
3019
+ }
3020
+ }
3021
+ },
3022
+ "payload": {
3023
+ "$ref": "#/definitions/ContainerNodeCreatedPayload"
3024
+ }
127
3025
  }
128
3026
  },
129
- "hint_closed": {
3027
+ "hintShown": {
130
3028
  "type": "object",
131
3029
  "additionalProperties": false,
132
- "required": ["hint_button_"],
3030
+ "required": [
3031
+ "event_name",
3032
+ "event_source",
3033
+ "event_display_name",
3034
+ "interaction",
3035
+ "payload"
3036
+ ],
133
3037
  "properties": {
134
- "hint_button_": { "$ref": "#/definitions/HintIdPayload" }
3038
+ "event_name": {
3039
+ "type": "string",
3040
+ "const": "hint_shown"
3041
+ },
3042
+ "event_source": {
3043
+ "type": "string",
3044
+ "const": "editor"
3045
+ },
3046
+ "event_display_name": {
3047
+ "type": "string",
3048
+ "const": "Hint Shown"
3049
+ },
3050
+ "interaction": {
3051
+ "type": "object",
3052
+ "additionalProperties": false,
3053
+ "required": ["location", "trigger", "type"],
3054
+ "properties": {
3055
+ "location": {
3056
+ "type": "string",
3057
+ "const": "global"
3058
+ },
3059
+ "trigger": {
3060
+ "allOf": [
3061
+ {
3062
+ "$ref": "#/definitions/InteractionTrigger"
3063
+ },
3064
+ {
3065
+ "const": "system"
3066
+ }
3067
+ ]
3068
+ },
3069
+ "type": {
3070
+ "allOf": [
3071
+ {
3072
+ "$ref": "#/definitions/InteractionType"
3073
+ },
3074
+ {
3075
+ "const": "auto"
3076
+ }
3077
+ ]
3078
+ }
3079
+ }
3080
+ },
3081
+ "payload": {
3082
+ "$ref": "#/definitions/HintIdPayload"
3083
+ }
135
3084
  }
136
3085
  },
137
- "configuration_completed": {
3086
+ "hintClosed": {
138
3087
  "type": "object",
139
3088
  "additionalProperties": false,
140
- "required": ["nodedialog_button_apply", "nodedialog_click_autoapply"],
3089
+ "required": [
3090
+ "event_name",
3091
+ "event_source",
3092
+ "event_display_name",
3093
+ "interaction",
3094
+ "payload"
3095
+ ],
141
3096
  "properties": {
142
- "nodedialog_button_apply": {
143
- "$ref": "#/definitions/ConfigurationCompletedPayload"
3097
+ "event_name": {
3098
+ "type": "string",
3099
+ "const": "hint_closed"
144
3100
  },
145
- "nodedialog_click_autoapply": {
146
- "$ref": "#/definitions/ConfigurationCompletedPayload"
3101
+ "event_source": {
3102
+ "type": "string",
3103
+ "const": "editor"
3104
+ },
3105
+ "event_display_name": {
3106
+ "type": "string",
3107
+ "const": "Hint Closed"
3108
+ },
3109
+ "interaction": {
3110
+ "type": "object",
3111
+ "additionalProperties": false,
3112
+ "required": ["location", "trigger", "type"],
3113
+ "properties": {
3114
+ "location": {
3115
+ "type": "string",
3116
+ "const": "hint"
3117
+ },
3118
+ "trigger": {
3119
+ "allOf": [
3120
+ {
3121
+ "$ref": "#/definitions/InteractionTrigger"
3122
+ },
3123
+ {
3124
+ "const": "user"
3125
+ }
3126
+ ]
3127
+ },
3128
+ "type": {
3129
+ "allOf": [
3130
+ {
3131
+ "$ref": "#/definitions/InteractionType"
3132
+ },
3133
+ {
3134
+ "const": "click"
3135
+ }
3136
+ ]
3137
+ }
3138
+ }
3139
+ },
3140
+ "payload": {
3141
+ "$ref": "#/definitions/HintIdPayload"
147
3142
  }
148
3143
  }
149
3144
  },
150
- "layouteditor_opened": {
3145
+ "configurationCompletedApply": {
151
3146
  "type": "object",
152
3147
  "additionalProperties": false,
153
3148
  "required": [
154
- "canvas_ctxmenu_openlayouteditor",
155
- "keyboard_shortcut_openlayouteditor",
156
- "wftoolbar_button_openlayouteditor"
3149
+ "event_name",
3150
+ "event_source",
3151
+ "event_display_name",
3152
+ "interaction",
3153
+ "payload"
157
3154
  ],
158
3155
  "properties": {
159
- "canvas_ctxmenu_openlayouteditor": {
160
- "$ref": "#/definitions/EmptyPayload"
3156
+ "event_name": {
3157
+ "type": "string",
3158
+ "const": "configuration_completed"
161
3159
  },
162
- "keyboard_shortcut_openlayouteditor": {
163
- "$ref": "#/definitions/EmptyPayload"
3160
+ "event_source": {
3161
+ "type": "string",
3162
+ "const": "editor"
164
3163
  },
165
- "wftoolbar_button_openlayouteditor": {
166
- "$ref": "#/definitions/EmptyPayload"
3164
+ "event_display_name": {
3165
+ "type": "string",
3166
+ "const": "Configuration Completed"
3167
+ },
3168
+ "interaction": {
3169
+ "type": "object",
3170
+ "additionalProperties": false,
3171
+ "required": ["location", "trigger", "type"],
3172
+ "properties": {
3173
+ "location": {
3174
+ "type": "string",
3175
+ "const": "node_configuration"
3176
+ },
3177
+ "trigger": {
3178
+ "allOf": [
3179
+ {
3180
+ "$ref": "#/definitions/InteractionTrigger"
3181
+ },
3182
+ {
3183
+ "const": "user"
3184
+ }
3185
+ ]
3186
+ },
3187
+ "type": {
3188
+ "allOf": [
3189
+ {
3190
+ "$ref": "#/definitions/InteractionType"
3191
+ },
3192
+ {
3193
+ "const": "click"
3194
+ }
3195
+ ]
3196
+ }
3197
+ }
3198
+ },
3199
+ "payload": {
3200
+ "$ref": "#/definitions/ConfigurationCompletedPayload"
167
3201
  }
168
3202
  }
169
3203
  },
170
- "annotation_created": {
3204
+ "configurationCompletedAutoApply": {
171
3205
  "type": "object",
172
3206
  "additionalProperties": false,
173
3207
  "required": [
174
- "canvas_ctxmenu_newannotation",
175
- "canvas_ctxmenu_kaiexplain"
3208
+ "event_name",
3209
+ "event_source",
3210
+ "event_display_name",
3211
+ "interaction",
3212
+ "payload"
176
3213
  ],
177
3214
  "properties": {
178
- "canvas_ctxmenu_newannotation": {
179
- "$ref": "#/definitions/EmptyPayload"
3215
+ "event_name": {
3216
+ "type": "string",
3217
+ "const": "configuration_completed"
180
3218
  },
181
- "canvas_ctxmenu_kaiexplain": {
182
- "$ref": "#/definitions/EmptyPayload"
3219
+ "event_source": {
3220
+ "type": "string",
3221
+ "const": "editor"
3222
+ },
3223
+ "event_display_name": {
3224
+ "type": "string",
3225
+ "const": "Configuration Completed"
3226
+ },
3227
+ "interaction": {
3228
+ "type": "object",
3229
+ "additionalProperties": false,
3230
+ "required": ["location", "trigger", "type"],
3231
+ "properties": {
3232
+ "location": {
3233
+ "type": "string",
3234
+ "const": "node_configuration"
3235
+ },
3236
+ "trigger": {
3237
+ "allOf": [
3238
+ {
3239
+ "$ref": "#/definitions/InteractionTrigger"
3240
+ },
3241
+ {
3242
+ "const": "user"
3243
+ }
3244
+ ]
3245
+ },
3246
+ "type": {
3247
+ "allOf": [
3248
+ {
3249
+ "$ref": "#/definitions/InteractionType"
3250
+ },
3251
+ {
3252
+ "const": "auto"
3253
+ }
3254
+ ]
3255
+ }
3256
+ }
3257
+ },
3258
+ "payload": {
3259
+ "$ref": "#/definitions/ConfigurationCompletedPayload"
183
3260
  }
184
3261
  }
185
3262
  },
186
- "workflow_saved": {
3263
+ "containerNodeEnteredCanvasDoubleClick": {
187
3264
  "type": "object",
188
3265
  "additionalProperties": false,
189
- "required": ["wftoolbar_button_save", "keyboard_shortcut_savewf"],
3266
+ "required": [
3267
+ "event_name",
3268
+ "event_source",
3269
+ "event_display_name",
3270
+ "interaction",
3271
+ "payload"
3272
+ ],
190
3273
  "properties": {
191
- "wftoolbar_button_save": {
192
- "$ref": "#/definitions/WorkflowSavedPayload"
3274
+ "event_name": {
3275
+ "type": "string",
3276
+ "const": "containernode_entered"
193
3277
  },
194
- "keyboard_shortcut_savewf": {
195
- "$ref": "#/definitions/WorkflowSavedPayload"
3278
+ "event_source": {
3279
+ "type": "string",
3280
+ "const": "editor"
3281
+ },
3282
+ "event_display_name": {
3283
+ "type": "string",
3284
+ "const": "Container Node Entered"
3285
+ },
3286
+ "interaction": {
3287
+ "type": "object",
3288
+ "additionalProperties": false,
3289
+ "required": ["location", "trigger", "type"],
3290
+ "properties": {
3291
+ "location": {
3292
+ "type": "string",
3293
+ "const": "canvas"
3294
+ },
3295
+ "trigger": {
3296
+ "allOf": [
3297
+ {
3298
+ "$ref": "#/definitions/InteractionTrigger"
3299
+ },
3300
+ {
3301
+ "const": "user"
3302
+ }
3303
+ ]
3304
+ },
3305
+ "type": {
3306
+ "allOf": [
3307
+ {
3308
+ "$ref": "#/definitions/InteractionType"
3309
+ },
3310
+ {
3311
+ "const": "double_click"
3312
+ }
3313
+ ]
3314
+ },
3315
+ "ui_element": {
3316
+ "type": "string",
3317
+ "const": "node"
3318
+ }
3319
+ }
3320
+ },
3321
+ "payload": {
3322
+ "$ref": "#/definitions/ContainerNodeTypePayload"
196
3323
  }
197
3324
  }
198
3325
  },
199
- "connection_created": {
3326
+ "containerNodeEnteredKeyboard": {
200
3327
  "type": "object",
201
3328
  "additionalProperties": false,
202
3329
  "required": [
203
- "port_dragdrop_fwd",
204
- "port_dragdrop_bwd",
205
- "keyboard_shortcut_connectnodes",
206
- "keyboard_shortcut_connectflowvar",
207
- "canvas_ctxmenu_connectnodes",
208
- "canvas_ctxmenu_connectflowvar"
3330
+ "event_name",
3331
+ "event_source",
3332
+ "event_display_name",
3333
+ "interaction",
3334
+ "payload"
209
3335
  ],
210
3336
  "properties": {
211
- "port_dragdrop_fwd": {
212
- "$ref": "#/definitions/ConnectionCreatedPayload"
213
- },
214
- "port_dragdrop_bwd": {
215
- "$ref": "#/definitions/ConnectionCreatedPayload"
3337
+ "event_name": {
3338
+ "type": "string",
3339
+ "const": "containernode_entered"
216
3340
  },
217
- "keyboard_shortcut_connectnodes": {
218
- "$ref": "#/definitions/EmptyPayload"
3341
+ "event_source": {
3342
+ "type": "string",
3343
+ "const": "editor"
219
3344
  },
220
- "keyboard_shortcut_connectflowvar": {
221
- "$ref": "#/definitions/EmptyPayload"
3345
+ "event_display_name": {
3346
+ "type": "string",
3347
+ "const": "Container Node Entered"
222
3348
  },
223
- "canvas_ctxmenu_connectnodes": {
224
- "$ref": "#/definitions/EmptyPayload"
3349
+ "interaction": {
3350
+ "type": "object",
3351
+ "additionalProperties": false,
3352
+ "required": ["location", "trigger", "type"],
3353
+ "properties": {
3354
+ "location": {
3355
+ "type": "string",
3356
+ "const": "canvas"
3357
+ },
3358
+ "trigger": {
3359
+ "allOf": [
3360
+ {
3361
+ "$ref": "#/definitions/InteractionTrigger"
3362
+ },
3363
+ {
3364
+ "const": "user"
3365
+ }
3366
+ ]
3367
+ },
3368
+ "type": {
3369
+ "allOf": [
3370
+ {
3371
+ "$ref": "#/definitions/InteractionType"
3372
+ },
3373
+ {
3374
+ "const": "shortcut"
3375
+ }
3376
+ ]
3377
+ }
3378
+ }
225
3379
  },
226
- "canvas_ctxmenu_connectflowvar": {
227
- "$ref": "#/definitions/EmptyPayload"
3380
+ "payload": {
3381
+ "$ref": "#/definitions/ContainerNodeTypePayload"
228
3382
  }
229
3383
  }
230
3384
  },
231
- "node_created": {
3385
+ "containerNodeEnteredCtxMenu": {
232
3386
  "type": "object",
233
3387
  "additionalProperties": false,
234
3388
  "required": [
235
- "noderepo_dragdrop_",
236
- "noderepo_doubleclick_",
237
- "noderepo_keyboard_enter",
238
- "canvas_dragdrop_datafile",
239
- "floatingcanvastools_button_addnodebyfile",
240
- "explorer_dragdrop_",
241
- "qam_click_",
242
- "qam_keyboard_enter",
243
- "kaiqa_dragdrop_",
244
- "kaiqa_keyboard_enter"
3389
+ "event_name",
3390
+ "event_source",
3391
+ "event_display_name",
3392
+ "interaction",
3393
+ "payload"
245
3394
  ],
246
3395
  "properties": {
247
- "noderepo_dragdrop_": {
248
- "$ref": "#/definitions/NodeCreated_Base"
249
- },
250
- "noderepo_doubleclick_": {
251
- "$ref": "#/definitions/NodeCreated_WithOptionalConnectedTo"
3396
+ "event_name": {
3397
+ "type": "string",
3398
+ "const": "containernode_entered"
252
3399
  },
253
- "noderepo_keyboard_enter": {
254
- "$ref": "#/definitions/NodeCreated_WithOptionalConnectedTo"
3400
+ "event_source": {
3401
+ "type": "string",
3402
+ "const": "editor"
255
3403
  },
256
- "canvas_dragdrop_datafile": {
257
- "$ref": "#/definitions/NodeCreated_Base"
3404
+ "event_display_name": {
3405
+ "type": "string",
3406
+ "const": "Container Node Entered"
258
3407
  },
259
- "floatingcanvastools_button_addnodebyfile": {
260
- "$ref": "#/definitions/NodeCreated_Base"
3408
+ "interaction": {
3409
+ "type": "object",
3410
+ "additionalProperties": false,
3411
+ "required": ["location", "trigger", "type"],
3412
+ "properties": {
3413
+ "location": {
3414
+ "type": "string",
3415
+ "const": "canvas"
3416
+ },
3417
+ "trigger": {
3418
+ "allOf": [
3419
+ {
3420
+ "$ref": "#/definitions/InteractionTrigger"
3421
+ },
3422
+ {
3423
+ "const": "user"
3424
+ }
3425
+ ]
3426
+ },
3427
+ "type": {
3428
+ "allOf": [
3429
+ {
3430
+ "$ref": "#/definitions/InteractionType"
3431
+ },
3432
+ {
3433
+ "const": "click"
3434
+ }
3435
+ ]
3436
+ },
3437
+ "ui_element": {
3438
+ "type": "string",
3439
+ "const": "context_menu"
3440
+ }
3441
+ }
261
3442
  },
262
- "explorer_dragdrop_": {
263
- "$ref": "#/definitions/NodeCreated_Base"
3443
+ "payload": {
3444
+ "$ref": "#/definitions/ContainerNodeTypePayload"
3445
+ }
3446
+ }
3447
+ },
3448
+ "containerNodeExitedKeyboard": {
3449
+ "type": "object",
3450
+ "additionalProperties": false,
3451
+ "required": [
3452
+ "event_name",
3453
+ "event_source",
3454
+ "event_display_name",
3455
+ "interaction",
3456
+ "payload"
3457
+ ],
3458
+ "properties": {
3459
+ "event_name": {
3460
+ "type": "string",
3461
+ "const": "containernode_exited"
264
3462
  },
265
- "qam_click_": {
266
- "$ref": "#/definitions/NodeCreated_WithOptionalConnectedToPorts"
3463
+ "event_source": {
3464
+ "type": "string",
3465
+ "const": "editor"
267
3466
  },
268
- "qam_keyboard_enter": {
269
- "$ref": "#/definitions/NodeCreated_WithOptionalConnectedToPorts"
3467
+ "event_display_name": {
3468
+ "type": "string",
3469
+ "const": "Container Node Exited"
270
3470
  },
271
- "kaiqa_dragdrop_": {
272
- "$ref": "#/definitions/NodeCreated_Base"
3471
+ "interaction": {
3472
+ "type": "object",
3473
+ "additionalProperties": false,
3474
+ "required": ["location", "trigger", "type"],
3475
+ "properties": {
3476
+ "location": {
3477
+ "type": "string",
3478
+ "const": "global"
3479
+ },
3480
+ "trigger": {
3481
+ "allOf": [
3482
+ {
3483
+ "$ref": "#/definitions/InteractionTrigger"
3484
+ },
3485
+ {
3486
+ "const": "user"
3487
+ }
3488
+ ]
3489
+ },
3490
+ "type": {
3491
+ "allOf": [
3492
+ {
3493
+ "$ref": "#/definitions/InteractionType"
3494
+ },
3495
+ {
3496
+ "const": "shortcut"
3497
+ }
3498
+ ]
3499
+ }
3500
+ }
273
3501
  },
274
- "kaiqa_keyboard_enter": {
275
- "$ref": "#/definitions/NodeCreated_Base"
3502
+ "payload": {
3503
+ "$ref": "#/definitions/ContainerNodeTypePayload"
276
3504
  }
277
3505
  }
278
3506
  },
279
- "qam_opened": {
3507
+ "containerNodeExitedToolbar": {
280
3508
  "type": "object",
281
3509
  "additionalProperties": false,
282
3510
  "required": [
283
- "port_dragdrop_fwd",
284
- "port_dragdrop_bwd",
285
- "canvas_doubleclick_",
286
- "keyboard_shortcut_",
287
- "canvas_ctxmenu_quickaddnode"
3511
+ "event_name",
3512
+ "event_source",
3513
+ "event_display_name",
3514
+ "interaction",
3515
+ "payload"
288
3516
  ],
289
3517
  "properties": {
290
- "port_dragdrop_fwd": {
291
- "$ref": "#/definitions/QAMOpened_Payload"
3518
+ "event_name": {
3519
+ "type": "string",
3520
+ "const": "containernode_exited"
292
3521
  },
293
- "port_dragdrop_bwd": {
294
- "$ref": "#/definitions/QAMOpened_Payload"
3522
+ "event_source": {
3523
+ "type": "string",
3524
+ "const": "editor"
295
3525
  },
296
- "canvas_doubleclick_": {
297
- "$ref": "#/definitions/EmptyPayload"
3526
+ "event_display_name": {
3527
+ "type": "string",
3528
+ "const": "Container Node Exited"
298
3529
  },
299
- "keyboard_shortcut_": {
300
- "$ref": "#/definitions/QAMOpened_PartialPayload"
3530
+ "interaction": {
3531
+ "type": "object",
3532
+ "additionalProperties": false,
3533
+ "required": ["location", "trigger", "type"],
3534
+ "properties": {
3535
+ "location": {
3536
+ "type": "string",
3537
+ "const": "workflow_toolbar"
3538
+ },
3539
+ "trigger": {
3540
+ "allOf": [
3541
+ {
3542
+ "$ref": "#/definitions/InteractionTrigger"
3543
+ },
3544
+ {
3545
+ "const": "user"
3546
+ }
3547
+ ]
3548
+ },
3549
+ "type": {
3550
+ "allOf": [
3551
+ {
3552
+ "$ref": "#/definitions/InteractionType"
3553
+ },
3554
+ {
3555
+ "const": "click"
3556
+ }
3557
+ ]
3558
+ }
3559
+ }
301
3560
  },
302
- "canvas_ctxmenu_quickaddnode": {
303
- "$ref": "#/definitions/EmptyPayload"
3561
+ "payload": {
3562
+ "$ref": "#/definitions/ContainerNodeTypePayload"
304
3563
  }
305
3564
  }
306
3565
  },
307
- "node_searched": {
3566
+ "deploymentCreated": {
308
3567
  "type": "object",
309
3568
  "additionalProperties": false,
310
- "required": ["noderepo_type_", "qam_type_"],
3569
+ "$comment": "Fired when the user clicks the Create button in the deployment creation side panel",
3570
+ "required": [
3571
+ "event_name",
3572
+ "event_source",
3573
+ "event_display_name",
3574
+ "interaction",
3575
+ "payload"
3576
+ ],
311
3577
  "properties": {
312
- "noderepo_type_": {
313
- "$ref": "#/definitions/SearchPayload"
3578
+ "event_name": {
3579
+ "type": "string",
3580
+ "const": "deployment_created"
314
3581
  },
315
- "qam_type_": {
316
- "$ref": "#/definitions/SearchPayload"
3582
+ "event_source": {
3583
+ "type": "string",
3584
+ "const": "cloudhome"
3585
+ },
3586
+ "event_display_name": {
3587
+ "type": "string",
3588
+ "const": "Deployment Created"
3589
+ },
3590
+ "interaction": {
3591
+ "type": "object",
3592
+ "additionalProperties": false,
3593
+ "required": ["location", "page", "trigger", "type"],
3594
+ "properties": {
3595
+ "location": {
3596
+ "type": "string",
3597
+ "const": "contextual_side_panel"
3598
+ },
3599
+ "page": {
3600
+ "type": "string",
3601
+ "const": "deployments"
3602
+ },
3603
+ "trigger": {
3604
+ "allOf": [
3605
+ {
3606
+ "$ref": "#/definitions/InteractionTrigger"
3607
+ },
3608
+ {
3609
+ "const": "user"
3610
+ }
3611
+ ]
3612
+ },
3613
+ "type": {
3614
+ "allOf": [
3615
+ {
3616
+ "$ref": "#/definitions/InteractionType"
3617
+ },
3618
+ {
3619
+ "const": "click"
3620
+ }
3621
+ ]
3622
+ }
3623
+ }
3624
+ },
3625
+ "payload": {
3626
+ "$ref": "#/definitions/DeploymentCreatedPayload"
317
3627
  }
318
3628
  }
319
3629
  },
320
- "sidepanel_opened": {
3630
+ "deploymentSharedDeploymentsAccessPanel": {
321
3631
  "type": "object",
322
3632
  "additionalProperties": false,
3633
+ "$comment": "Fired when the user shares a deployment via the access management side panel on the deployments page",
323
3634
  "required": [
324
- "sidepanel_click_info",
325
- "sidepanel_click_noderepo",
326
- "sidepanel_click_explorer",
327
- "sidepanel_click_kai",
328
- "sidepanel_click_monitor",
329
- "wftoolbar_dropdownmenu_versionhistory"
3635
+ "event_name",
3636
+ "event_source",
3637
+ "event_display_name",
3638
+ "interaction",
3639
+ "payload"
330
3640
  ],
331
3641
  "properties": {
332
- "sidepanel_click_info": {
333
- "$ref": "#/definitions/EmptyPayload"
334
- },
335
- "sidepanel_click_noderepo": {
336
- "$ref": "#/definitions/EmptyPayload"
3642
+ "event_name": {
3643
+ "type": "string",
3644
+ "const": "deployment_shared"
337
3645
  },
338
- "sidepanel_click_explorer": {
339
- "$ref": "#/definitions/EmptyPayload"
3646
+ "event_source": {
3647
+ "type": "string",
3648
+ "const": "cloudhome"
340
3649
  },
341
- "sidepanel_click_kai": {
342
- "$ref": "#/definitions/EmptyPayload"
3650
+ "event_display_name": {
3651
+ "type": "string",
3652
+ "const": "Deployment Shared"
343
3653
  },
344
- "sidepanel_click_monitor": {
345
- "$ref": "#/definitions/EmptyPayload"
3654
+ "interaction": {
3655
+ "type": "object",
3656
+ "additionalProperties": false,
3657
+ "required": ["location", "page", "trigger", "type"],
3658
+ "properties": {
3659
+ "location": {
3660
+ "type": "string",
3661
+ "const": "contextual_side_panel"
3662
+ },
3663
+ "page": {
3664
+ "type": "string",
3665
+ "const": "deployments"
3666
+ },
3667
+ "trigger": {
3668
+ "allOf": [
3669
+ {
3670
+ "$ref": "#/definitions/InteractionTrigger"
3671
+ },
3672
+ {
3673
+ "const": "user"
3674
+ }
3675
+ ]
3676
+ },
3677
+ "type": {
3678
+ "allOf": [
3679
+ {
3680
+ "$ref": "#/definitions/InteractionType"
3681
+ },
3682
+ {
3683
+ "const": "click"
3684
+ }
3685
+ ]
3686
+ }
3687
+ }
346
3688
  },
347
- "wftoolbar_dropdownmenu_versionhistory": {
348
- "$ref": "#/definitions/EmptyPayload"
3689
+ "payload": {
3690
+ "$ref": "#/definitions/DeploymentSharedPayload"
349
3691
  }
350
3692
  }
351
3693
  },
352
- "action_undone": {
3694
+ "deploymentSharedDeploymentsSharingPopup": {
353
3695
  "type": "object",
354
3696
  "additionalProperties": false,
355
- "required": ["wftoolbar_button_", "keyboard_shortcut_"],
3697
+ "$comment": "Fired when the user shares a deployment via the sharing popup on the deployments page",
3698
+ "required": [
3699
+ "event_name",
3700
+ "event_source",
3701
+ "event_display_name",
3702
+ "interaction",
3703
+ "payload"
3704
+ ],
356
3705
  "properties": {
357
- "wftoolbar_button_": {
358
- "$ref": "#/definitions/EmptyPayload"
3706
+ "event_name": {
3707
+ "type": "string",
3708
+ "const": "deployment_shared"
359
3709
  },
360
- "keyboard_shortcut_": {
361
- "$ref": "#/definitions/EmptyPayload"
3710
+ "event_source": {
3711
+ "type": "string",
3712
+ "const": "cloudhome"
3713
+ },
3714
+ "event_display_name": {
3715
+ "type": "string",
3716
+ "const": "Deployment Shared"
3717
+ },
3718
+ "interaction": {
3719
+ "type": "object",
3720
+ "additionalProperties": false,
3721
+ "required": ["location", "page", "trigger", "type"],
3722
+ "properties": {
3723
+ "location": {
3724
+ "type": "string",
3725
+ "const": "module"
3726
+ },
3727
+ "page": {
3728
+ "type": "string",
3729
+ "const": "deployments"
3730
+ },
3731
+ "trigger": {
3732
+ "allOf": [
3733
+ {
3734
+ "$ref": "#/definitions/InteractionTrigger"
3735
+ },
3736
+ {
3737
+ "const": "user"
3738
+ }
3739
+ ]
3740
+ },
3741
+ "type": {
3742
+ "allOf": [
3743
+ {
3744
+ "$ref": "#/definitions/InteractionType"
3745
+ },
3746
+ {
3747
+ "const": "click"
3748
+ }
3749
+ ]
3750
+ }
3751
+ }
3752
+ },
3753
+ "payload": {
3754
+ "$ref": "#/definitions/DeploymentSharedPayload"
362
3755
  }
363
3756
  }
364
3757
  },
365
- "action_redone": {
3758
+ "deploymentSharedWorkflowAccessPanel": {
366
3759
  "type": "object",
367
3760
  "additionalProperties": false,
368
- "required": ["wftoolbar_button_", "keyboard_shortcut_"],
3761
+ "$comment": "Fired when the user shares a deployment via the access management side panel on the workflow page",
3762
+ "required": [
3763
+ "event_name",
3764
+ "event_source",
3765
+ "event_display_name",
3766
+ "interaction",
3767
+ "payload"
3768
+ ],
369
3769
  "properties": {
370
- "wftoolbar_button_": {
371
- "$ref": "#/definitions/EmptyPayload"
3770
+ "event_name": {
3771
+ "type": "string",
3772
+ "const": "deployment_shared"
372
3773
  },
373
- "keyboard_shortcut_": {
374
- "$ref": "#/definitions/EmptyPayload"
3774
+ "event_source": {
3775
+ "type": "string",
3776
+ "const": "cloudhome"
3777
+ },
3778
+ "event_display_name": {
3779
+ "type": "string",
3780
+ "const": "Deployment Shared"
3781
+ },
3782
+ "interaction": {
3783
+ "type": "object",
3784
+ "additionalProperties": false,
3785
+ "required": ["location", "page", "trigger", "type"],
3786
+ "properties": {
3787
+ "location": {
3788
+ "type": "string",
3789
+ "const": "contextual_side_panel"
3790
+ },
3791
+ "page": {
3792
+ "type": "string",
3793
+ "const": "workflow_details"
3794
+ },
3795
+ "trigger": {
3796
+ "allOf": [
3797
+ {
3798
+ "$ref": "#/definitions/InteractionTrigger"
3799
+ },
3800
+ {
3801
+ "const": "user"
3802
+ }
3803
+ ]
3804
+ },
3805
+ "type": {
3806
+ "allOf": [
3807
+ {
3808
+ "$ref": "#/definitions/InteractionType"
3809
+ },
3810
+ {
3811
+ "const": "click"
3812
+ }
3813
+ ]
3814
+ }
3815
+ }
3816
+ },
3817
+ "payload": {
3818
+ "$ref": "#/definitions/DeploymentSharedPayload"
375
3819
  }
376
3820
  }
377
3821
  },
378
- "version_created": {
3822
+ "deploymentSharedWorkflowSharingPopup": {
379
3823
  "type": "object",
380
3824
  "additionalProperties": false,
381
- "required": ["versionhistorypanel_button_"],
3825
+ "$comment": "Fired when the user shares a deployment via the sharing popup on the workflow page",
3826
+ "required": [
3827
+ "event_name",
3828
+ "event_source",
3829
+ "event_display_name",
3830
+ "interaction",
3831
+ "payload"
3832
+ ],
382
3833
  "properties": {
383
- "versionhistorypanel_button_": {
384
- "$ref": "#/definitions/EmptyPayload"
3834
+ "event_name": {
3835
+ "type": "string",
3836
+ "const": "deployment_shared"
3837
+ },
3838
+ "event_source": {
3839
+ "type": "string",
3840
+ "const": "cloudhome"
3841
+ },
3842
+ "event_display_name": {
3843
+ "type": "string",
3844
+ "const": "Deployment Shared"
3845
+ },
3846
+ "interaction": {
3847
+ "type": "object",
3848
+ "additionalProperties": false,
3849
+ "required": ["location", "page", "trigger", "type"],
3850
+ "properties": {
3851
+ "location": {
3852
+ "type": "string",
3853
+ "const": "module"
3854
+ },
3855
+ "page": {
3856
+ "type": "string",
3857
+ "const": "workflow_details"
3858
+ },
3859
+ "trigger": {
3860
+ "allOf": [
3861
+ {
3862
+ "$ref": "#/definitions/InteractionTrigger"
3863
+ },
3864
+ {
3865
+ "const": "user"
3866
+ }
3867
+ ]
3868
+ },
3869
+ "type": {
3870
+ "allOf": [
3871
+ {
3872
+ "$ref": "#/definitions/InteractionType"
3873
+ },
3874
+ {
3875
+ "const": "click"
3876
+ }
3877
+ ]
3878
+ }
3879
+ }
3880
+ },
3881
+ "payload": {
3882
+ "$ref": "#/definitions/DeploymentSharedPayload"
385
3883
  }
386
3884
  }
387
3885
  },
388
- "containernode_entered": {
3886
+ "nodeCreatedCanvasDragDropFile": {
389
3887
  "type": "object",
390
3888
  "additionalProperties": false,
391
3889
  "required": [
392
- "component_doubleclick_ctrl",
393
- "component_ctxmenu_",
394
- "keyboard_shortcut_"
3890
+ "event_name",
3891
+ "event_source",
3892
+ "event_display_name",
3893
+ "interaction",
3894
+ "payload"
395
3895
  ],
396
3896
  "properties": {
397
- "component_doubleclick_ctrl": {
398
- "$ref": "#/definitions/ContainerNodeNavigationPayload"
3897
+ "event_name": {
3898
+ "type": "string",
3899
+ "const": "node_created"
3900
+ },
3901
+ "event_source": {
3902
+ "type": "string",
3903
+ "const": "editor"
399
3904
  },
400
- "component_ctxmenu_": {
401
- "$ref": "#/definitions/ContainerNodeNavigationPayload"
3905
+ "event_display_name": {
3906
+ "type": "string",
3907
+ "const": "Node Created"
3908
+ },
3909
+ "interaction": {
3910
+ "type": "object",
3911
+ "additionalProperties": false,
3912
+ "required": ["location", "trigger", "type"],
3913
+ "properties": {
3914
+ "location": {
3915
+ "type": "string",
3916
+ "const": "canvas"
3917
+ },
3918
+ "trigger": {
3919
+ "allOf": [
3920
+ {
3921
+ "$ref": "#/definitions/InteractionTrigger"
3922
+ },
3923
+ {
3924
+ "const": "user"
3925
+ }
3926
+ ]
3927
+ },
3928
+ "type": {
3929
+ "allOf": [
3930
+ {
3931
+ "$ref": "#/definitions/InteractionType"
3932
+ },
3933
+ {
3934
+ "const": "drag_drop"
3935
+ }
3936
+ ]
3937
+ }
3938
+ }
402
3939
  },
403
- "keyboard_shortcut_": {
404
- "$ref": "#/definitions/ContainerNodeNavigationPayload"
3940
+ "payload": {
3941
+ "$ref": "#/definitions/NodeCreated_Base"
405
3942
  }
406
3943
  }
407
3944
  },
408
- "containernode_exited": {
3945
+ "nodeCreatedFloatingToolsAddByFile": {
409
3946
  "type": "object",
410
3947
  "additionalProperties": false,
411
- "required": ["wftoolbar_button_workflow", "keyboard_shortcut_"],
3948
+ "required": [
3949
+ "event_name",
3950
+ "event_source",
3951
+ "event_display_name",
3952
+ "interaction",
3953
+ "payload"
3954
+ ],
412
3955
  "properties": {
413
- "wftoolbar_button_workflow": {
414
- "$ref": "#/definitions/ContainerNodeNavigationPayload"
3956
+ "event_name": {
3957
+ "type": "string",
3958
+ "const": "node_created"
3959
+ },
3960
+ "event_source": {
3961
+ "type": "string",
3962
+ "const": "editor"
415
3963
  },
416
- "keyboard_shortcut_": {
417
- "$ref": "#/definitions/ContainerNodeNavigationPayload"
3964
+ "event_display_name": {
3965
+ "type": "string",
3966
+ "const": "Node Created"
3967
+ },
3968
+ "interaction": {
3969
+ "type": "object",
3970
+ "additionalProperties": false,
3971
+ "required": ["location", "trigger", "type"],
3972
+ "properties": {
3973
+ "location": {
3974
+ "type": "string",
3975
+ "const": "floating_canvas_tools"
3976
+ },
3977
+ "trigger": {
3978
+ "allOf": [
3979
+ {
3980
+ "$ref": "#/definitions/InteractionTrigger"
3981
+ },
3982
+ {
3983
+ "const": "user"
3984
+ }
3985
+ ]
3986
+ },
3987
+ "type": {
3988
+ "allOf": [
3989
+ {
3990
+ "$ref": "#/definitions/InteractionType"
3991
+ },
3992
+ {
3993
+ "const": "click"
3994
+ }
3995
+ ]
3996
+ }
3997
+ }
3998
+ },
3999
+ "payload": {
4000
+ "$ref": "#/definitions/NodeCreated_Base"
418
4001
  }
419
4002
  }
420
4003
  }
@@ -427,45 +4010,16 @@
427
4010
  "additionalProperties": false,
428
4011
  "maxProperties": 0
429
4012
  },
430
- "ContainerNodeCreatedPayload": {
431
- "type": "object",
432
- "additionalProperties": false,
433
- "required": ["nodeType", "childrenNodes"],
434
- "properties": {
435
- "nodeType": {
436
- "type": "string",
437
- "enum": ["component", "metanode"]
438
- },
439
- "childrenNodes": {
440
- "type": "array",
441
- "items": {
442
- "type": "object",
443
- "additionalProperties": false,
444
- "required": ["nodeType"],
445
- "properties": {
446
- "nodeType": {
447
- "type": "string",
448
- "enum": ["component", "metanode", "node"]
449
- },
450
- "nodeFactoryId": {
451
- "type": "string"
452
- }
453
- }
454
- }
455
- }
456
- }
457
- },
458
- "ConfigurationCompletedPayload": {
4013
+ "KaiPromptedPayload": {
459
4014
  "type": "object",
460
4015
  "additionalProperties": false,
461
- "required": ["state"],
462
4016
  "properties": {
463
4017
  "nodeFactoryId": {
464
4018
  "type": "string"
465
4019
  },
466
- "state": {
4020
+ "nodeType": {
467
4021
  "type": "string",
468
- "enum": ["success", "failed_invalid_setting"]
4022
+ "enum": ["node", "component", "metanode"]
469
4023
  }
470
4024
  }
471
4025
  },
@@ -502,8 +4056,12 @@
502
4056
  "ConnectionCreatedPayload": {
503
4057
  "type": "object",
504
4058
  "additionalProperties": false,
505
- "required": ["fromNode", "toNode"],
4059
+ "required": ["fromNode", "toNode", "direction"],
506
4060
  "properties": {
4061
+ "direction": {
4062
+ "type": "string",
4063
+ "enum": ["forwards", "backwards"]
4064
+ },
507
4065
  "fromNode": {
508
4066
  "$ref": "#/definitions/ConnectionCreated_NodePayload"
509
4067
  },
@@ -512,26 +4070,12 @@
512
4070
  }
513
4071
  }
514
4072
  },
515
- "KaiPromptedPayload": {
516
- "type": "object",
517
- "additionalProperties": false,
518
- "properties": {
519
- "nodeFactoryId": {
520
- "type": "string"
521
- },
522
- "nodeType": {
523
- "type": "string",
524
- "enum": ["node", "component", "metanode"]
525
- }
526
- }
527
- },
528
4073
  "NodeOrComponent": {
529
4074
  "type": "object",
530
4075
  "additionalProperties": false,
531
4076
  "properties": {
532
4077
  "nodeFactoryId": {
533
- "type": "string",
534
- "$comment": "asdasd"
4078
+ "type": "string"
535
4079
  },
536
4080
  "nodeHubId": {
537
4081
  "type": "string"
@@ -566,7 +4110,7 @@
566
4110
  "ConnectedTo_WithPorts": {
567
4111
  "type": "object",
568
4112
  "additionalProperties": false,
569
- "required": ["nodeType", "nodeFactoryId", "direction"],
4113
+ "required": ["nodeType", "nodeFactoryId"],
570
4114
  "properties": {
571
4115
  "nodeType": {
572
4116
  "type": "string",
@@ -580,10 +4124,6 @@
580
4124
  },
581
4125
  "nodePortId": {
582
4126
  "type": "string"
583
- },
584
- "direction": {
585
- "type": "string",
586
- "enum": ["forward", "backward"]
587
4127
  }
588
4128
  }
589
4129
  },
@@ -638,8 +4178,12 @@
638
4178
  "QAMOpened_Payload": {
639
4179
  "type": "object",
640
4180
  "additionalProperties": false,
641
- "required": ["connectedTo"],
4181
+ "required": ["connectedTo", "direction"],
642
4182
  "properties": {
4183
+ "direction": {
4184
+ "type": "string",
4185
+ "enum": ["forwards", "backwards"]
4186
+ },
643
4187
  "connectedTo": {
644
4188
  "$ref": "#/definitions/ConnectedTo_WithPorts"
645
4189
  }
@@ -673,20 +4217,123 @@
673
4217
  "additionalProperties": false,
674
4218
  "required": ["hintId"],
675
4219
  "properties": {
676
- "hintId": { "type": "string" }
4220
+ "hintId": {
4221
+ "type": "string"
4222
+ }
677
4223
  }
678
4224
  },
679
- "ContainerNodeNavigationPayload": {
4225
+ "ContainerNodeCreatedPayload": {
680
4226
  "type": "object",
681
4227
  "additionalProperties": false,
682
- "required": ["nodeType"],
4228
+ "required": ["nodeType", "childrenNodes"],
683
4229
  "properties": {
684
4230
  "nodeType": {
685
4231
  "type": "string",
686
4232
  "enum": ["component", "metanode"]
687
4233
  },
688
- "nodeHubId": {
4234
+ "childrenNodes": {
4235
+ "type": "array",
4236
+ "items": {
4237
+ "type": "object",
4238
+ "additionalProperties": false,
4239
+ "required": ["nodeType"],
4240
+ "properties": {
4241
+ "nodeType": {
4242
+ "type": "string",
4243
+ "enum": ["component", "metanode", "node"]
4244
+ },
4245
+ "nodeFactoryId": {
4246
+ "type": "string"
4247
+ }
4248
+ }
4249
+ }
4250
+ }
4251
+ }
4252
+ },
4253
+ "ConfigurationCompletedPayload": {
4254
+ "type": "object",
4255
+ "additionalProperties": false,
4256
+ "required": ["state"],
4257
+ "properties": {
4258
+ "nodeFactoryId": {
689
4259
  "type": "string"
4260
+ },
4261
+ "state": {
4262
+ "type": "string",
4263
+ "enum": ["success", "failed_invalid_setting"]
4264
+ }
4265
+ }
4266
+ },
4267
+ "ContainerNodeTypePayload": {
4268
+ "type": "object",
4269
+ "additionalProperties": false,
4270
+ "required": ["nodeType"],
4271
+ "properties": {
4272
+ "nodeType": {
4273
+ "type": "string",
4274
+ "enum": ["component", "metanode"]
4275
+ }
4276
+ }
4277
+ },
4278
+ "InteractionTrigger": {
4279
+ "type": "string",
4280
+ "enum": ["user", "system"]
4281
+ },
4282
+ "InteractionType": {
4283
+ "type": "string",
4284
+ "enum": [
4285
+ "click",
4286
+ "double_click",
4287
+ "shortcut",
4288
+ "key_press",
4289
+ "drag_drop",
4290
+ "auto"
4291
+ ]
4292
+ },
4293
+ "ConnectionCreatedAutoconnectPayload": {
4294
+ "type": "object",
4295
+ "additionalProperties": false,
4296
+ "required": ["flowVariable"],
4297
+ "properties": {
4298
+ "flowVariable": {
4299
+ "type": "boolean"
4300
+ }
4301
+ }
4302
+ },
4303
+ "DeploymentCreatedPayload": {
4304
+ "type": "object",
4305
+ "additionalProperties": false,
4306
+ "required": ["deploymentType"],
4307
+ "properties": {
4308
+ "deploymentType": {
4309
+ "type": "string",
4310
+ "enum": ["dataApp", "schedule", "service"]
4311
+ }
4312
+ }
4313
+ },
4314
+ "DeploymentSharedPayload": {
4315
+ "type": "object",
4316
+ "additionalProperties": false,
4317
+ "required": ["deploymentType", "sharingMethod"],
4318
+ "properties": {
4319
+ "deploymentType": {
4320
+ "type": "string",
4321
+ "enum": ["dataApp", "service"]
4322
+ },
4323
+ "sharingMethod": {
4324
+ "type": "string",
4325
+ "enum": ["invite", "copy_link"]
4326
+ }
4327
+ }
4328
+ },
4329
+ "SessionEndedPayload": {
4330
+ "type": "object",
4331
+ "additionalProperties": false,
4332
+ "required": ["type"],
4333
+ "properties": {
4334
+ "type": {
4335
+ "type": "string",
4336
+ "enum": ["timedout", "user_closed"]
690
4337
  }
691
4338
  }
692
4339
  }