@knime/hub-features 1.27.0 → 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.
@@ -22,6 +22,9 @@
22
22
  "layoutEditorOpenedCtxMenu",
23
23
  "layoutEditorOpenedKeyboard",
24
24
  "layoutEditorOpenedToolbar",
25
+ "adHocExecutionStartedDeploymentsPage",
26
+ "adHocExecutionStartedExecutionPanel",
27
+ "adHocExecutionStartedWorkflowPage",
25
28
  "annotationCreatedCtxMenu",
26
29
  "annotationCreatedKaiExplain",
27
30
  "workflowSavedToolbar",
@@ -54,6 +57,8 @@
54
57
  "actionRedoneToolbar",
55
58
  "actionRedoneKeyboard",
56
59
  "versionCreated",
60
+ "secretCreatedMySecrets",
61
+ "secretCreatedTeamSecrets",
57
62
  "sessionEnded",
58
63
  "sessionInterrupted",
59
64
  "sessionResumed",
@@ -68,6 +73,11 @@
68
73
  "containerNodeEnteredCtxMenu",
69
74
  "containerNodeExitedKeyboard",
70
75
  "containerNodeExitedToolbar",
76
+ "deploymentCreated",
77
+ "deploymentSharedDeploymentsAccessPanel",
78
+ "deploymentSharedDeploymentsSharingPopup",
79
+ "deploymentSharedWorkflowAccessPanel",
80
+ "deploymentSharedWorkflowSharingPopup",
71
81
  "nodeCreatedCanvasDragDropFile",
72
82
  "nodeCreatedFloatingToolsAddByFile"
73
83
  ],
@@ -2218,6 +2228,198 @@
2218
2228
  }
2219
2229
  }
2220
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"
2250
+ },
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": {
2291
+ "$ref": "#/definitions/EmptyPayload"
2292
+ }
2293
+ }
2294
+ },
2295
+ "adHocExecutionStartedExecutionPanel": {
2296
+ "type": "object",
2297
+ "additionalProperties": false,
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
+ ],
2306
+ "properties": {
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": {
2355
+ "$ref": "#/definitions/EmptyPayload"
2356
+ }
2357
+ }
2358
+ },
2359
+ "adHocExecutionStartedWorkflowPage": {
2360
+ "type": "object",
2361
+ "additionalProperties": false,
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
+ ],
2370
+ "properties": {
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": {
2419
+ "$ref": "#/definitions/EmptyPayload"
2420
+ }
2421
+ }
2422
+ },
2221
2423
  "actionRedoneToolbar": {
2222
2424
  "type": "object",
2223
2425
  "additionalProperties": false,
@@ -2231,7 +2433,430 @@
2231
2433
  "properties": {
2232
2434
  "event_name": {
2233
2435
  "type": "string",
2234
- "const": "action_redone"
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
+ }
2476
+ },
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"
2235
2860
  },
2236
2861
  "event_source": {
2237
2862
  "type": "string",
@@ -2239,7 +2864,7 @@
2239
2864
  },
2240
2865
  "event_display_name": {
2241
2866
  "type": "string",
2242
- "const": "Action Redone"
2867
+ "const": "Editor Session Resumed"
2243
2868
  },
2244
2869
  "interaction": {
2245
2870
  "type": "object",
@@ -2248,7 +2873,7 @@
2248
2873
  "properties": {
2249
2874
  "location": {
2250
2875
  "type": "string",
2251
- "const": "workflow_toolbar"
2876
+ "const": "global"
2252
2877
  },
2253
2878
  "trigger": {
2254
2879
  "allOf": [
@@ -2256,7 +2881,7 @@
2256
2881
  "$ref": "#/definitions/InteractionTrigger"
2257
2882
  },
2258
2883
  {
2259
- "const": "user"
2884
+ "const": "system"
2260
2885
  }
2261
2886
  ]
2262
2887
  },
@@ -2266,7 +2891,7 @@
2266
2891
  "$ref": "#/definitions/InteractionType"
2267
2892
  },
2268
2893
  {
2269
- "const": "click"
2894
+ "const": "auto"
2270
2895
  }
2271
2896
  ]
2272
2897
  }
@@ -2277,7 +2902,7 @@
2277
2902
  }
2278
2903
  }
2279
2904
  },
