@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.
- package/CHANGELOG.md +18 -0
- package/package.json +5 -3
- package/src/analytics/README.md +19 -73
- package/src/analytics/analytics.ts +97 -57
- package/src/analytics/index.ts +1 -1
- package/src/analytics/schema/cloudhome-event-functions.ts +247 -0
- package/src/analytics/schema/code-generator.js +158 -0
- package/src/analytics/schema/editor-event-functions.ts +1121 -0
- package/src/analytics/schema/schema.d.ts +765 -122
- package/src/analytics/schema/schema.json +3916 -269
- package/src/analytics/types.ts +22 -46
- package/src/analytics/utils/logger.ts +1 -0
- package/src/analytics/utils/eventIds.ts +0 -35
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
* and run json-schema-to-typescript to regenerate this file.
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
|
+
export type InteractionTrigger = "user" | "system";
|
|
9
|
+
export type InteractionType = "click" | "double_click" | "shortcut" | "key_press" | "drag_drop" | "auto";
|
|
8
10
|
export type EmptyPayload = null;
|
|
9
11
|
export type NodeCreated_Base = NodeCreated_Common & NodeOrComponent;
|
|
10
12
|
export type NodeCreated_WithOptionalConnectedTo = NodeCreated_Common &
|
|
@@ -17,112 +19,740 @@ export type NodeCreated_WithOptionalConnectedToPorts = NodeCreated_Common &
|
|
|
17
19
|
};
|
|
18
20
|
|
|
19
21
|
export interface AnalyticsEventSchema {
|
|
20
|
-
version: "
|
|
22
|
+
version: "v2.0";
|
|
21
23
|
events: {
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
};
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
};
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
};
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
};
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
};
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
24
|
+
kaiPromptedQA: {
|
|
25
|
+
event_name: "kai_prompted";
|
|
26
|
+
event_source: "editor";
|
|
27
|
+
event_display_name: "K-AI Prompted";
|
|
28
|
+
interaction: {
|
|
29
|
+
location: "kai_qa";
|
|
30
|
+
trigger: InteractionTrigger & "user";
|
|
31
|
+
type: InteractionType & "click";
|
|
32
|
+
};
|
|
33
|
+
payload: EmptyPayload;
|
|
34
|
+
};
|
|
35
|
+
kaiPromptedBuild: {
|
|
36
|
+
event_name: "kai_prompted";
|
|
37
|
+
event_source: "editor";
|
|
38
|
+
event_display_name: "K-AI Prompted";
|
|
39
|
+
interaction: {
|
|
40
|
+
location: "kai_build";
|
|
41
|
+
trigger: InteractionTrigger & "user";
|
|
42
|
+
type: InteractionType & "click";
|
|
43
|
+
};
|
|
44
|
+
payload: EmptyPayload;
|
|
45
|
+
};
|
|
46
|
+
kaiPromptedQuickBuild: {
|
|
47
|
+
event_name: "kai_prompted";
|
|
48
|
+
event_source: "editor";
|
|
49
|
+
event_display_name: "K-AI Prompted";
|
|
50
|
+
interaction: {
|
|
51
|
+
location: "qam";
|
|
52
|
+
trigger: InteractionTrigger & "user";
|
|
53
|
+
type: InteractionType & "click";
|
|
54
|
+
};
|
|
55
|
+
payload: KaiPromptedPayload;
|
|
56
|
+
};
|
|
57
|
+
sessionStarted: {
|
|
58
|
+
event_name: "session_started";
|
|
59
|
+
event_source: "editor";
|
|
60
|
+
event_display_name: "Editor session start";
|
|
61
|
+
interaction: {
|
|
62
|
+
location: "global";
|
|
63
|
+
trigger: InteractionTrigger & "system";
|
|
64
|
+
type: InteractionType & "auto";
|
|
65
|
+
};
|
|
66
|
+
payload: EmptyPayload;
|
|
67
|
+
};
|
|
68
|
+
layoutEditorOpenedCtxMenu: {
|
|
69
|
+
event_name: "layouteditor_opened";
|
|
70
|
+
event_source: "editor";
|
|
71
|
+
event_display_name: "Layout Editor Opened";
|
|
72
|
+
interaction: {
|
|
73
|
+
location: "canvas";
|
|
74
|
+
trigger: InteractionTrigger & "user";
|
|
75
|
+
type: InteractionType & "click";
|
|
76
|
+
};
|
|
77
|
+
payload: EmptyPayload;
|
|
78
|
+
};
|
|
79
|
+
layoutEditorOpenedKeyboard: {
|
|
80
|
+
event_name: "layouteditor_opened";
|
|
81
|
+
event_source: "editor";
|
|
82
|
+
event_display_name: "Layout Editor Opened";
|
|
83
|
+
interaction: {
|
|
84
|
+
location: "global";
|
|
85
|
+
trigger: InteractionTrigger & "user";
|
|
86
|
+
type: InteractionType & "shortcut";
|
|
87
|
+
};
|
|
88
|
+
payload: EmptyPayload;
|
|
89
|
+
};
|
|
90
|
+
layoutEditorOpenedToolbar: {
|
|
91
|
+
event_name: "layouteditor_opened";
|
|
92
|
+
event_source: "editor";
|
|
93
|
+
event_display_name: "Layout Editor Opened";
|
|
94
|
+
interaction: {
|
|
95
|
+
location: "workflow_toolbar";
|
|
96
|
+
trigger: InteractionTrigger & "user";
|
|
97
|
+
type: InteractionType & "click";
|
|
98
|
+
};
|
|
99
|
+
payload: EmptyPayload;
|
|
100
|
+
};
|
|
101
|
+
annotationCreatedCtxMenu: {
|
|
102
|
+
event_name: "annotation_created";
|
|
103
|
+
event_source: "editor";
|
|
104
|
+
event_display_name: "Annotation Created";
|
|
105
|
+
interaction: {
|
|
106
|
+
location: "canvas";
|
|
107
|
+
trigger: InteractionTrigger & "user";
|
|
108
|
+
type: InteractionType & "click";
|
|
109
|
+
ui_element?: "context_menu";
|
|
110
|
+
};
|
|
111
|
+
payload: EmptyPayload;
|
|
112
|
+
};
|
|
113
|
+
annotationCreatedKaiExplain: {
|
|
114
|
+
event_name: "annotation_created";
|
|
115
|
+
event_source: "editor";
|
|
116
|
+
event_display_name: "Annotation Created";
|
|
117
|
+
interaction: {
|
|
118
|
+
location: "canvas";
|
|
119
|
+
trigger: InteractionTrigger & "user";
|
|
120
|
+
type: InteractionType & "click";
|
|
121
|
+
ui_element?: "context_menu";
|
|
122
|
+
};
|
|
123
|
+
payload: EmptyPayload;
|
|
124
|
+
};
|
|
125
|
+
workflowSavedToolbar: {
|
|
126
|
+
event_name: "workflow_saved";
|
|
127
|
+
event_source: "editor";
|
|
128
|
+
event_display_name: "Workflow Saved";
|
|
129
|
+
interaction: {
|
|
130
|
+
location: "workflow_toolbar";
|
|
131
|
+
trigger: InteractionTrigger & "user";
|
|
132
|
+
type: InteractionType & "click";
|
|
133
|
+
};
|
|
134
|
+
payload: WorkflowSavedPayload;
|
|
135
|
+
};
|
|
136
|
+
workflowSavedKeyboard: {
|
|
137
|
+
event_name: "workflow_saved";
|
|
138
|
+
event_source: "editor";
|
|
139
|
+
event_display_name: "Workflow Saved";
|
|
140
|
+
interaction: {
|
|
141
|
+
location: "global";
|
|
142
|
+
trigger: InteractionTrigger & "user";
|
|
143
|
+
type: InteractionType & "shortcut";
|
|
144
|
+
};
|
|
145
|
+
payload: WorkflowSavedPayload;
|
|
146
|
+
};
|
|
147
|
+
connectionCreatedPortDragDrop: {
|
|
148
|
+
event_name: "connection_created";
|
|
149
|
+
event_source: "editor";
|
|
150
|
+
event_display_name: "Connection Created";
|
|
151
|
+
interaction: {
|
|
152
|
+
location: "canvas";
|
|
153
|
+
trigger: InteractionTrigger & "user";
|
|
154
|
+
type: InteractionType & "drag_drop";
|
|
155
|
+
};
|
|
156
|
+
payload: ConnectionCreatedPayload;
|
|
157
|
+
};
|
|
158
|
+
connectionCreatedKeyboard: {
|
|
159
|
+
event_name: "connection_created_autoconnect";
|
|
160
|
+
event_source: "editor";
|
|
161
|
+
event_display_name: "Connection created autoconnect";
|
|
162
|
+
interaction: {
|
|
163
|
+
location: "canvas";
|
|
164
|
+
trigger: InteractionTrigger & "user";
|
|
165
|
+
type: InteractionType & "shortcut";
|
|
166
|
+
};
|
|
167
|
+
payload: ConnectionCreatedAutoconnectPayload;
|
|
168
|
+
};
|
|
169
|
+
connectionCreatedCtxMenu: {
|
|
170
|
+
event_name: "connection_created_autoconnect";
|
|
171
|
+
event_source: "editor";
|
|
172
|
+
event_display_name: "Connection created autoconnect";
|
|
173
|
+
interaction: {
|
|
174
|
+
location: "canvas";
|
|
175
|
+
trigger: InteractionTrigger & "user";
|
|
176
|
+
type: InteractionType & "click";
|
|
177
|
+
ui_element?: "context_menu";
|
|
178
|
+
};
|
|
179
|
+
payload: ConnectionCreatedAutoconnectPayload;
|
|
180
|
+
};
|
|
181
|
+
nodeCreatedNodeRepoDragDrop: {
|
|
182
|
+
event_name: "node_created";
|
|
183
|
+
event_source: "editor";
|
|
184
|
+
event_display_name: "Node Created";
|
|
185
|
+
interaction: {
|
|
186
|
+
location: "noderepository";
|
|
187
|
+
trigger: InteractionTrigger & "user";
|
|
188
|
+
type: InteractionType & "drag_drop";
|
|
189
|
+
};
|
|
190
|
+
payload: NodeCreated_Base;
|
|
191
|
+
};
|
|
192
|
+
nodeCreatedNodeRepoDoubleClick: {
|
|
193
|
+
event_name: "node_created";
|
|
194
|
+
event_source: "editor";
|
|
195
|
+
event_display_name: "Node Created";
|
|
196
|
+
interaction: {
|
|
197
|
+
location: "noderepository";
|
|
198
|
+
trigger: InteractionTrigger & "user";
|
|
199
|
+
type: InteractionType & "double_click";
|
|
200
|
+
};
|
|
201
|
+
payload: NodeCreated_WithOptionalConnectedTo;
|
|
202
|
+
};
|
|
203
|
+
nodeCreatedNodeRepoKeyboard: {
|
|
204
|
+
event_name: "node_created";
|
|
205
|
+
event_source: "editor";
|
|
206
|
+
event_display_name: "Node Created";
|
|
207
|
+
interaction: {
|
|
208
|
+
location: "noderepository";
|
|
209
|
+
trigger: InteractionTrigger & "user";
|
|
210
|
+
type: InteractionType & "key_press";
|
|
211
|
+
};
|
|
212
|
+
payload: NodeCreated_WithOptionalConnectedTo;
|
|
213
|
+
};
|
|
214
|
+
nodeCreatedExplorerDragDrop: {
|
|
215
|
+
event_name: "node_created";
|
|
216
|
+
event_source: "editor";
|
|
217
|
+
event_display_name: "Node Created";
|
|
218
|
+
interaction: {
|
|
219
|
+
location: "space_explorer";
|
|
220
|
+
trigger: InteractionTrigger & "user";
|
|
221
|
+
type: InteractionType & "drag_drop";
|
|
222
|
+
};
|
|
223
|
+
payload: NodeCreated_Base;
|
|
224
|
+
};
|
|
225
|
+
nodeCreatedQamClick: {
|
|
226
|
+
event_name: "node_created";
|
|
227
|
+
event_source: "editor";
|
|
228
|
+
event_display_name: "Node Created";
|
|
229
|
+
interaction: {
|
|
230
|
+
location: "qam";
|
|
231
|
+
trigger: InteractionTrigger & "user";
|
|
232
|
+
type: InteractionType & "click";
|
|
233
|
+
};
|
|
234
|
+
payload: NodeCreated_WithOptionalConnectedToPorts;
|
|
235
|
+
};
|
|
236
|
+
nodeCreatedQamKeyboard: {
|
|
237
|
+
event_name: "node_created";
|
|
238
|
+
event_source: "editor";
|
|
239
|
+
event_display_name: "Node Created";
|
|
240
|
+
interaction: {
|
|
241
|
+
location: "qam";
|
|
242
|
+
trigger: InteractionTrigger & "user";
|
|
243
|
+
type: InteractionType & "key_press";
|
|
244
|
+
};
|
|
245
|
+
payload: NodeCreated_WithOptionalConnectedToPorts;
|
|
246
|
+
};
|
|
247
|
+
nodeCreatedKaiQaDragDrop: {
|
|
248
|
+
event_name: "node_created";
|
|
249
|
+
event_source: "editor";
|
|
250
|
+
event_display_name: "Node Created";
|
|
251
|
+
interaction: {
|
|
252
|
+
location: "kai";
|
|
253
|
+
trigger: InteractionTrigger & "user";
|
|
254
|
+
type: InteractionType & "drag_drop";
|
|
255
|
+
};
|
|
256
|
+
payload: NodeCreated_Base;
|
|
257
|
+
};
|
|
258
|
+
nodeCreatedKaiQaKeyboard: {
|
|
259
|
+
event_name: "node_created";
|
|
260
|
+
event_source: "editor";
|
|
261
|
+
event_display_name: "Node Created";
|
|
262
|
+
interaction: {
|
|
263
|
+
location: "kai";
|
|
264
|
+
trigger: InteractionTrigger & "user";
|
|
265
|
+
type: InteractionType & "key_press";
|
|
266
|
+
};
|
|
267
|
+
payload: NodeCreated_Base;
|
|
268
|
+
};
|
|
269
|
+
qamOpenedPortDragDrop: {
|
|
270
|
+
event_name: "qam_opened";
|
|
271
|
+
event_source: "editor";
|
|
272
|
+
event_display_name: "QAM Opened";
|
|
273
|
+
interaction: {
|
|
274
|
+
location: "canvas";
|
|
275
|
+
trigger: InteractionTrigger & "user";
|
|
276
|
+
type: InteractionType & "drag_drop";
|
|
277
|
+
};
|
|
278
|
+
payload: QAMOpened_Payload;
|
|
279
|
+
};
|
|
280
|
+
qamOpenedCanvasDoubleClick: {
|
|
281
|
+
event_name: "qam_opened";
|
|
282
|
+
event_source: "editor";
|
|
283
|
+
event_display_name: "QAM Opened";
|
|
284
|
+
interaction: {
|
|
285
|
+
location: "canvas";
|
|
286
|
+
trigger: InteractionTrigger & "user";
|
|
287
|
+
type: InteractionType & "double_click";
|
|
288
|
+
};
|
|
289
|
+
payload: EmptyPayload;
|
|
290
|
+
};
|
|
291
|
+
qamOpenedKeyboard: {
|
|
292
|
+
event_name: "qam_opened";
|
|
293
|
+
event_source: "editor";
|
|
294
|
+
event_display_name: "QAM Opened";
|
|
295
|
+
interaction: {
|
|
296
|
+
location: "canvas";
|
|
297
|
+
trigger: InteractionTrigger & "user";
|
|
298
|
+
type: InteractionType & "shortcut";
|
|
299
|
+
};
|
|
300
|
+
payload: QAMOpened_PartialPayload;
|
|
301
|
+
};
|
|
302
|
+
qamOpenedCtxMenu: {
|
|
303
|
+
event_name: "qam_opened";
|
|
304
|
+
event_source: "editor";
|
|
305
|
+
event_display_name: "QAM Opened";
|
|
306
|
+
interaction: {
|
|
307
|
+
location: "canvas";
|
|
308
|
+
trigger: InteractionTrigger & "user";
|
|
309
|
+
type: InteractionType & "click";
|
|
310
|
+
ui_element?: "context_menu";
|
|
311
|
+
};
|
|
312
|
+
payload: EmptyPayload;
|
|
313
|
+
};
|
|
314
|
+
nodeSearchedNodeRepo: {
|
|
315
|
+
event_name: "node_searched";
|
|
316
|
+
event_source: "editor";
|
|
317
|
+
event_display_name: "Node Searched";
|
|
318
|
+
interaction: {
|
|
319
|
+
location: "noderepository";
|
|
320
|
+
trigger: InteractionTrigger & "user";
|
|
321
|
+
type: InteractionType & "key_press";
|
|
322
|
+
};
|
|
323
|
+
payload: SearchPayload;
|
|
324
|
+
};
|
|
325
|
+
nodeSearchedQam: {
|
|
326
|
+
event_name: "node_searched";
|
|
327
|
+
event_source: "editor";
|
|
328
|
+
event_display_name: "Node Searched";
|
|
329
|
+
interaction: {
|
|
330
|
+
location: "qam";
|
|
331
|
+
trigger: InteractionTrigger & "user";
|
|
332
|
+
type: InteractionType & "key_press";
|
|
333
|
+
};
|
|
334
|
+
payload: SearchPayload;
|
|
335
|
+
};
|
|
336
|
+
workflowInfoOpened: {
|
|
337
|
+
event_name: "workflow_info_opened";
|
|
338
|
+
event_source: "editor";
|
|
339
|
+
event_display_name: "Workflow Info Opened";
|
|
340
|
+
interaction: {
|
|
341
|
+
location: "workflow_info";
|
|
342
|
+
trigger: InteractionTrigger & "user";
|
|
343
|
+
type: InteractionType & "click";
|
|
344
|
+
};
|
|
345
|
+
payload: EmptyPayload;
|
|
346
|
+
};
|
|
347
|
+
nodeRepositoryOpened: {
|
|
348
|
+
event_name: "noderepository_opened";
|
|
349
|
+
event_source: "editor";
|
|
350
|
+
event_display_name: "Node Repository Opened";
|
|
351
|
+
interaction: {
|
|
352
|
+
location: "noderepository";
|
|
353
|
+
trigger: InteractionTrigger & "user";
|
|
354
|
+
type: InteractionType & "click";
|
|
355
|
+
};
|
|
356
|
+
payload: EmptyPayload;
|
|
357
|
+
};
|
|
358
|
+
spaceExplorerOpened: {
|
|
359
|
+
event_name: "space_explorer_opened";
|
|
360
|
+
event_source: "editor";
|
|
361
|
+
event_display_name: "Space Explorer Opened";
|
|
362
|
+
interaction: {
|
|
363
|
+
location: "space_explorer";
|
|
364
|
+
trigger: InteractionTrigger & "user";
|
|
365
|
+
type: InteractionType & "click";
|
|
366
|
+
};
|
|
367
|
+
payload: EmptyPayload;
|
|
368
|
+
};
|
|
369
|
+
kaiOpened: {
|
|
370
|
+
event_name: "kai_opened";
|
|
371
|
+
event_source: "editor";
|
|
372
|
+
event_display_name: "K-AI Opened";
|
|
373
|
+
interaction: {
|
|
374
|
+
location: "kai";
|
|
375
|
+
trigger: InteractionTrigger & "user";
|
|
376
|
+
type: InteractionType & "click";
|
|
377
|
+
};
|
|
378
|
+
payload: EmptyPayload;
|
|
379
|
+
};
|
|
380
|
+
workflowMonitorOpened: {
|
|
381
|
+
event_name: "workflow_monitor_opened";
|
|
382
|
+
event_source: "editor";
|
|
383
|
+
event_display_name: "Workflow Monitor opened";
|
|
384
|
+
interaction: {
|
|
385
|
+
location: "workflow_monitor";
|
|
386
|
+
trigger: InteractionTrigger & "user";
|
|
387
|
+
type: InteractionType & "click";
|
|
388
|
+
};
|
|
389
|
+
payload: EmptyPayload;
|
|
390
|
+
};
|
|
391
|
+
versionHistoryOpened: {
|
|
392
|
+
event_name: "version_history_opened";
|
|
393
|
+
event_source: "editor";
|
|
394
|
+
event_display_name: "Version History opened";
|
|
395
|
+
interaction: {
|
|
396
|
+
location: "workflow_toolbar";
|
|
397
|
+
trigger: InteractionTrigger & "user";
|
|
398
|
+
type: InteractionType & "click";
|
|
399
|
+
ui_element?: "dropdown_menu";
|
|
400
|
+
};
|
|
401
|
+
payload: EmptyPayload;
|
|
402
|
+
};
|
|
403
|
+
actionUndoneToolbar: {
|
|
404
|
+
event_name: "action_undone";
|
|
405
|
+
event_source: "editor";
|
|
406
|
+
event_display_name: "Action Undone";
|
|
407
|
+
interaction: {
|
|
408
|
+
location: "workflow_toolbar";
|
|
409
|
+
trigger: InteractionTrigger & "user";
|
|
410
|
+
type: InteractionType & "click";
|
|
411
|
+
};
|
|
412
|
+
payload: EmptyPayload;
|
|
413
|
+
};
|
|
414
|
+
actionUndoneKeyboard: {
|
|
415
|
+
event_name: "action_undone";
|
|
416
|
+
event_source: "editor";
|
|
417
|
+
event_display_name: "Action Undone";
|
|
418
|
+
interaction: {
|
|
419
|
+
location: "global";
|
|
420
|
+
trigger: InteractionTrigger & "user";
|
|
421
|
+
type: InteractionType & "shortcut";
|
|
422
|
+
};
|
|
423
|
+
payload: EmptyPayload;
|
|
424
|
+
};
|
|
425
|
+
adHocExecutionStartedDeploymentsPage: {
|
|
426
|
+
event_name: "adhoc_execution_started";
|
|
427
|
+
event_source: "cloudhome";
|
|
428
|
+
event_display_name: "Ad Hoc Execution Started";
|
|
429
|
+
interaction: {
|
|
430
|
+
location: "main_area";
|
|
431
|
+
page: "deployments";
|
|
432
|
+
trigger: InteractionTrigger & "user";
|
|
433
|
+
type: InteractionType & "click";
|
|
434
|
+
};
|
|
435
|
+
payload: EmptyPayload;
|
|
436
|
+
};
|
|
437
|
+
adHocExecutionStartedExecutionPanel: {
|
|
438
|
+
event_name: "adhoc_execution_started";
|
|
439
|
+
event_source: "cloudhome";
|
|
440
|
+
event_display_name: "Ad Hoc Execution Started";
|
|
441
|
+
interaction: {
|
|
442
|
+
location: "contextual_side_panel";
|
|
443
|
+
page: "workflow_details";
|
|
444
|
+
trigger: InteractionTrigger & "user";
|
|
445
|
+
type: InteractionType & "click";
|
|
446
|
+
};
|
|
447
|
+
payload: EmptyPayload;
|
|
448
|
+
};
|
|
449
|
+
adHocExecutionStartedWorkflowPage: {
|
|
450
|
+
event_name: "adhoc_execution_started";
|
|
451
|
+
event_source: "cloudhome";
|
|
452
|
+
event_display_name: "Ad Hoc Execution Started";
|
|
453
|
+
interaction: {
|
|
454
|
+
location: "main_area";
|
|
455
|
+
page: "workflow_details";
|
|
456
|
+
trigger: InteractionTrigger & "user";
|
|
457
|
+
type: InteractionType & "click";
|
|
458
|
+
};
|
|
459
|
+
payload: EmptyPayload;
|
|
460
|
+
};
|
|
461
|
+
actionRedoneToolbar: {
|
|
462
|
+
event_name: "action_redone";
|
|
463
|
+
event_source: "editor";
|
|
464
|
+
event_display_name: "Action Redone";
|
|
465
|
+
interaction: {
|
|
466
|
+
location: "workflow_toolbar";
|
|
467
|
+
trigger: InteractionTrigger & "user";
|
|
468
|
+
type: InteractionType & "click";
|
|
469
|
+
};
|
|
470
|
+
payload: EmptyPayload;
|
|
471
|
+
};
|
|
472
|
+
actionRedoneKeyboard: {
|
|
473
|
+
event_name: "action_redone";
|
|
474
|
+
event_source: "editor";
|
|
475
|
+
event_display_name: "Action Redone";
|
|
476
|
+
interaction: {
|
|
477
|
+
location: "global";
|
|
478
|
+
trigger: InteractionTrigger & "user";
|
|
479
|
+
type: InteractionType & "shortcut";
|
|
480
|
+
};
|
|
481
|
+
payload: EmptyPayload;
|
|
482
|
+
};
|
|
483
|
+
versionCreated: {
|
|
484
|
+
event_name: "version_created";
|
|
485
|
+
event_source: "editor";
|
|
486
|
+
event_display_name: "Version Created";
|
|
487
|
+
interaction: {
|
|
488
|
+
location: "version_history";
|
|
489
|
+
trigger: InteractionTrigger & "user";
|
|
490
|
+
type: InteractionType & "click";
|
|
491
|
+
};
|
|
492
|
+
payload: EmptyPayload;
|
|
493
|
+
};
|
|
494
|
+
secretCreatedTeamSecrets: {
|
|
495
|
+
event_name: "secret_created";
|
|
496
|
+
event_source: "cloudhome";
|
|
497
|
+
event_display_name: "Secret Created";
|
|
498
|
+
interaction: {
|
|
499
|
+
location: "contextual_side_panel";
|
|
500
|
+
page: "secrets";
|
|
501
|
+
trigger: InteractionTrigger & "user";
|
|
502
|
+
type: InteractionType & "click";
|
|
503
|
+
};
|
|
504
|
+
payload: EmptyPayload;
|
|
505
|
+
};
|
|
506
|
+
secretCreatedMySecrets: {
|
|
507
|
+
event_name: "secret_created";
|
|
508
|
+
event_source: "cloudhome";
|
|
509
|
+
event_display_name: "Secret Created";
|
|
510
|
+
interaction: {
|
|
511
|
+
location: "contextual_side_panel";
|
|
512
|
+
page: "my_secrets";
|
|
513
|
+
trigger: InteractionTrigger & "user";
|
|
514
|
+
type: InteractionType & "click";
|
|
515
|
+
};
|
|
516
|
+
payload: EmptyPayload;
|
|
517
|
+
};
|
|
518
|
+
sessionEnded: {
|
|
519
|
+
event_name: "session_ended";
|
|
520
|
+
event_source: "editor";
|
|
521
|
+
event_display_name: "Editor Session End";
|
|
522
|
+
interaction: {
|
|
523
|
+
location: "global";
|
|
524
|
+
trigger: InteractionTrigger & "user";
|
|
525
|
+
type: InteractionType & "click";
|
|
526
|
+
};
|
|
527
|
+
payload: SessionEndedPayload;
|
|
528
|
+
};
|
|
529
|
+
sessionInterrupted: {
|
|
530
|
+
event_name: "session_interrupted";
|
|
531
|
+
event_source: "editor";
|
|
532
|
+
event_display_name: "Editor Session Interrupted";
|
|
533
|
+
interaction: {
|
|
534
|
+
location: "global";
|
|
535
|
+
trigger: InteractionTrigger & "system";
|
|
536
|
+
type: InteractionType & "auto";
|
|
537
|
+
};
|
|
538
|
+
payload: EmptyPayload;
|
|
539
|
+
};
|
|
540
|
+
sessionResumed: {
|
|
541
|
+
event_name: "session_resumed";
|
|
542
|
+
event_source: "editor";
|
|
543
|
+
event_display_name: "Editor Session Resumed";
|
|
544
|
+
interaction: {
|
|
545
|
+
location: "global";
|
|
546
|
+
trigger: InteractionTrigger & "system";
|
|
547
|
+
type: InteractionType & "auto";
|
|
548
|
+
};
|
|
549
|
+
payload: EmptyPayload;
|
|
550
|
+
};
|
|
551
|
+
containerNodeCreatedCtxMenu: {
|
|
552
|
+
event_name: "containernode_created";
|
|
553
|
+
event_source: "editor";
|
|
554
|
+
event_display_name: "Container Node Created";
|
|
555
|
+
interaction: {
|
|
556
|
+
location: "canvas";
|
|
557
|
+
trigger: InteractionTrigger & "user";
|
|
558
|
+
type: InteractionType & "click";
|
|
559
|
+
ui_element?: "context_menu";
|
|
560
|
+
};
|
|
561
|
+
payload: ContainerNodeCreatedPayload;
|
|
562
|
+
};
|
|
563
|
+
containerNodeCreatedKeyboard: {
|
|
564
|
+
event_name: "containernode_created";
|
|
565
|
+
event_source: "editor";
|
|
566
|
+
event_display_name: "Container Node Created";
|
|
567
|
+
interaction: {
|
|
568
|
+
location: "canvas";
|
|
569
|
+
trigger: InteractionTrigger & "user";
|
|
570
|
+
type: InteractionType & "shortcut";
|
|
571
|
+
};
|
|
572
|
+
payload: ContainerNodeCreatedPayload;
|
|
573
|
+
};
|
|
574
|
+
hintShown: {
|
|
575
|
+
event_name: "hint_shown";
|
|
576
|
+
event_source: "editor";
|
|
577
|
+
event_display_name: "Hint Shown";
|
|
578
|
+
interaction: {
|
|
579
|
+
location: "global";
|
|
580
|
+
trigger: InteractionTrigger & "system";
|
|
581
|
+
type: InteractionType & "auto";
|
|
582
|
+
};
|
|
583
|
+
payload: HintIdPayload;
|
|
584
|
+
};
|
|
585
|
+
hintClosed: {
|
|
586
|
+
event_name: "hint_closed";
|
|
587
|
+
event_source: "editor";
|
|
588
|
+
event_display_name: "Hint Closed";
|
|
589
|
+
interaction: {
|
|
590
|
+
location: "hint";
|
|
591
|
+
trigger: InteractionTrigger & "user";
|
|
592
|
+
type: InteractionType & "click";
|
|
593
|
+
};
|
|
594
|
+
payload: HintIdPayload;
|
|
595
|
+
};
|
|
596
|
+
configurationCompletedApply: {
|
|
597
|
+
event_name: "configuration_completed";
|
|
598
|
+
event_source: "editor";
|
|
599
|
+
event_display_name: "Configuration Completed";
|
|
600
|
+
interaction: {
|
|
601
|
+
location: "node_configuration";
|
|
602
|
+
trigger: InteractionTrigger & "user";
|
|
603
|
+
type: InteractionType & "click";
|
|
604
|
+
};
|
|
605
|
+
payload: ConfigurationCompletedPayload;
|
|
606
|
+
};
|
|
607
|
+
configurationCompletedAutoApply: {
|
|
608
|
+
event_name: "configuration_completed";
|
|
609
|
+
event_source: "editor";
|
|
610
|
+
event_display_name: "Configuration Completed";
|
|
611
|
+
interaction: {
|
|
612
|
+
location: "node_configuration";
|
|
613
|
+
trigger: InteractionTrigger & "user";
|
|
614
|
+
type: InteractionType & "auto";
|
|
615
|
+
};
|
|
616
|
+
payload: ConfigurationCompletedPayload;
|
|
617
|
+
};
|
|
618
|
+
containerNodeEnteredCanvasDoubleClick: {
|
|
619
|
+
event_name: "containernode_entered";
|
|
620
|
+
event_source: "editor";
|
|
621
|
+
event_display_name: "Container Node Entered";
|
|
622
|
+
interaction: {
|
|
623
|
+
location: "canvas";
|
|
624
|
+
trigger: InteractionTrigger & "user";
|
|
625
|
+
type: InteractionType & "double_click";
|
|
626
|
+
ui_element?: "node";
|
|
627
|
+
};
|
|
628
|
+
payload: ContainerNodeTypePayload;
|
|
629
|
+
};
|
|
630
|
+
containerNodeEnteredKeyboard: {
|
|
631
|
+
event_name: "containernode_entered";
|
|
632
|
+
event_source: "editor";
|
|
633
|
+
event_display_name: "Container Node Entered";
|
|
634
|
+
interaction: {
|
|
635
|
+
location: "canvas";
|
|
636
|
+
trigger: InteractionTrigger & "user";
|
|
637
|
+
type: InteractionType & "shortcut";
|
|
638
|
+
};
|
|
639
|
+
payload: ContainerNodeTypePayload;
|
|
640
|
+
};
|
|
641
|
+
containerNodeEnteredCtxMenu: {
|
|
642
|
+
event_name: "containernode_entered";
|
|
643
|
+
event_source: "editor";
|
|
644
|
+
event_display_name: "Container Node Entered";
|
|
645
|
+
interaction: {
|
|
646
|
+
location: "canvas";
|
|
647
|
+
trigger: InteractionTrigger & "user";
|
|
648
|
+
type: InteractionType & "click";
|
|
649
|
+
ui_element?: "context_menu";
|
|
650
|
+
};
|
|
651
|
+
payload: ContainerNodeTypePayload;
|
|
652
|
+
};
|
|
653
|
+
containerNodeExitedKeyboard: {
|
|
654
|
+
event_name: "containernode_exited";
|
|
655
|
+
event_source: "editor";
|
|
656
|
+
event_display_name: "Container Node Exited";
|
|
657
|
+
interaction: {
|
|
658
|
+
location: "global";
|
|
659
|
+
trigger: InteractionTrigger & "user";
|
|
660
|
+
type: InteractionType & "shortcut";
|
|
661
|
+
};
|
|
662
|
+
payload: ContainerNodeTypePayload;
|
|
663
|
+
};
|
|
664
|
+
containerNodeExitedToolbar: {
|
|
665
|
+
event_name: "containernode_exited";
|
|
666
|
+
event_source: "editor";
|
|
667
|
+
event_display_name: "Container Node Exited";
|
|
668
|
+
interaction: {
|
|
669
|
+
location: "workflow_toolbar";
|
|
670
|
+
trigger: InteractionTrigger & "user";
|
|
671
|
+
type: InteractionType & "click";
|
|
672
|
+
};
|
|
673
|
+
payload: ContainerNodeTypePayload;
|
|
674
|
+
};
|
|
675
|
+
deploymentCreated: {
|
|
676
|
+
event_name: "deployment_created";
|
|
677
|
+
event_source: "cloudhome";
|
|
678
|
+
event_display_name: "Deployment Created";
|
|
679
|
+
interaction: {
|
|
680
|
+
location: "contextual_side_panel";
|
|
681
|
+
page: "deployments";
|
|
682
|
+
trigger: InteractionTrigger & "user";
|
|
683
|
+
type: InteractionType & "click";
|
|
684
|
+
};
|
|
685
|
+
payload: DeploymentCreatedPayload;
|
|
686
|
+
};
|
|
687
|
+
deploymentSharedDeploymentsAccessPanel: {
|
|
688
|
+
event_name: "deployment_shared";
|
|
689
|
+
event_source: "cloudhome";
|
|
690
|
+
event_display_name: "Deployment Shared";
|
|
691
|
+
interaction: {
|
|
692
|
+
location: "contextual_side_panel";
|
|
693
|
+
page: "deployments";
|
|
694
|
+
trigger: InteractionTrigger & "user";
|
|
695
|
+
type: InteractionType & "click";
|
|
696
|
+
};
|
|
697
|
+
payload: DeploymentSharedPayload;
|
|
698
|
+
};
|
|
699
|
+
deploymentSharedDeploymentsSharingPopup: {
|
|
700
|
+
event_name: "deployment_shared";
|
|
701
|
+
event_source: "cloudhome";
|
|
702
|
+
event_display_name: "Deployment Shared";
|
|
703
|
+
interaction: {
|
|
704
|
+
location: "module";
|
|
705
|
+
page: "deployments";
|
|
706
|
+
trigger: InteractionTrigger & "user";
|
|
707
|
+
type: InteractionType & "click";
|
|
708
|
+
};
|
|
709
|
+
payload: DeploymentSharedPayload;
|
|
710
|
+
};
|
|
711
|
+
deploymentSharedWorkflowAccessPanel: {
|
|
712
|
+
event_name: "deployment_shared";
|
|
713
|
+
event_source: "cloudhome";
|
|
714
|
+
event_display_name: "Deployment Shared";
|
|
715
|
+
interaction: {
|
|
716
|
+
location: "contextual_side_panel";
|
|
717
|
+
page: "workflow_details";
|
|
718
|
+
trigger: InteractionTrigger & "user";
|
|
719
|
+
type: InteractionType & "click";
|
|
720
|
+
};
|
|
721
|
+
payload: DeploymentSharedPayload;
|
|
722
|
+
};
|
|
723
|
+
deploymentSharedWorkflowSharingPopup: {
|
|
724
|
+
event_name: "deployment_shared";
|
|
725
|
+
event_source: "cloudhome";
|
|
726
|
+
event_display_name: "Deployment Shared";
|
|
727
|
+
interaction: {
|
|
728
|
+
location: "module";
|
|
729
|
+
page: "workflow_details";
|
|
730
|
+
trigger: InteractionTrigger & "user";
|
|
731
|
+
type: InteractionType & "click";
|
|
732
|
+
};
|
|
733
|
+
payload: DeploymentSharedPayload;
|
|
734
|
+
};
|
|
735
|
+
nodeCreatedCanvasDragDropFile: {
|
|
736
|
+
event_name: "node_created";
|
|
737
|
+
event_source: "editor";
|
|
738
|
+
event_display_name: "Node Created";
|
|
739
|
+
interaction: {
|
|
740
|
+
location: "canvas";
|
|
741
|
+
trigger: InteractionTrigger & "user";
|
|
742
|
+
type: InteractionType & "drag_drop";
|
|
743
|
+
};
|
|
744
|
+
payload: NodeCreated_Base;
|
|
745
|
+
};
|
|
746
|
+
nodeCreatedFloatingToolsAddByFile: {
|
|
747
|
+
event_name: "node_created";
|
|
748
|
+
event_source: "editor";
|
|
749
|
+
event_display_name: "Node Created";
|
|
750
|
+
interaction: {
|
|
751
|
+
location: "floating_canvas_tools";
|
|
752
|
+
trigger: InteractionTrigger & "user";
|
|
753
|
+
type: InteractionType & "click";
|
|
754
|
+
};
|
|
755
|
+
payload: NodeCreated_Base;
|
|
126
756
|
};
|
|
127
757
|
};
|
|
128
758
|
}
|
|
@@ -130,24 +760,11 @@ export interface KaiPromptedPayload {
|
|
|
130
760
|
nodeFactoryId?: string;
|
|
131
761
|
nodeType?: "node" | "component" | "metanode";
|
|
132
762
|
}
|
|
133
|
-
export interface ContainerNodeCreatedPayload {
|
|
134
|
-
nodeType: "component" | "metanode";
|
|
135
|
-
childrenNodes: {
|
|
136
|
-
nodeType: "component" | "metanode" | "node";
|
|
137
|
-
nodeFactoryId?: string;
|
|
138
|
-
}[];
|
|
139
|
-
}
|
|
140
|
-
export interface HintIdPayload {
|
|
141
|
-
hintId: string;
|
|
142
|
-
}
|
|
143
|
-
export interface ConfigurationCompletedPayload {
|
|
144
|
-
nodeFactoryId?: string;
|
|
145
|
-
state: "success" | "failed_invalid_setting";
|
|
146
|
-
}
|
|
147
763
|
export interface WorkflowSavedPayload {
|
|
148
764
|
isAutosyncEnabled: boolean;
|
|
149
765
|
}
|
|
150
766
|
export interface ConnectionCreatedPayload {
|
|
767
|
+
direction: "forwards" | "backwards";
|
|
151
768
|
fromNode: ConnectionCreated_NodePayload;
|
|
152
769
|
toNode: ConnectionCreated_NodePayload;
|
|
153
770
|
}
|
|
@@ -157,6 +774,9 @@ export interface ConnectionCreated_NodePayload {
|
|
|
157
774
|
nodePortId: string;
|
|
158
775
|
nodeFactoryId?: string;
|
|
159
776
|
}
|
|
777
|
+
export interface ConnectionCreatedAutoconnectPayload {
|
|
778
|
+
flowVariable: boolean;
|
|
779
|
+
}
|
|
160
780
|
export interface NodeCreated_Common {
|
|
161
781
|
nodeType: "node" | "component";
|
|
162
782
|
}
|
|
@@ -173,9 +793,9 @@ export interface ConnectedTo_WithPorts {
|
|
|
173
793
|
nodeFactoryId: string;
|
|
174
794
|
nodePortIndex?: number;
|
|
175
795
|
nodePortId?: string;
|
|
176
|
-
direction: "forward" | "backward";
|
|
177
796
|
}
|
|
178
797
|
export interface QAMOpened_Payload {
|
|
798
|
+
direction: "forwards" | "backwards";
|
|
179
799
|
connectedTo: ConnectedTo_WithPorts;
|
|
180
800
|
}
|
|
181
801
|
export interface QAMOpened_PartialPayload {
|
|
@@ -185,7 +805,30 @@ export interface SearchPayload {
|
|
|
185
805
|
repoType: "node" | "component";
|
|
186
806
|
keyword: string;
|
|
187
807
|
}
|
|
188
|
-
export interface
|
|
808
|
+
export interface SessionEndedPayload {
|
|
809
|
+
type: "timedout" | "user_closed";
|
|
810
|
+
}
|
|
811
|
+
export interface ContainerNodeCreatedPayload {
|
|
189
812
|
nodeType: "component" | "metanode";
|
|
190
|
-
|
|
813
|
+
childrenNodes: {
|
|
814
|
+
nodeType: "component" | "metanode" | "node";
|
|
815
|
+
nodeFactoryId?: string;
|
|
816
|
+
}[];
|
|
817
|
+
}
|
|
818
|
+
export interface HintIdPayload {
|
|
819
|
+
hintId: string;
|
|
820
|
+
}
|
|
821
|
+
export interface ConfigurationCompletedPayload {
|
|
822
|
+
nodeFactoryId?: string;
|
|
823
|
+
state: "success" | "failed_invalid_setting";
|
|
824
|
+
}
|
|
825
|
+
export interface ContainerNodeTypePayload {
|
|
826
|
+
nodeType: "component" | "metanode";
|
|
827
|
+
}
|
|
828
|
+
export interface DeploymentCreatedPayload {
|
|
829
|
+
deploymentType: "dataApp" | "schedule" | "service";
|
|
830
|
+
}
|
|
831
|
+
export interface DeploymentSharedPayload {
|
|
832
|
+
deploymentType: "dataApp" | "service";
|
|
833
|
+
sharingMethod: "invite" | "copy_link";
|
|
191
834
|
}
|