@knime/hub-features 1.31.1 → 1.33.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
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @knime/hub-features
|
|
2
2
|
|
|
3
|
+
## 1.33.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 49b0d7a: Add analytics event for requesting a node dialog migration
|
|
8
|
+
|
|
9
|
+
## 1.32.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- de41b7f: Add object uploaded from Space Explorer in cloudhome event
|
|
14
|
+
- de41b7f: Add invite team member events
|
|
15
|
+
|
|
16
|
+
- Explicitly invite team member from manage team members panel
|
|
17
|
+
- Implicitly invite team member from share space popup
|
|
18
|
+
|
|
19
|
+
- de41b7f: Add object uploaded from Space Explorer in editor event
|
|
20
|
+
- de41b7f: Add version related events
|
|
21
|
+
|
|
22
|
+
- Creating a workflow version from workflow details page in Home
|
|
23
|
+
- Creating a component version from component details page in Home
|
|
24
|
+
|
|
3
25
|
## 1.31.1
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -15,7 +15,7 @@ export const adHocExecutionStartedDeploymentsPage = <T extends DefaultContext>(c
|
|
|
15
15
|
event_source: "cloudhome",
|
|
16
16
|
event_display_name: "Ad Hoc Execution Started",
|
|
17
17
|
interaction: {
|
|
18
|
-
location: "
|
|
18
|
+
location: "main_area",
|
|
19
19
|
page: "deployments",
|
|
20
20
|
trigger: "user",
|
|
21
21
|
type: "click",
|
|
@@ -75,6 +75,54 @@ export const adHocExecutionStartedWorkflowPage = <T extends DefaultContext>(ctx:
|
|
|
75
75
|
return event;
|
|
76
76
|
};
|
|
77
77
|
|
|
78
|
+
/**
|
|
79
|
+
* Fired when the user clicks the Create button in the version creation side panel on the component details page
|
|
80
|
+
*/
|
|
81
|
+
export const versionCreatedFromComponentDetails = <T extends DefaultContext>(ctx: T) => (): AnalyticsEvent => {
|
|
82
|
+
const staticData = {
|
|
83
|
+
...toSnakeCaseDeep(ctx),
|
|
84
|
+
unique_event_id: crypto.randomUUID(),
|
|
85
|
+
timestamp: new Date().toISOString(),
|
|
86
|
+
event_name: "version_created",
|
|
87
|
+
event_source: "cloudhome",
|
|
88
|
+
event_display_name: "Version Created",
|
|
89
|
+
interaction: {
|
|
90
|
+
location: "contextual_side_panel",
|
|
91
|
+
page: "component_details",
|
|
92
|
+
trigger: "user",
|
|
93
|
+
type: "click",
|
|
94
|
+
},
|
|
95
|
+
} satisfies SchemaStaticFields & GeneratedStaticFields;
|
|
96
|
+
|
|
97
|
+
const event = { id: staticData.event_name, data: { ...staticData } };
|
|
98
|
+
|
|
99
|
+
return event;
|
|
100
|
+
};
|
|
101
|
+
|
|
102
|
+
/**
|
|
103
|
+
* Fired when the user clicks the Create button in the version creation side panel on the workflow details page
|
|
104
|
+
*/
|
|
105
|
+
export const versionCreatedFromWorkflowDetails = <T extends DefaultContext>(ctx: T) => (): AnalyticsEvent => {
|
|
106
|
+
const staticData = {
|
|
107
|
+
...toSnakeCaseDeep(ctx),
|
|
108
|
+
unique_event_id: crypto.randomUUID(),
|
|
109
|
+
timestamp: new Date().toISOString(),
|
|
110
|
+
event_name: "version_created",
|
|
111
|
+
event_source: "cloudhome",
|
|
112
|
+
event_display_name: "Version Created",
|
|
113
|
+
interaction: {
|
|
114
|
+
location: "contextual_side_panel",
|
|
115
|
+
page: "workflow_details",
|
|
116
|
+
trigger: "user",
|
|
117
|
+
type: "click",
|
|
118
|
+
},
|
|
119
|
+
} satisfies SchemaStaticFields & GeneratedStaticFields;
|
|
120
|
+
|
|
121
|
+
const event = { id: staticData.event_name, data: { ...staticData } };
|
|
122
|
+
|
|
123
|
+
return event;
|
|
124
|
+
};
|
|
125
|
+
|
|
78
126
|
/**
|
|
79
127
|
* Fired when the user creates a new secret by clicking Create in the side panel on the team secrets page
|
|
80
128
|
*/
|
|
@@ -243,3 +291,75 @@ export const deploymentSharedWorkflowSharingPopup = <T extends DefaultContext>(c
|
|
|
243
291
|
return event;
|
|
244
292
|
};
|
|
245
293
|
|
|
294
|
+
/**
|
|
295
|
+
* Fired when the user uploads items via the upload button in the main area on the space page
|
|
296
|
+
*/
|
|
297
|
+
export const objectUploadedFromSpacePage = <T extends DefaultContext>(ctx: T) => (eventData: EventFunctionArgs<"objectUploadedFromSpacePage">): AnalyticsEvent => {
|
|
298
|
+
const staticData = {
|
|
299
|
+
...toSnakeCaseDeep(ctx),
|
|
300
|
+
unique_event_id: crypto.randomUUID(),
|
|
301
|
+
timestamp: new Date().toISOString(),
|
|
302
|
+
event_name: "object_uploaded",
|
|
303
|
+
event_source: "cloudhome",
|
|
304
|
+
event_display_name: "Object Uploaded",
|
|
305
|
+
interaction: {
|
|
306
|
+
location: "main_area",
|
|
307
|
+
page: "space",
|
|
308
|
+
trigger: "user",
|
|
309
|
+
type: "click",
|
|
310
|
+
},
|
|
311
|
+
} satisfies SchemaStaticFields & GeneratedStaticFields;
|
|
312
|
+
|
|
313
|
+
const event = { id: staticData.event_name, data: { ...staticData, payload: { ...toSnakeCaseDeep(eventData as Record<string, any>) } } };
|
|
314
|
+
|
|
315
|
+
return event;
|
|
316
|
+
};
|
|
317
|
+
|
|
318
|
+
/**
|
|
319
|
+
* Fired when the user invites a team member via the manage team members popup on the spaces page
|
|
320
|
+
*/
|
|
321
|
+
export const teamMemberInvitedFromManageTeamMembersPanel = <T extends DefaultContext>(ctx: T) => (): AnalyticsEvent => {
|
|
322
|
+
const staticData = {
|
|
323
|
+
...toSnakeCaseDeep(ctx),
|
|
324
|
+
unique_event_id: crypto.randomUUID(),
|
|
325
|
+
timestamp: new Date().toISOString(),
|
|
326
|
+
event_name: "team_member_invited",
|
|
327
|
+
event_source: "cloudhome",
|
|
328
|
+
event_display_name: "Team Member Invited",
|
|
329
|
+
interaction: {
|
|
330
|
+
location: "popup",
|
|
331
|
+
page: "spaces",
|
|
332
|
+
trigger: "user",
|
|
333
|
+
type: "click",
|
|
334
|
+
},
|
|
335
|
+
} satisfies SchemaStaticFields & GeneratedStaticFields;
|
|
336
|
+
|
|
337
|
+
const event = { id: staticData.event_name, data: { ...staticData } };
|
|
338
|
+
|
|
339
|
+
return event;
|
|
340
|
+
};
|
|
341
|
+
|
|
342
|
+
/**
|
|
343
|
+
* Fired when the user invites a team member via the share space popup on the space page
|
|
344
|
+
*/
|
|
345
|
+
export const teamMemberInvitedFromShareSpacePopup = <T extends DefaultContext>(ctx: T) => (): AnalyticsEvent => {
|
|
346
|
+
const staticData = {
|
|
347
|
+
...toSnakeCaseDeep(ctx),
|
|
348
|
+
unique_event_id: crypto.randomUUID(),
|
|
349
|
+
timestamp: new Date().toISOString(),
|
|
350
|
+
event_name: "team_member_invited",
|
|
351
|
+
event_source: "cloudhome",
|
|
352
|
+
event_display_name: "Team Member Invited",
|
|
353
|
+
interaction: {
|
|
354
|
+
location: "popup",
|
|
355
|
+
page: "space",
|
|
356
|
+
trigger: "user",
|
|
357
|
+
type: "click",
|
|
358
|
+
},
|
|
359
|
+
} satisfies SchemaStaticFields & GeneratedStaticFields;
|
|
360
|
+
|
|
361
|
+
const event = { id: staticData.event_name, data: { ...staticData } };
|
|
362
|
+
|
|
363
|
+
return event;
|
|
364
|
+
};
|
|
365
|
+
|
|
@@ -1163,6 +1163,29 @@ export const nodeConfigFeedbackSubmitted = <T extends DefaultContext>(ctx: T) =>
|
|
|
1163
1163
|
return event;
|
|
1164
1164
|
};
|
|
1165
1165
|
|
|
1166
|
+
/**
|
|
1167
|
+
* Fired when the user requests the migration of a node's auto-generated dialog to a modern dialog
|
|
1168
|
+
*/
|
|
1169
|
+
export const nodeMigrationRequested = <T extends DefaultContext>(ctx: T) => (eventData: EventFunctionArgs<"nodeMigrationRequested">): AnalyticsEvent => {
|
|
1170
|
+
const staticData = {
|
|
1171
|
+
...toSnakeCaseDeep(ctx),
|
|
1172
|
+
unique_event_id: crypto.randomUUID(),
|
|
1173
|
+
timestamp: new Date().toISOString(),
|
|
1174
|
+
event_name: "node_migration_requested",
|
|
1175
|
+
event_source: "editor",
|
|
1176
|
+
event_display_name: "Node Migration Requested",
|
|
1177
|
+
interaction: {
|
|
1178
|
+
location: "node_configuration",
|
|
1179
|
+
trigger: "user",
|
|
1180
|
+
type: "click",
|
|
1181
|
+
},
|
|
1182
|
+
} satisfies SchemaStaticFields & GeneratedStaticFields;
|
|
1183
|
+
|
|
1184
|
+
const event = { id: staticData.event_name, data: { ...staticData, payload: { ...toSnakeCaseDeep(eventData as Record<string, any>) } } };
|
|
1185
|
+
|
|
1186
|
+
return event;
|
|
1187
|
+
};
|
|
1188
|
+
|
|
1166
1189
|
/**
|
|
1167
1190
|
* Fired when the user executes all nodes via the context menu
|
|
1168
1191
|
*/
|
|
@@ -1891,3 +1914,26 @@ export const stepLoopExecutionCtxMenu = <T extends DefaultContext>(ctx: T) => (e
|
|
|
1891
1914
|
return event;
|
|
1892
1915
|
};
|
|
1893
1916
|
|
|
1917
|
+
/**
|
|
1918
|
+
* Fired when the user uploads items via the upload button in the space explorer
|
|
1919
|
+
*/
|
|
1920
|
+
export const objectUploaded = <T extends DefaultContext>(ctx: T) => (eventData: EventFunctionArgs<"objectUploaded">): AnalyticsEvent => {
|
|
1921
|
+
const staticData = {
|
|
1922
|
+
...toSnakeCaseDeep(ctx),
|
|
1923
|
+
unique_event_id: crypto.randomUUID(),
|
|
1924
|
+
timestamp: new Date().toISOString(),
|
|
1925
|
+
event_name: "object_uploaded",
|
|
1926
|
+
event_source: "editor",
|
|
1927
|
+
event_display_name: "Object Uploaded",
|
|
1928
|
+
interaction: {
|
|
1929
|
+
location: "space_explorer",
|
|
1930
|
+
trigger: "user",
|
|
1931
|
+
type: "click",
|
|
1932
|
+
},
|
|
1933
|
+
} satisfies SchemaStaticFields & GeneratedStaticFields;
|
|
1934
|
+
|
|
1935
|
+
const event = { id: staticData.event_name, data: { ...staticData, payload: { ...toSnakeCaseDeep(eventData as Record<string, any>) } } };
|
|
1936
|
+
|
|
1937
|
+
return event;
|
|
1938
|
+
};
|
|
1939
|
+
|
|
@@ -427,7 +427,7 @@ export interface AnalyticsEventSchema {
|
|
|
427
427
|
event_source: "cloudhome";
|
|
428
428
|
event_display_name: "Ad Hoc Execution Started";
|
|
429
429
|
interaction: {
|
|
430
|
-
location: "
|
|
430
|
+
location: "main_area";
|
|
431
431
|
page: "deployments";
|
|
432
432
|
trigger: InteractionTrigger & "user";
|
|
433
433
|
type: InteractionType & "click";
|
|
@@ -491,6 +491,30 @@ export interface AnalyticsEventSchema {
|
|
|
491
491
|
};
|
|
492
492
|
payload: EmptyPayload;
|
|
493
493
|
};
|
|
494
|
+
versionCreatedFromComponentDetails: {
|
|
495
|
+
event_name: "version_created";
|
|
496
|
+
event_source: "cloudhome";
|
|
497
|
+
event_display_name: "Version Created";
|
|
498
|
+
interaction: {
|
|
499
|
+
location: "contextual_side_panel";
|
|
500
|
+
page: "component_details";
|
|
501
|
+
trigger: InteractionTrigger & "user";
|
|
502
|
+
type: InteractionType & "click";
|
|
503
|
+
};
|
|
504
|
+
payload: EmptyPayload;
|
|
505
|
+
};
|
|
506
|
+
versionCreatedFromWorkflowDetails: {
|
|
507
|
+
event_name: "version_created";
|
|
508
|
+
event_source: "cloudhome";
|
|
509
|
+
event_display_name: "Version Created";
|
|
510
|
+
interaction: {
|
|
511
|
+
location: "contextual_side_panel";
|
|
512
|
+
page: "workflow_details";
|
|
513
|
+
trigger: InteractionTrigger & "user";
|
|
514
|
+
type: InteractionType & "click";
|
|
515
|
+
};
|
|
516
|
+
payload: EmptyPayload;
|
|
517
|
+
};
|
|
494
518
|
secretCreatedTeamSecrets: {
|
|
495
519
|
event_name: "secret_created";
|
|
496
520
|
event_source: "cloudhome";
|
|
@@ -776,6 +800,17 @@ export interface AnalyticsEventSchema {
|
|
|
776
800
|
};
|
|
777
801
|
payload: NodeConfigFeedbackPayload;
|
|
778
802
|
};
|
|
803
|
+
nodeMigrationRequested: {
|
|
804
|
+
event_name: "node_migration_requested";
|
|
805
|
+
event_source: "editor";
|
|
806
|
+
event_display_name: "Node Migration Requested";
|
|
807
|
+
interaction: {
|
|
808
|
+
location: "node_configuration";
|
|
809
|
+
trigger: InteractionTrigger & "user";
|
|
810
|
+
type: InteractionType & "click";
|
|
811
|
+
};
|
|
812
|
+
payload: NodeMigrationRequestedPayload;
|
|
813
|
+
};
|
|
779
814
|
executeAllNodesCtxMenu: {
|
|
780
815
|
event_name: "all_nodes_executed";
|
|
781
816
|
event_source: "editor";
|
|
@@ -1132,6 +1167,53 @@ export interface AnalyticsEventSchema {
|
|
|
1132
1167
|
};
|
|
1133
1168
|
payload: SingleNodeExecutionPayload;
|
|
1134
1169
|
};
|
|
1170
|
+
objectUploadedFromSpacePage: {
|
|
1171
|
+
event_name: "object_uploaded";
|
|
1172
|
+
event_source: "cloudhome";
|
|
1173
|
+
event_display_name: "Object Uploaded";
|
|
1174
|
+
interaction: {
|
|
1175
|
+
location: "main_area";
|
|
1176
|
+
page: "space";
|
|
1177
|
+
trigger: InteractionTrigger & "user";
|
|
1178
|
+
type: InteractionType & "click";
|
|
1179
|
+
};
|
|
1180
|
+
payload: ObjectUploadedPayload;
|
|
1181
|
+
};
|
|
1182
|
+
objectUploaded: {
|
|
1183
|
+
event_name: "object_uploaded";
|
|
1184
|
+
event_source: "editor";
|
|
1185
|
+
event_display_name: "Object Uploaded";
|
|
1186
|
+
interaction: {
|
|
1187
|
+
location: "space_explorer";
|
|
1188
|
+
trigger: InteractionTrigger & "user";
|
|
1189
|
+
type: InteractionType & "click";
|
|
1190
|
+
};
|
|
1191
|
+
payload: ObjectUploadedPayload;
|
|
1192
|
+
};
|
|
1193
|
+
teamMemberInvitedFromManageTeamMembersPanel: {
|
|
1194
|
+
event_name: "team_member_invited";
|
|
1195
|
+
event_source: "cloudhome";
|
|
1196
|
+
event_display_name: "Team Member Invited";
|
|
1197
|
+
interaction: {
|
|
1198
|
+
location: "popup";
|
|
1199
|
+
page: "spaces";
|
|
1200
|
+
trigger: InteractionTrigger & "user";
|
|
1201
|
+
type: InteractionType & "click";
|
|
1202
|
+
};
|
|
1203
|
+
payload: EmptyPayload;
|
|
1204
|
+
};
|
|
1205
|
+
teamMemberInvitedFromShareSpacePopup: {
|
|
1206
|
+
event_name: "team_member_invited";
|
|
1207
|
+
event_source: "cloudhome";
|
|
1208
|
+
event_display_name: "Team Member Invited";
|
|
1209
|
+
interaction: {
|
|
1210
|
+
location: "popup";
|
|
1211
|
+
page: "space";
|
|
1212
|
+
trigger: InteractionTrigger & "user";
|
|
1213
|
+
type: InteractionType & "click";
|
|
1214
|
+
};
|
|
1215
|
+
payload: EmptyPayload;
|
|
1216
|
+
};
|
|
1135
1217
|
};
|
|
1136
1218
|
}
|
|
1137
1219
|
export interface KaiPromptedPayload {
|
|
@@ -1219,6 +1301,9 @@ export interface NodeConfigFeedbackPayload {
|
|
|
1219
1301
|
rating: number;
|
|
1220
1302
|
message?: string;
|
|
1221
1303
|
}
|
|
1304
|
+
export interface NodeMigrationRequestedPayload {
|
|
1305
|
+
nodeFactoryId: string;
|
|
1306
|
+
}
|
|
1222
1307
|
export interface NodeExecutionPayload {
|
|
1223
1308
|
nodes: {
|
|
1224
1309
|
nodeType: "node" | "component" | "metanode";
|
|
@@ -1226,3 +1311,8 @@ export interface NodeExecutionPayload {
|
|
|
1226
1311
|
}[];
|
|
1227
1312
|
total: number;
|
|
1228
1313
|
}
|
|
1314
|
+
export interface ObjectUploadedPayload {
|
|
1315
|
+
uploadedObjects: {
|
|
1316
|
+
[k: string]: number;
|
|
1317
|
+
};
|
|
1318
|
+
}
|
|
@@ -58,6 +58,8 @@
|
|
|
58
58
|
"actionRedoneToolbar",
|
|
59
59
|
"actionRedoneKeyboard",
|
|
60
60
|
"versionCreated",
|
|
61
|
+
"versionCreatedFromComponentDetails",
|
|
62
|
+
"versionCreatedFromWorkflowDetails",
|
|
61
63
|
"secretCreatedPersonalSecrets",
|
|
62
64
|
"secretCreatedTeamSecrets",
|
|
63
65
|
"sessionEnded",
|
|
@@ -82,6 +84,7 @@
|
|
|
82
84
|
"nodeCreatedCanvasDragDropFile",
|
|
83
85
|
"nodeCreatedFloatingToolsAddByFile",
|
|
84
86
|
"nodeConfigFeedbackSubmitted",
|
|
87
|
+
"nodeMigrationRequested",
|
|
85
88
|
"executeAllNodesCtxMenu",
|
|
86
89
|
"executeAllNodesKeyboard",
|
|
87
90
|
"executeAllNodesToolbar",
|
|
@@ -112,7 +115,11 @@
|
|
|
112
115
|
"stepLoopExecutionActionBar",
|
|
113
116
|
"pauseLoopExecutionCtxMenu",
|
|
114
117
|
"resumeLoopExecutionCtxMenu",
|
|
115
|
-
"stepLoopExecutionCtxMenu"
|
|
118
|
+
"stepLoopExecutionCtxMenu",
|
|
119
|
+
"objectUploadedFromSpacePage",
|
|
120
|
+
"objectUploaded",
|
|
121
|
+
"teamMemberInvitedFromManageTeamMembersPanel",
|
|
122
|
+
"teamMemberInvitedFromShareSpacePopup"
|
|
116
123
|
],
|
|
117
124
|
"properties": {
|
|
118
125
|
"kaiPromptedQA": {
|
|
@@ -2292,7 +2299,7 @@
|
|
|
2292
2299
|
"properties": {
|
|
2293
2300
|
"location": {
|
|
2294
2301
|
"type": "string",
|
|
2295
|
-
"const": "
|
|
2302
|
+
"const": "main_area"
|
|
2296
2303
|
},
|
|
2297
2304
|
"page": {
|
|
2298
2305
|
"type": "string",
|
|
@@ -2630,6 +2637,134 @@
|
|
|
2630
2637
|
}
|
|
2631
2638
|
}
|
|
2632
2639
|
},
|
|
2640
|
+
"versionCreatedFromComponentDetails": {
|
|
2641
|
+
"type": "object",
|
|
2642
|
+
"additionalProperties": false,
|
|
2643
|
+
"$comment": "Fired when the user clicks the Create button in the version creation side panel on the component details page",
|
|
2644
|
+
"required": [
|
|
2645
|
+
"event_name",
|
|
2646
|
+
"event_source",
|
|
2647
|
+
"event_display_name",
|
|
2648
|
+
"interaction",
|
|
2649
|
+
"payload"
|
|
2650
|
+
],
|
|
2651
|
+
"properties": {
|
|
2652
|
+
"event_name": {
|
|
2653
|
+
"type": "string",
|
|
2654
|
+
"const": "version_created"
|
|
2655
|
+
},
|
|
2656
|
+
"event_source": {
|
|
2657
|
+
"type": "string",
|
|
2658
|
+
"const": "cloudhome"
|
|
2659
|
+
},
|
|
2660
|
+
"event_display_name": {
|
|
2661
|
+
"type": "string",
|
|
2662
|
+
"const": "Version Created"
|
|
2663
|
+
},
|
|
2664
|
+
"interaction": {
|
|
2665
|
+
"type": "object",
|
|
2666
|
+
"additionalProperties": false,
|
|
2667
|
+
"required": ["location", "page", "trigger", "type"],
|
|
2668
|
+
"properties": {
|
|
2669
|
+
"location": {
|
|
2670
|
+
"type": "string",
|
|
2671
|
+
"const": "contextual_side_panel"
|
|
2672
|
+
},
|
|
2673
|
+
"page": {
|
|
2674
|
+
"type": "string",
|
|
2675
|
+
"const": "component_details"
|
|
2676
|
+
},
|
|
2677
|
+
"trigger": {
|
|
2678
|
+
"allOf": [
|
|
2679
|
+
{
|
|
2680
|
+
"$ref": "#/definitions/InteractionTrigger"
|
|
2681
|
+
},
|
|
2682
|
+
{
|
|
2683
|
+
"const": "user"
|
|
2684
|
+
}
|
|
2685
|
+
]
|
|
2686
|
+
},
|
|
2687
|
+
"type": {
|
|
2688
|
+
"allOf": [
|
|
2689
|
+
{
|
|
2690
|
+
"$ref": "#/definitions/InteractionType"
|
|
2691
|
+
},
|
|
2692
|
+
{
|
|
2693
|
+
"const": "click"
|
|
2694
|
+
}
|
|
2695
|
+
]
|
|
2696
|
+
}
|
|
2697
|
+
}
|
|
2698
|
+
},
|
|
2699
|
+
"payload": {
|
|
2700
|
+
"$ref": "#/definitions/EmptyPayload"
|
|
2701
|
+
}
|
|
2702
|
+
}
|
|
2703
|
+
},
|
|
2704
|
+
"versionCreatedFromWorkflowDetails": {
|
|
2705
|
+
"type": "object",
|
|
2706
|
+
"additionalProperties": false,
|
|
2707
|
+
"$comment": "Fired when the user clicks the Create button in the version creation side panel on the workflow details page",
|
|
2708
|
+
"required": [
|
|
2709
|
+
"event_name",
|
|
2710
|
+
"event_source",
|
|
2711
|
+
"event_display_name",
|
|
2712
|
+
"interaction",
|
|
2713
|
+
"payload"
|
|
2714
|
+
],
|
|
2715
|
+
"properties": {
|
|
2716
|
+
"event_name": {
|
|
2717
|
+
"type": "string",
|
|
2718
|
+
"const": "version_created"
|
|
2719
|
+
},
|
|
2720
|
+
"event_source": {
|
|
2721
|
+
"type": "string",
|
|
2722
|
+
"const": "cloudhome"
|
|
2723
|
+
},
|
|
2724
|
+
"event_display_name": {
|
|
2725
|
+
"type": "string",
|
|
2726
|
+
"const": "Version Created"
|
|
2727
|
+
},
|
|
2728
|
+
"interaction": {
|
|
2729
|
+
"type": "object",
|
|
2730
|
+
"additionalProperties": false,
|
|
2731
|
+
"required": ["location", "page", "trigger", "type"],
|
|
2732
|
+
"properties": {
|
|
2733
|
+
"location": {
|
|
2734
|
+
"type": "string",
|
|
2735
|
+
"const": "contextual_side_panel"
|
|
2736
|
+
},
|
|
2737
|
+
"page": {
|
|
2738
|
+
"type": "string",
|
|
2739
|
+
"const": "workflow_details"
|
|
2740
|
+
},
|
|
2741
|
+
"trigger": {
|
|
2742
|
+
"allOf": [
|
|
2743
|
+
{
|
|
2744
|
+
"$ref": "#/definitions/InteractionTrigger"
|
|
2745
|
+
},
|
|
2746
|
+
{
|
|
2747
|
+
"const": "user"
|
|
2748
|
+
}
|
|
2749
|
+
]
|
|
2750
|
+
},
|
|
2751
|
+
"type": {
|
|
2752
|
+
"allOf": [
|
|
2753
|
+
{
|
|
2754
|
+
"$ref": "#/definitions/InteractionType"
|
|
2755
|
+
},
|
|
2756
|
+
{
|
|
2757
|
+
"const": "click"
|
|
2758
|
+
}
|
|
2759
|
+
]
|
|
2760
|
+
}
|
|
2761
|
+
}
|
|
2762
|
+
},
|
|
2763
|
+
"payload": {
|
|
2764
|
+
"$ref": "#/definitions/EmptyPayload"
|
|
2765
|
+
}
|
|
2766
|
+
}
|
|
2767
|
+
},
|
|
2633
2768
|
"secretCreatedTeamSecrets": {
|
|
2634
2769
|
"type": "object",
|
|
2635
2770
|
"additionalProperties": false,
|
|
@@ -4154,6 +4289,66 @@
|
|
|
4154
4289
|
}
|
|
4155
4290
|
}
|
|
4156
4291
|
},
|
|
4292
|
+
"nodeMigrationRequested": {
|
|
4293
|
+
"type": "object",
|
|
4294
|
+
"additionalProperties": false,
|
|
4295
|
+
"$comment": "Fired when the user requests the migration of a node's auto-generated dialog to a modern dialog",
|
|
4296
|
+
"required": [
|
|
4297
|
+
"event_name",
|
|
4298
|
+
"event_source",
|
|
4299
|
+
"event_display_name",
|
|
4300
|
+
"interaction",
|
|
4301
|
+
"payload"
|
|
4302
|
+
],
|
|
4303
|
+
"properties": {
|
|
4304
|
+
"event_name": {
|
|
4305
|
+
"type": "string",
|
|
4306
|
+
"const": "node_migration_requested"
|
|
4307
|
+
},
|
|
4308
|
+
"event_source": {
|
|
4309
|
+
"type": "string",
|
|
4310
|
+
"const": "editor"
|
|
4311
|
+
},
|
|
4312
|
+
"event_display_name": {
|
|
4313
|
+
"type": "string",
|
|
4314
|
+
"const": "Node Migration Requested"
|
|
4315
|
+
},
|
|
4316
|
+
"interaction": {
|
|
4317
|
+
"type": "object",
|
|
4318
|
+
"additionalProperties": false,
|
|
4319
|
+
"required": ["location", "trigger", "type"],
|
|
4320
|
+
"properties": {
|
|
4321
|
+
"location": {
|
|
4322
|
+
"type": "string",
|
|
4323
|
+
"const": "node_configuration"
|
|
4324
|
+
},
|
|
4325
|
+
"trigger": {
|
|
4326
|
+
"allOf": [
|
|
4327
|
+
{
|
|
4328
|
+
"$ref": "#/definitions/InteractionTrigger"
|
|
4329
|
+
},
|
|
4330
|
+
{
|
|
4331
|
+
"const": "user"
|
|
4332
|
+
}
|
|
4333
|
+
]
|
|
4334
|
+
},
|
|
4335
|
+
"type": {
|
|
4336
|
+
"allOf": [
|
|
4337
|
+
{
|
|
4338
|
+
"$ref": "#/definitions/InteractionType"
|
|
4339
|
+
},
|
|
4340
|
+
{
|
|
4341
|
+
"const": "click"
|
|
4342
|
+
}
|
|
4343
|
+
]
|
|
4344
|
+
}
|
|
4345
|
+
}
|
|
4346
|
+
},
|
|
4347
|
+
"payload": {
|
|
4348
|
+
"$ref": "#/definitions/NodeMigrationRequestedPayload"
|
|
4349
|
+
}
|
|
4350
|
+
}
|
|
4351
|
+
},
|
|
4157
4352
|
"executeAllNodesCtxMenu": {
|
|
4158
4353
|
"type": "object",
|
|
4159
4354
|
"additionalProperties": false,
|
|
@@ -6073,6 +6268,258 @@
|
|
|
6073
6268
|
"$ref": "#/definitions/SingleNodeExecutionPayload"
|
|
6074
6269
|
}
|
|
6075
6270
|
}
|
|
6271
|
+
},
|
|
6272
|
+
"objectUploadedFromSpacePage": {
|
|
6273
|
+
"type": "object",
|
|
6274
|
+
"additionalProperties": false,
|
|
6275
|
+
"$comment": "Fired when the user uploads items via the upload button in the main area on the space page",
|
|
6276
|
+
"required": [
|
|
6277
|
+
"event_name",
|
|
6278
|
+
"event_source",
|
|
6279
|
+
"event_display_name",
|
|
6280
|
+
"interaction",
|
|
6281
|
+
"payload"
|
|
6282
|
+
],
|
|
6283
|
+
"properties": {
|
|
6284
|
+
"event_name": {
|
|
6285
|
+
"type": "string",
|
|
6286
|
+
"const": "object_uploaded"
|
|
6287
|
+
},
|
|
6288
|
+
"event_source": {
|
|
6289
|
+
"type": "string",
|
|
6290
|
+
"const": "cloudhome"
|
|
6291
|
+
},
|
|
6292
|
+
"event_display_name": {
|
|
6293
|
+
"type": "string",
|
|
6294
|
+
"const": "Object Uploaded"
|
|
6295
|
+
},
|
|
6296
|
+
"interaction": {
|
|
6297
|
+
"type": "object",
|
|
6298
|
+
"additionalProperties": false,
|
|
6299
|
+
"required": ["location", "page", "trigger", "type"],
|
|
6300
|
+
"properties": {
|
|
6301
|
+
"location": {
|
|
6302
|
+
"type": "string",
|
|
6303
|
+
"const": "main_area"
|
|
6304
|
+
},
|
|
6305
|
+
"page": {
|
|
6306
|
+
"type": "string",
|
|
6307
|
+
"const": "space"
|
|
6308
|
+
},
|
|
6309
|
+
"trigger": {
|
|
6310
|
+
"allOf": [
|
|
6311
|
+
{
|
|
6312
|
+
"$ref": "#/definitions/InteractionTrigger"
|
|
6313
|
+
},
|
|
6314
|
+
{
|
|
6315
|
+
"const": "user"
|
|
6316
|
+
}
|
|
6317
|
+
]
|
|
6318
|
+
},
|
|
6319
|
+
"type": {
|
|
6320
|
+
"allOf": [
|
|
6321
|
+
{
|
|
6322
|
+
"$ref": "#/definitions/InteractionType"
|
|
6323
|
+
},
|
|
6324
|
+
{
|
|
6325
|
+
"const": "click"
|
|
6326
|
+
}
|
|
6327
|
+
]
|
|
6328
|
+
}
|
|
6329
|
+
}
|
|
6330
|
+
},
|
|
6331
|
+
"payload": {
|
|
6332
|
+
"$ref": "#/definitions/ObjectUploadedPayload"
|
|
6333
|
+
}
|
|
6334
|
+
}
|
|
6335
|
+
},
|
|
6336
|
+
"objectUploaded": {
|
|
6337
|
+
"type": "object",
|
|
6338
|
+
"additionalProperties": false,
|
|
6339
|
+
"$comment": "Fired when the user uploads items via the upload button in the space explorer",
|
|
6340
|
+
"required": [
|
|
6341
|
+
"event_name",
|
|
6342
|
+
"event_source",
|
|
6343
|
+
"event_display_name",
|
|
6344
|
+
"interaction",
|
|
6345
|
+
"payload"
|
|
6346
|
+
],
|
|
6347
|
+
"properties": {
|
|
6348
|
+
"event_name": {
|
|
6349
|
+
"type": "string",
|
|
6350
|
+
"const": "object_uploaded"
|
|
6351
|
+
},
|
|
6352
|
+
"event_source": {
|
|
6353
|
+
"type": "string",
|
|
6354
|
+
"const": "editor"
|
|
6355
|
+
},
|
|
6356
|
+
"event_display_name": {
|
|
6357
|
+
"type": "string",
|
|
6358
|
+
"const": "Object Uploaded"
|
|
6359
|
+
},
|
|
6360
|
+
"interaction": {
|
|
6361
|
+
"type": "object",
|
|
6362
|
+
"additionalProperties": false,
|
|
6363
|
+
"required": ["location", "trigger", "type"],
|
|
6364
|
+
"properties": {
|
|
6365
|
+
"location": {
|
|
6366
|
+
"type": "string",
|
|
6367
|
+
"const": "space_explorer"
|
|
6368
|
+
},
|
|
6369
|
+
"trigger": {
|
|
6370
|
+
"allOf": [
|
|
6371
|
+
{
|
|
6372
|
+
"$ref": "#/definitions/InteractionTrigger"
|
|
6373
|
+
},
|
|
6374
|
+
{
|
|
6375
|
+
"const": "user"
|
|
6376
|
+
}
|
|
6377
|
+
]
|
|
6378
|
+
},
|
|
6379
|
+
"type": {
|
|
6380
|
+
"allOf": [
|
|
6381
|
+
{
|
|
6382
|
+
"$ref": "#/definitions/InteractionType"
|
|
6383
|
+
},
|
|
6384
|
+
{
|
|
6385
|
+
"const": "click"
|
|
6386
|
+
}
|
|
6387
|
+
]
|
|
6388
|
+
}
|
|
6389
|
+
}
|
|
6390
|
+
},
|
|
6391
|
+
"payload": {
|
|
6392
|
+
"$ref": "#/definitions/ObjectUploadedPayload"
|
|
6393
|
+
}
|
|
6394
|
+
}
|
|
6395
|
+
},
|
|
6396
|
+
"teamMemberInvitedFromManageTeamMembersPanel": {
|
|
6397
|
+
"type": "object",
|
|
6398
|
+
"additionalProperties": false,
|
|
6399
|
+
"$comment": "Fired when the user invites a team member via the manage team members popup on the spaces page",
|
|
6400
|
+
"required": [
|
|
6401
|
+
"event_name",
|
|
6402
|
+
"event_source",
|
|
6403
|
+
"event_display_name",
|
|
6404
|
+
"interaction",
|
|
6405
|
+
"payload"
|
|
6406
|
+
],
|
|
6407
|
+
"properties": {
|
|
6408
|
+
"event_name": {
|
|
6409
|
+
"type": "string",
|
|
6410
|
+
"const": "team_member_invited"
|
|
6411
|
+
},
|
|
6412
|
+
"event_source": {
|
|
6413
|
+
"type": "string",
|
|
6414
|
+
"const": "cloudhome"
|
|
6415
|
+
},
|
|
6416
|
+
"event_display_name": {
|
|
6417
|
+
"type": "string",
|
|
6418
|
+
"const": "Team Member Invited"
|
|
6419
|
+
},
|
|
6420
|
+
"interaction": {
|
|
6421
|
+
"type": "object",
|
|
6422
|
+
"additionalProperties": false,
|
|
6423
|
+
"required": ["location", "page", "trigger", "type"],
|
|
6424
|
+
"properties": {
|
|
6425
|
+
"location": {
|
|
6426
|
+
"type": "string",
|
|
6427
|
+
"const": "popup"
|
|
6428
|
+
},
|
|
6429
|
+
"page": {
|
|
6430
|
+
"type": "string",
|
|
6431
|
+
"const": "spaces"
|
|
6432
|
+
},
|
|
6433
|
+
"trigger": {
|
|
6434
|
+
"allOf": [
|
|
6435
|
+
{
|
|
6436
|
+
"$ref": "#/definitions/InteractionTrigger"
|
|
6437
|
+
},
|
|
6438
|
+
{
|
|
6439
|
+
"const": "user"
|
|
6440
|
+
}
|
|
6441
|
+
]
|
|
6442
|
+
},
|
|
6443
|
+
"type": {
|
|
6444
|
+
"allOf": [
|
|
6445
|
+
{
|
|
6446
|
+
"$ref": "#/definitions/InteractionType"
|
|
6447
|
+
},
|
|
6448
|
+
{
|
|
6449
|
+
"const": "click"
|
|
6450
|
+
}
|
|
6451
|
+
]
|
|
6452
|
+
}
|
|
6453
|
+
}
|
|
6454
|
+
},
|
|
6455
|
+
"payload": {
|
|
6456
|
+
"$ref": "#/definitions/EmptyPayload"
|
|
6457
|
+
}
|
|
6458
|
+
}
|
|
6459
|
+
},
|
|
6460
|
+
"teamMemberInvitedFromShareSpacePopup": {
|
|
6461
|
+
"type": "object",
|
|
6462
|
+
"additionalProperties": false,
|
|
6463
|
+
"$comment": "Fired when the user invites a team member via the share space popup on the space page",
|
|
6464
|
+
"required": [
|
|
6465
|
+
"event_name",
|
|
6466
|
+
"event_source",
|
|
6467
|
+
"event_display_name",
|
|
6468
|
+
"interaction",
|
|
6469
|
+
"payload"
|
|
6470
|
+
],
|
|
6471
|
+
"properties": {
|
|
6472
|
+
"event_name": {
|
|
6473
|
+
"type": "string",
|
|
6474
|
+
"const": "team_member_invited"
|
|
6475
|
+
},
|
|
6476
|
+
"event_source": {
|
|
6477
|
+
"type": "string",
|
|
6478
|
+
"const": "cloudhome"
|
|
6479
|
+
},
|
|
6480
|
+
"event_display_name": {
|
|
6481
|
+
"type": "string",
|
|
6482
|
+
"const": "Team Member Invited"
|
|
6483
|
+
},
|
|
6484
|
+
"interaction": {
|
|
6485
|
+
"type": "object",
|
|
6486
|
+
"additionalProperties": false,
|
|
6487
|
+
"required": ["location", "page", "trigger", "type"],
|
|
6488
|
+
"properties": {
|
|
6489
|
+
"location": {
|
|
6490
|
+
"type": "string",
|
|
6491
|
+
"const": "popup"
|
|
6492
|
+
},
|
|
6493
|
+
"page": {
|
|
6494
|
+
"type": "string",
|
|
6495
|
+
"const": "space"
|
|
6496
|
+
},
|
|
6497
|
+
"trigger": {
|
|
6498
|
+
"allOf": [
|
|
6499
|
+
{
|
|
6500
|
+
"$ref": "#/definitions/InteractionTrigger"
|
|
6501
|
+
},
|
|
6502
|
+
{
|
|
6503
|
+
"const": "user"
|
|
6504
|
+
}
|
|
6505
|
+
]
|
|
6506
|
+
},
|
|
6507
|
+
"type": {
|
|
6508
|
+
"allOf": [
|
|
6509
|
+
{
|
|
6510
|
+
"$ref": "#/definitions/InteractionType"
|
|
6511
|
+
},
|
|
6512
|
+
{
|
|
6513
|
+
"const": "click"
|
|
6514
|
+
}
|
|
6515
|
+
]
|
|
6516
|
+
}
|
|
6517
|
+
}
|
|
6518
|
+
},
|
|
6519
|
+
"payload": {
|
|
6520
|
+
"$ref": "#/definitions/EmptyPayload"
|
|
6521
|
+
}
|
|
6522
|
+
}
|
|
6076
6523
|
}
|
|
6077
6524
|
}
|
|
6078
6525
|
}
|
|
@@ -6428,6 +6875,16 @@
|
|
|
6428
6875
|
}
|
|
6429
6876
|
}
|
|
6430
6877
|
},
|
|
6878
|
+
"NodeMigrationRequestedPayload": {
|
|
6879
|
+
"type": "object",
|
|
6880
|
+
"additionalProperties": false,
|
|
6881
|
+
"required": ["nodeFactoryId"],
|
|
6882
|
+
"properties": {
|
|
6883
|
+
"nodeFactoryId": {
|
|
6884
|
+
"type": "string"
|
|
6885
|
+
}
|
|
6886
|
+
}
|
|
6887
|
+
},
|
|
6431
6888
|
"NodeExecutionPayload": {
|
|
6432
6889
|
"type": "object",
|
|
6433
6890
|
"additionalProperties": false,
|
|
@@ -6468,6 +6925,19 @@
|
|
|
6468
6925
|
"type": "string"
|
|
6469
6926
|
}
|
|
6470
6927
|
}
|
|
6928
|
+
},
|
|
6929
|
+
"ObjectUploadedPayload": {
|
|
6930
|
+
"type": "object",
|
|
6931
|
+
"additionalProperties": false,
|
|
6932
|
+
"required": ["uploadedObjects"],
|
|
6933
|
+
"properties": {
|
|
6934
|
+
"uploadedObjects": {
|
|
6935
|
+
"type": "object",
|
|
6936
|
+
"additionalProperties": {
|
|
6937
|
+
"type": "integer"
|
|
6938
|
+
}
|
|
6939
|
+
}
|
|
6940
|
+
}
|
|
6471
6941
|
}
|
|
6472
6942
|
}
|
|
6473
6943
|
}
|