2280
- "actionRedoneKeyboard": {
2905
+ "containerNodeCreatedCtxMenu": {
2281
2906
  "type": "object",
2282
2907
  "additionalProperties": false,
2283
2908
  "required": [
@@ -2290,7 +2915,7 @@
2290
2915
  "properties": {
2291
2916
  "event_name": {
2292
2917
  "type": "string",
2293
- "const": "action_redone"
2918
+ "const": "containernode_created"
2294
2919
  },
2295
2920
  "event_source": {
2296
2921
  "type": "string",
@@ -2298,7 +2923,7 @@
2298
2923
  },
2299
2924
  "event_display_name": {
2300
2925
  "type": "string",
2301
- "const": "Action Redone"
2926
+ "const": "Container Node Created"
2302
2927
  },
2303
2928
  "interaction": {
2304
2929
  "type": "object",
@@ -2307,7 +2932,7 @@
2307
2932
  "properties": {
2308
2933
  "location": {
2309
2934
  "type": "string",
2310
- "const": "global"
2935
+ "const": "canvas"
2311
2936
  },
2312
2937
  "trigger": {
2313
2938
  "allOf": [
@@ -2325,18 +2950,22 @@
2325
2950
  "$ref": "#/definitions/InteractionType"
2326
2951
  },
2327
2952
  {
2328
- "const": "shortcut"
2953
+ "const": "click"
2329
2954
  }
2330
2955
  ]
2956
+ },
2957
+ "ui_element": {
2958
+ "type": "string",
2959
+ "const": "context_menu"
2331
2960
  }
2332
2961
  }
2333
2962
  },
2334
2963
  "payload": {
2335
- "$ref": "#/definitions/EmptyPayload"
2964
+ "$ref": "#/definitions/ContainerNodeCreatedPayload"
2336
2965
  }
2337
2966
  }
2338
2967
  },
2339
- "versionCreated": {
2968
+ "containerNodeCreatedKeyboard": {
2340
2969
  "type": "object",
2341
2970
  "additionalProperties": false,
2342
2971
  "required": [
@@ -2349,7 +2978,7 @@
2349
2978
  "properties": {
2350
2979
  "event_name": {
2351
2980
  "type": "string",
2352
- "const": "version_created"
2981
+ "const": "containernode_created"
2353
2982
  },
2354
2983
  "event_source": {
2355
2984
  "type": "string",
@@ -2357,7 +2986,7 @@
2357
2986
  },
2358
2987
  "event_display_name": {
2359
2988
  "type": "string",
2360
- "const": "Version Created"
2989
+ "const": "Container Node Created"
2361
2990
  },
2362
2991
  "interaction": {
2363
2992
  "type": "object",
@@ -2366,7 +2995,7 @@
2366
2995
  "properties": {
2367
2996
  "location": {
2368
2997
  "type": "string",
2369
- "const": "version_history"
2998
+ "const": "canvas"
2370
2999
  },
2371
3000
  "trigger": {
2372
3001
  "allOf": [
@@ -2384,18 +3013,18 @@
2384
3013
  "$ref": "#/definitions/InteractionType"
2385
3014
  },
2386
3015
  {
2387
- "const": "click"
3016
+ "const": "shortcut"
2388
3017
  }
2389
3018
  ]
2390
3019
  }
2391
3020
  }
2392
3021
  },
2393
3022
  "payload": {
2394
- "$ref": "#/definitions/EmptyPayload"
3023
+ "$ref": "#/definitions/ContainerNodeCreatedPayload"
2395
3024
  }
2396
3025
  }
2397
3026
  },
2398
- "sessionEnded": {
3027
+ "hintShown": {
2399
3028
  "type": "object",
2400
3029
  "additionalProperties": false,
2401
3030
  "required": [
@@ -2408,7 +3037,7 @@
2408
3037
  "properties": {
2409
3038
  "event_name": {
2410
3039
  "type": "string",
2411
- "const": "session_ended"
3040
+ "const": "hint_shown"
2412
3041
  },
2413
3042
  "event_source": {
2414
3043
  "type": "string",
@@ -2416,7 +3045,7 @@
2416
3045
  },
2417
3046
  "event_display_name": {
2418
3047
  "type": "string",
2419
- "const": "Editor Session End"
3048
+ "const": "Hint Shown"
2420
3049
  },
2421
3050
  "interaction": {
2422
3051
  "type": "object",
@@ -2433,7 +3062,7 @@
2433
3062
  "$ref": "#/definitions/InteractionTrigger"
2434
3063
  },
2435
3064
  {
2436
- "const": "user"
3065
+ "const": "system"
2437
3066
  }
2438
3067
  ]
2439
3068
  },
@@ -2443,18 +3072,18 @@
2443
3072
  "$ref": "#/definitions/InteractionType"
2444
3073
  },
2445
3074
  {
2446
- "const": "click"
3075
+ "const": "auto"
2447
3076
  }
2448
3077
  ]
2449
3078
  }
2450
3079
  }
2451
3080
  },
2452
3081
  "payload": {
2453
- "$ref": "#/definitions/SessionEndedPayload"
3082
+ "$ref": "#/definitions/HintIdPayload"
2454
3083
  }
2455
3084
  }
2456
3085
  },
2457
- "sessionInterrupted": {
3086
+ "hintClosed": {
2458
3087
  "type": "object",
2459
3088
  "additionalProperties": false,
2460
3089
  "required": [
@@ -2467,7 +3096,7 @@
2467
3096
  "properties": {
2468
3097
  "event_name": {
2469
3098
  "type": "string",
2470
- "const": "session_interrupted"
3099
+ "const": "hint_closed"
2471
3100
  },
2472
3101
  "event_source": {
2473
3102
  "type": "string",
@@ -2475,7 +3104,7 @@
2475
3104
  },
2476
3105
  "event_display_name": {
2477
3106
  "type": "string",
2478
- "const": "Editor Session Interrupted"
3107
+ "const": "Hint Closed"
2479
3108
  },
2480
3109
  "interaction": {
2481
3110
  "type": "object",
@@ -2484,7 +3113,7 @@
2484
3113
  "properties": {
2485
3114
  "location": {
2486
3115
  "type": "string",
2487
- "const": "global"
3116
+ "const": "hint"
2488
3117
  },
2489
3118
  "trigger": {
2490
3119
  "allOf": [
@@ -2492,7 +3121,7 @@
2492
3121
  "$ref": "#/definitions/InteractionTrigger"
2493
3122
  },
2494
3123
  {
2495
- "const": "system"
3124
+ "const": "user"
2496
3125
  }
2497
3126
  ]
2498
3127
  },
@@ -2502,18 +3131,18 @@
2502
3131
  "$ref": "#/definitions/InteractionType"
2503
3132
  },
2504
3133
  {
2505
- "const": "auto"
3134
+ "const": "click"
2506
3135
  }
2507
3136
  ]
2508
3137
  }
2509
3138
  }
2510
3139
  },
2511
3140
  "payload": {
2512
- "$ref": "#/definitions/EmptyPayload"
3141
+ "$ref": "#/definitions/HintIdPayload"
2513
3142
  }
2514
3143
  }
2515
3144
  },
2516
- "sessionResumed": {
3145
+ "configurationCompletedApply": {
2517
3146
  "type": "object",
2518
3147
  "additionalProperties": false,
2519
3148
  "required": [
@@ -2526,7 +3155,7 @@
2526
3155
  "properties": {
2527
3156
  "event_name": {
2528
3157
  "type": "string",
2529
- "const": "session_resumed"
3158
+ "const": "configuration_completed"
2530
3159
  },
2531
3160
  "event_source": {
2532
3161
  "type": "string",
@@ -2534,7 +3163,7 @@
2534
3163
  },
2535
3164
  "event_display_name": {
2536
3165
  "type": "string",
2537
- "const": "Editor Session Resumed"
3166
+ "const": "Configuration Completed"
2538
3167
  },
2539
3168
  "interaction": {
2540
3169
  "type": "object",
@@ -2543,7 +3172,7 @@
2543
3172
  "properties": {
2544
3173
  "location": {
2545
3174
  "type": "string",
2546
- "const": "global"
3175
+ "const": "node_configuration"
2547
3176
  },
2548
3177
  "trigger": {
2549
3178
  "allOf": [
@@ -2551,7 +3180,7 @@
2551
3180
  "$ref": "#/definitions/InteractionTrigger"
2552
3181
  },
2553
3182
  {
2554
- "const": "system"
3183
+ "const": "user"
2555
3184
  }
2556
3185
  ]
2557
3186
  },
@@ -2561,18 +3190,18 @@
2561
3190
  "$ref": "#/definitions/InteractionType"
2562
3191
  },
2563
3192
  {
2564
- "const": "auto"
3193
+ "const": "click"
2565
3194
  }
2566
3195
  ]
2567
3196
  }
2568
3197
  }
2569
3198
  },
2570
3199
  "payload": {
2571
- "$ref": "#/definitions/EmptyPayload"
3200
+ "$ref": "#/definitions/ConfigurationCompletedPayload"
2572
3201
  }
2573
3202
  }
2574
3203
  },
2575
- "containerNodeCreatedCtxMenu": {
3204
+ "configurationCompletedAutoApply": {
2576
3205
  "type": "object",
2577
3206
  "additionalProperties": false,
2578
3207
  "required": [
@@ -2585,7 +3214,7 @@
2585
3214
  "properties": {
2586
3215
  "event_name": {
2587
3216
  "type": "string",
2588
- "const": "containernode_created"
3217
+ "const": "configuration_completed"
2589
3218
  },
2590
3219
  "event_source": {
2591
3220
  "type": "string",
@@ -2593,7 +3222,7 @@
2593
3222
  },
2594
3223
  "event_display_name": {
2595
3224
  "type": "string",
2596
- "const": "Container Node Created"
3225
+ "const": "Configuration Completed"
2597
3226
  },
2598
3227
  "interaction": {
2599
3228
  "type": "object",
@@ -2602,7 +3231,7 @@
2602
3231
  "properties": {
2603
3232
  "location": {
2604
3233
  "type": "string",
2605
- "const": "canvas"
3234
+ "const": "node_configuration"
2606
3235
  },
2607
3236
  "trigger": {
2608
3237
  "allOf": [
@@ -2620,22 +3249,18 @@
2620
3249
  "$ref": "#/definitions/InteractionType"
2621
3250
  },
2622
3251
  {
2623
- "const": "click"
3252
+ "const": "auto"
2624
3253
  }
2625
3254
  ]
2626
- },
2627
- "ui_element": {
2628
- "type": "string",
2629
- "const": "context_menu"
2630
3255
  }
2631
3256
  }
2632
3257
  },
2633
3258
  "payload": {
2634
- "$ref": "#/definitions/ContainerNodeCreatedPayload"
3259
+ "$ref": "#/definitions/ConfigurationCompletedPayload"
2635
3260
  }
2636
3261
  }
2637
3262
  },
2638
- "containerNodeCreatedKeyboard": {
3263
+ "containerNodeEnteredCanvasDoubleClick": {
2639
3264
  "type": "object",
2640
3265
  "additionalProperties": false,
2641
3266
  "required": [
@@ -2648,7 +3273,7 @@
2648
3273
  "properties": {
2649
3274
  "event_name": {
2650
3275
  "type": "string",
2651
- "const": "containernode_created"
3276
+ "const": "containernode_entered"
2652
3277
  },
2653
3278
  "event_source": {
2654
3279
  "type": "string",
@@ -2656,7 +3281,7 @@
2656
3281
  },
2657
3282
  "event_display_name": {
2658
3283
  "type": "string",
2659
- "const": "Container Node Created"
3284
+ "const": "Container Node Entered"
2660
3285
  },
2661
3286
  "interaction": {
2662
3287
  "type": "object",
@@ -2683,18 +3308,22 @@
2683
3308
  "$ref": "#/definitions/InteractionType"
2684
3309
  },
2685
3310
  {
2686
- "const": "shortcut"
3311
+ "const": "double_click"
2687
3312
  }
2688
3313
  ]
3314
+ },
3315
+ "ui_element": {
3316
+ "type": "string",
3317
+ "const": "node"
2689
3318
  }
2690
3319
  }
2691
3320
  },
2692
3321
  "payload": {
2693
- "$ref": "#/definitions/ContainerNodeCreatedPayload"
3322
+ "$ref": "#/definitions/ContainerNodeTypePayload"
2694
3323
  }
2695
3324
  }
2696
3325
  },
2697
- "hintShown": {
3326
+ "containerNodeEnteredKeyboard": {
2698
3327
  "type": "object",
2699
3328
  "additionalProperties": false,
2700
3329
  "required": [
@@ -2707,7 +3336,7 @@
2707
3336
  "properties": {
2708
3337
  "event_name": {
2709
3338
  "type": "string",
2710
- "const": "hint_shown"
3339
+ "const": "containernode_entered"
2711
3340
  },
2712
3341
  "event_source": {
2713
3342
  "type": "string",
@@ -2715,7 +3344,7 @@
2715
3344
  },
2716
3345
  "event_display_name": {
2717
3346
  "type": "string",
2718
- "const": "Hint Shown"
3347
+ "const": "Container Node Entered"
2719
3348
  },
2720
3349
  "interaction": {
2721
3350
  "type": "object",
@@ -2724,7 +3353,7 @@
2724
3353
  "properties": {
2725
3354
  "location": {
2726
3355
  "type": "string",
2727
- "const": "global"
3356
+ "const": "canvas"
2728
3357
  },
2729
3358
  "trigger": {
2730
3359
  "allOf": [
@@ -2732,7 +3361,7 @@
2732
3361
  "$ref": "#/definitions/InteractionTrigger"
2733
3362
  },
2734
3363
  {
2735
- "const": "system"
3364
+ "const": "user"
2736
3365
  }
2737
3366
  ]
2738
3367
  },
@@ -2742,18 +3371,18 @@
2742
3371
  "$ref": "#/definitions/InteractionType"
2743
3372
  },
2744
3373
  {
2745
- "const": "auto"
3374
+ "const": "shortcut"
2746
3375
  }
2747
3376
  ]
2748
3377
  }
2749
3378
  }
2750
3379
  },
2751
3380
  "payload": {
2752
- "$ref": "#/definitions/HintIdPayload"
3381
+ "$ref": "#/definitions/ContainerNodeTypePayload"
2753
3382
  }
2754
3383
  }
2755
3384
  },
2756
- "hintClosed": {
3385
+ "containerNodeEnteredCtxMenu": {
2757
3386
  "type": "object",
2758
3387
  "additionalProperties": false,
2759
3388
  "required": [
@@ -2766,7 +3395,7 @@
2766
3395
  "properties": {
2767
3396
  "event_name": {
2768
3397
  "type": "string",
2769
- "const": "hint_closed"
3398
+ "const": "containernode_entered"
2770
3399
  },
2771
3400
  "event_source": {
2772
3401
  "type": "string",
@@ -2774,7 +3403,7 @@
2774
3403
  },
2775
3404
  "event_display_name": {
2776
3405
  "type": "string",
2777
- "const": "Hint Closed"
3406
+ "const": "Container Node Entered"
2778
3407
  },
2779
3408
  "interaction": {
2780
3409
  "type": "object",
@@ -2783,7 +3412,7 @@
2783
3412
  "properties": {
2784
3413
  "location": {
2785
3414
  "type": "string",
2786
- "const": "hint"
3415
+ "const": "canvas"
2787
3416
  },
2788
3417
  "trigger": {
2789
3418
  "allOf": [
@@ -2804,15 +3433,19 @@
2804
3433
  "const": "click"
2805
3434
  }
2806
3435
  ]
3436
+ },
3437
+ "ui_element": {
3438
+ "type": "string",
3439
+ "const": "context_menu"
2807
3440
  }
2808
3441
  }
2809
3442
  },
2810
3443
  "payload": {
2811
- "$ref": "#/definitions/HintIdPayload"
3444
+ "$ref": "#/definitions/ContainerNodeTypePayload"
2812
3445
  }
2813
3446
  }
2814
3447
  },
2815
- "configurationCompletedApply": {
3448
+ "containerNodeExitedKeyboard": {
2816
3449
  "type": "object",
2817
3450
  "additionalProperties": false,
2818
3451
  "required": [
@@ -2825,7 +3458,7 @@
2825
3458
  "properties": {
2826
3459
  "event_name": {
2827
3460
  "type": "string",
2828
- "const": "configuration_completed"
3461
+ "const": "containernode_exited"
2829
3462
  },
2830
3463
  "event_source": {
2831
3464
  "type": "string",
@@ -2833,7 +3466,7 @@
2833
3466
  },
2834
3467
  "event_display_name": {
2835
3468
  "type": "string",
2836
- "const": "Configuration Completed"
3469
+ "const": "Container Node Exited"
2837
3470
  },
2838
3471
  "interaction": {
2839
3472
  "type": "object",
@@ -2842,7 +3475,7 @@
2842
3475
  "properties": {
2843
3476
  "location": {
2844
3477
  "type": "string",
2845
- "const": "node_configuration"
3478
+ "const": "global"
2846
3479
  },
2847
3480
  "trigger": {
2848
3481
  "allOf": [
@@ -2860,18 +3493,18 @@
2860
3493
  "$ref": "#/definitions/InteractionType"
2861
3494
  },
2862
3495
  {
2863
- "const": "click"
3496
+ "const": "shortcut"
2864
3497
  }
2865
3498
  ]
2866
3499
  }
2867
3500
  }
2868
3501
  },
2869
3502
  "payload": {
2870
- "$ref": "#/definitions/ConfigurationCompletedPayload"
3503
+ "$ref": "#/definitions/ContainerNodeTypePayload"
2871
3504
  }
2872
3505
  }
2873
3506
  },
2874
- "configurationCompletedAutoApply": {
3507
+ "containerNodeExitedToolbar": {
2875
3508
  "type": "object",
2876
3509
  "additionalProperties": false,
2877
3510
  "required": [
@@ -2884,7 +3517,7 @@
2884
3517
  "properties": {
2885
3518
  "event_name": {
2886
3519
  "type": "string",
2887
- "const": "configuration_completed"
3520
+ "const": "containernode_exited"
2888
3521
  },
2889
3522
  "event_source": {
2890
3523
  "type": "string",
@@ -2892,7 +3525,7 @@
2892
3525
  },
2893
3526
  "event_display_name": {
2894
3527
  "type": "string",
2895
- "const": "Configuration Completed"
3528
+ "const": "Container Node Exited"
2896
3529
  },
2897
3530
  "interaction": {
2898
3531
  "type": "object",
@@ -2901,7 +3534,7 @@
2901
3534
  "properties": {
2902
3535
  "location": {
2903
3536
  "type": "string",
2904
- "const": "node_configuration"
3537
+ "const": "workflow_toolbar"
2905
3538
  },
2906
3539
  "trigger": {
2907
3540
  "allOf": [
@@ -2919,20 +3552,21 @@
2919
3552
  "$ref": "#/definitions/InteractionType"
2920
3553
  },
2921
3554
  {
2922
- "const": "auto"
3555
+ "const": "click"
2923
3556
  }
2924
3557
  ]
2925
3558
  }
2926
3559
  }
2927
3560
  },
2928
3561
  "payload": {
2929
- "$ref": "#/definitions/ConfigurationCompletedPayload"
3562
+ "$ref": "#/definitions/ContainerNodeTypePayload"
2930
3563
  }
2931
3564
  }
2932
3565
  },
2933
- "containerNodeEnteredCanvasDoubleClick": {
3566
+ "deploymentCreated": {
2934
3567
  "type": "object",
2935
3568
  "additionalProperties": false,
3569
+ "$comment": "Fired when the user clicks the Create button in the deployment creation side panel",
2936
3570
  "required": [
2937
3571
  "event_name",
2938
3572
  "event_source",
@@ -2943,24 +3577,28 @@
2943
3577
  "properties": {
2944
3578
  "event_name": {
2945
3579
  "type": "string",
2946
- "const": "containernode_entered"
3580
+ "const": "deployment_created"
2947
3581
  },
2948
3582
  "event_source": {
2949
3583
  "type": "string",
2950
- "const": "editor"
3584
+ "const": "cloudhome"
2951
3585
  },
2952
3586
  "event_display_name": {
2953
3587
  "type": "string",
2954
- "const": "Container Node Entered"
3588
+ "const": "Deployment Created"
2955
3589
  },
2956
3590
  "interaction": {
2957
3591
  "type": "object",
2958
3592
  "additionalProperties": false,
2959
- "required": ["location", "trigger", "type"],
3593
+ "required": ["location", "page", "trigger", "type"],
2960
3594
  "properties": {
2961
3595
  "location": {
2962
3596
  "type": "string",
2963
- "const": "canvas"
3597
+ "const": "contextual_side_panel"
3598
+ },
3599
+ "page": {
3600
+ "type": "string",
3601
+ "const": "deployments"
2964
3602
  },
2965
3603
  "trigger": {
2966
3604
  "allOf": [
@@ -2978,24 +3616,21 @@
2978
3616
  "$ref": "#/definitions/InteractionType"
2979
3617
  },
2980
3618
  {
2981
- "const": "double_click"
3619
+ "const": "click"
2982
3620
  }
2983
3621
  ]
2984
- },
2985
- "ui_element": {
2986
- "type": "string",
2987
- "const": "node"
2988
3622
  }
2989
3623
  }
2990
3624
  },
2991
3625
  "payload": {
2992
- "$ref": "#/definitions/ContainerNodeTypePayload"
3626
+ "$ref": "#/definitions/DeploymentCreatedPayload"
2993
3627
  }
2994
3628
  }
2995
3629
  },
2996
- "containerNodeEnteredKeyboard": {
3630
+ "deploymentSharedDeploymentsAccessPanel": {
2997
3631
  "type": "object",
2998
3632
  "additionalProperties": false,
3633
+ "$comment": "Fired when the user shares a deployment via the access management side panel on the deployments page",
2999
3634
  "required": [
3000
3635
  "event_name",
3001
3636
  "event_source",
@@ -3006,24 +3641,28 @@
3006
3641
  "properties": {
3007
3642
  "event_name": {
3008
3643
  "type": "string",
3009
- "const": "containernode_entered"
3644
+ "const": "deployment_shared"
3010
3645
  },
3011
3646
  "event_source": {
3012
3647
  "type": "string",
3013
- "const": "editor"
3648
+ "const": "cloudhome"
3014
3649
  },
3015
3650
  "event_display_name": {
3016
3651
  "type": "string",
3017
- "const": "Container Node Entered"
3652
+ "const": "Deployment Shared"
3018
3653
  },
3019
3654
  "interaction": {
3020
3655
  "type": "object",
3021
3656
  "additionalProperties": false,
3022
- "required": ["location", "trigger", "type"],
3657
+ "required": ["location", "page", "trigger", "type"],
3023
3658
  "properties": {
3024
3659
  "location": {
3025
3660
  "type": "string",
3026
- "const": "canvas"
3661
+ "const": "contextual_side_panel"
3662
+ },
3663
+ "page": {
3664
+ "type": "string",
3665
+ "const": "deployments"
3027
3666
  },
3028
3667
  "trigger": {
3029
3668
  "allOf": [
@@ -3041,20 +3680,21 @@
3041
3680
  "$ref": "#/definitions/InteractionType"
3042
3681
  },
3043
3682
  {
3044
- "const": "shortcut"
3683
+ "const": "click"
3045
3684
  }
3046
3685
  ]
3047
3686
  }
3048
3687
  }
3049
3688
  },
3050
3689
  "payload": {
3051
- "$ref": "#/definitions/ContainerNodeTypePayload"
3690
+ "$ref": "#/definitions/DeploymentSharedPayload"
3052
3691
  }
3053
3692
  }
3054
3693
  },
3055
- "containerNodeEnteredCtxMenu": {
3694
+ "deploymentSharedDeploymentsSharingPopup": {
3056
3695
  "type": "object",
3057
3696
  "additionalProperties": false,
3697
+ "$comment": "Fired when the user shares a deployment via the sharing popup on the deployments page",
3058
3698
  "required": [
3059
3699
  "event_name",
3060
3700
  "event_source",
@@ -3065,24 +3705,28 @@
3065
3705
  "properties": {
3066
3706
  "event_name": {
3067
3707
  "type": "string",
3068
- "const": "containernode_entered"
3708
+ "const": "deployment_shared"
3069
3709
  },
3070
3710
  "event_source": {
3071
3711
  "type": "string",
3072
- "const": "editor"
3712
+ "const": "cloudhome"
3073
3713
  },
3074
3714
  "event_display_name": {
3075
3715
  "type": "string",
3076
- "const": "Container Node Entered"
3716
+ "const": "Deployment Shared"
3077
3717
  },
3078
3718
  "interaction": {
3079
3719
  "type": "object",
3080
3720
  "additionalProperties": false,
3081
- "required": ["location", "trigger", "type"],
3721
+ "required": ["location", "page", "trigger", "type"],
3082
3722
  "properties": {
3083
3723
  "location": {
3084
3724
  "type": "string",
3085
- "const": "canvas"
3725
+ "const": "module"
3726
+ },
3727
+ "page": {
3728
+ "type": "string",
3729
+ "const": "deployments"
3086
3730
  },
3087
3731
  "trigger": {
3088
3732
  "allOf": [
@@ -3103,21 +3747,18 @@
3103
3747
  "const": "click"
3104
3748
  }
3105
3749
  ]
3106
- },
3107
- "ui_element": {
3108
- "type": "string",
3109
- "const": "context_menu"
3110
3750
  }
3111
3751
  }
3112
3752
  },
3113
3753
  "payload": {
3114
- "$ref": "#/definitions/ContainerNodeTypePayload"
3754
+ "$ref": "#/definitions/DeploymentSharedPayload"
3115
3755
  }
3116
3756
  }
3117
3757
  },
3118
- "containerNodeExitedKeyboard": {
3758
+ "deploymentSharedWorkflowAccessPanel": {
3119
3759
  "type": "object",
3120
3760
  "additionalProperties": false,
3761
+ "$comment": "Fired when the user shares a deployment via the access management side panel on the workflow page",
3121
3762
  "required": [
3122
3763
  "event_name",
3123
3764
  "event_source",
@@ -3128,24 +3769,28 @@
3128
3769
  "properties": {
3129
3770
  "event_name": {
3130
3771
  "type": "string",
3131
- "const": "containernode_exited"
3772
+ "const": "deployment_shared"
3132
3773
  },
3133
3774
  "event_source": {
3134
3775
  "type": "string",
3135
- "const": "editor"
3776
+ "const": "cloudhome"
3136
3777
  },
3137
3778
  "event_display_name": {
3138
3779
  "type": "string",
3139
- "const": "Container Node Exited"
3780
+ "const": "Deployment Shared"
3140
3781
  },
3141
3782
  "interaction": {
3142
3783
  "type": "object",
3143
3784
  "additionalProperties": false,
3144
- "required": ["location", "trigger", "type"],
3785
+ "required": ["location", "page", "trigger", "type"],
3145
3786
  "properties": {
3146
3787
  "location": {
3147
3788
  "type": "string",
3148
- "const": "global"
3789
+ "const": "contextual_side_panel"
3790
+ },
3791
+ "page": {
3792
+ "type": "string",
3793
+ "const": "workflow_details"
3149
3794
  },
3150
3795
  "trigger": {
3151
3796
  "allOf": [
@@ -3163,20 +3808,21 @@
3163
3808
  "$ref": "#/definitions/InteractionType"
3164
3809
  },
3165
3810
  {
3166
- "const": "shortcut"
3811
+ "const": "click"
3167
3812
  }
3168
3813
  ]
3169
3814
  }
3170
3815
  }
3171
3816
  },
3172
3817
  "payload": {
3173
- "$ref": "#/definitions/ContainerNodeTypePayload"
3818
+ "$ref": "#/definitions/DeploymentSharedPayload"
3174
3819
  }
3175
3820
  }
3176
3821
  },
3177
- "containerNodeExitedToolbar": {
3822
+ "deploymentSharedWorkflowSharingPopup": {
3178
3823
  "type": "object",
3179
3824
  "additionalProperties": false,
3825
+ "$comment": "Fired when the user shares a deployment via the sharing popup on the workflow page",
3180
3826
  "required": [
3181
3827
  "event_name",
3182
3828
  "event_source",
@@ -3187,24 +3833,28 @@
3187
3833
  "properties": {
3188
3834
  "event_name": {
3189
3835
  "type": "string",
3190
- "const": "containernode_exited"
3836
+ "const": "deployment_shared"
3191
3837
  },
3192
3838
  "event_source": {
3193
3839
  "type": "string",
3194
- "const": "editor"
3840
+ "const": "cloudhome"
3195
3841
  },
3196
3842
  "event_display_name": {
3197
3843
  "type": "string",
3198
- "const": "Container Node Exited"
3844
+ "const": "Deployment Shared"
3199
3845
  },
3200
3846
  "interaction": {
3201
3847
  "type": "object",
3202
3848
  "additionalProperties": false,
3203
- "required": ["location", "trigger", "type"],
3849
+ "required": ["location", "page", "trigger", "type"],
3204
3850
  "properties": {
3205
3851
  "location": {
3206
3852
  "type": "string",
3207
- "const": "workflow_toolbar"
3853
+ "const": "module"
3854
+ },
3855
+ "page": {
3856
+ "type": "string",
3857
+ "const": "workflow_details"
3208
3858
  },
3209
3859
  "trigger": {
3210
3860
  "allOf": [
@@ -3229,7 +3879,7 @@
3229
3879
  }
3230
3880
  },
3231
3881
  "payload": {
3232
- "$ref": "#/definitions/ContainerNodeTypePayload"
3882
+ "$ref": "#/definitions/DeploymentSharedPayload"
3233
3883
  }
3234
3884
  }
3235
3885
  },
@@ -3650,6 +4300,32 @@
3650
4300
  }
3651
4301
  }
3652
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
+ },
3653
4329
  "SessionEndedPayload": {
3654
4330
  "type": "object",
3655
4331
  "additionalProperties": false,