@knime/hub-features 1.31.0 → 1.32.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.32.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- de41b7f: Add object uploaded from Space Explorer in cloudhome event
|
|
8
|
+
- de41b7f: Add invite team member events
|
|
9
|
+
|
|
10
|
+
- Explicitly invite team member from manage team members panel
|
|
11
|
+
- Implicitly invite team member from share space popup
|
|
12
|
+
|
|
13
|
+
- de41b7f: Add object uploaded from Space Explorer in editor event
|
|
14
|
+
- de41b7f: Add version related events
|
|
15
|
+
|
|
16
|
+
- Creating a workflow version from workflow details page in Home
|
|
17
|
+
- Creating a component version from component details page in Home
|
|
18
|
+
|
|
19
|
+
## 1.31.1
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- 88de4c5: Adjust payload for deployment sharing events
|
|
24
|
+
|
|
3
25
|
## 1.31.0
|
|
4
26
|
|
|
5
27
|
### Minor 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
|
+
|
|
@@ -943,9 +943,9 @@ export const applyAndExecuteNodeConfig = <T extends DefaultContext>(ctx: T) => (
|
|
|
943
943
|
...toSnakeCaseDeep(ctx),
|
|
944
944
|
unique_event_id: crypto.randomUUID(),
|
|
945
945
|
timestamp: new Date().toISOString(),
|
|
946
|
-
event_name: "
|
|
946
|
+
event_name: "node_configuration_applied_and_executed",
|
|
947
947
|
event_source: "editor",
|
|
948
|
-
event_display_name: "Node
|
|
948
|
+
event_display_name: "Node configuration applied and executed",
|
|
949
949
|
interaction: {
|
|
950
950
|
location: "node_configuration",
|
|
951
951
|
trigger: "user",
|
|
@@ -1891,3 +1891,26 @@ export const stepLoopExecutionCtxMenu = <T extends DefaultContext>(ctx: T) => (e
|
|
|
1891
1891
|
return event;
|
|
1892
1892
|
};
|
|
1893
1893
|
|
|
1894
|
+
/**
|
|
1895
|
+
* Fired when the user uploads items via the upload button in the space explorer
|
|
1896
|
+
*/
|
|
1897
|
+
export const objectUploaded = <T extends DefaultContext>(ctx: T) => (eventData: EventFunctionArgs<"objectUploaded">): AnalyticsEvent => {
|
|
1898
|
+
const staticData = {
|
|
1899
|
+
...toSnakeCaseDeep(ctx),
|
|
1900
|
+
unique_event_id: crypto.randomUUID(),
|
|
1901
|
+
timestamp: new Date().toISOString(),
|
|
1902
|
+
event_name: "object_uploaded",
|
|
1903
|
+
event_source: "editor",
|
|
1904
|
+
event_display_name: "Object Uploaded",
|
|
1905
|
+
interaction: {
|
|
1906
|
+
location: "space_explorer",
|
|
1907
|
+
trigger: "user",
|
|
1908
|
+
type: "click",
|
|
1909
|
+
},
|
|
1910
|
+
} satisfies SchemaStaticFields & GeneratedStaticFields;
|
|
1911
|
+
|
|
1912
|
+
const event = { id: staticData.event_name, data: { ...staticData, payload: { ...toSnakeCaseDeep(eventData as Record<string, any>) } } };
|
|
1913
|
+
|
|
1914
|
+
return event;
|
|
1915
|
+
};
|
|
1916
|
+
|
|
@@ -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";
|
|
@@ -594,9 +618,9 @@ export interface AnalyticsEventSchema {
|
|
|
594
618
|
payload: HintIdPayload;
|
|
595
619
|
};
|
|
596
620
|
applyAndExecuteNodeConfig: {
|
|
597
|
-
event_name: "
|
|
621
|
+
event_name: "node_configuration_applied_and_executed";
|
|
598
622
|
event_source: "editor";
|
|
599
|
-
event_display_name: "Node
|
|
623
|
+
event_display_name: "Node configuration applied and executed";
|
|
600
624
|
interaction: {
|
|
601
625
|
location: "node_configuration";
|
|
602
626
|
trigger: InteractionTrigger & "user";
|
|
@@ -1132,6 +1156,53 @@ export interface AnalyticsEventSchema {
|
|
|
1132
1156
|
};
|
|
1133
1157
|
payload: SingleNodeExecutionPayload;
|
|
1134
1158
|
};
|
|
1159
|
+
objectUploadedFromSpacePage: {
|
|
1160
|
+
event_name: "object_uploaded";
|
|
1161
|
+
event_source: "cloudhome";
|
|
1162
|
+
event_display_name: "Object Uploaded";
|
|
1163
|
+
interaction: {
|
|
1164
|
+
location: "main_area";
|
|
1165
|
+
page: "space";
|
|
1166
|
+
trigger: InteractionTrigger & "user";
|
|
1167
|
+
type: InteractionType & "click";
|
|
1168
|
+
};
|
|
1169
|
+
payload: ObjectUploadedPayload;
|
|
1170
|
+
};
|
|
1171
|
+
objectUploaded: {
|
|
1172
|
+
event_name: "object_uploaded";
|
|
1173
|
+
event_source: "editor";
|
|
1174
|
+
event_display_name: "Object Uploaded";
|
|
1175
|
+
interaction: {
|
|
1176
|
+
location: "space_explorer";
|
|
1177
|
+
trigger: InteractionTrigger & "user";
|
|
1178
|
+
type: InteractionType & "click";
|
|
1179
|
+
};
|
|
1180
|
+
payload: ObjectUploadedPayload;
|
|
1181
|
+
};
|
|
1182
|
+
teamMemberInvitedFromManageTeamMembersPanel: {
|
|
1183
|
+
event_name: "team_member_invited";
|
|
1184
|
+
event_source: "cloudhome";
|
|
1185
|
+
event_display_name: "Team Member Invited";
|
|
1186
|
+
interaction: {
|
|
1187
|
+
location: "popup";
|
|
1188
|
+
page: "spaces";
|
|
1189
|
+
trigger: InteractionTrigger & "user";
|
|
1190
|
+
type: InteractionType & "click";
|
|
1191
|
+
};
|
|
1192
|
+
payload: EmptyPayload;
|
|
1193
|
+
};
|
|
1194
|
+
teamMemberInvitedFromShareSpacePopup: {
|
|
1195
|
+
event_name: "team_member_invited";
|
|
1196
|
+
event_source: "cloudhome";
|
|
1197
|
+
event_display_name: "Team Member Invited";
|
|
1198
|
+
interaction: {
|
|
1199
|
+
location: "popup";
|
|
1200
|
+
page: "space";
|
|
1201
|
+
trigger: InteractionTrigger & "user";
|
|
1202
|
+
type: InteractionType & "click";
|
|
1203
|
+
};
|
|
1204
|
+
payload: EmptyPayload;
|
|
1205
|
+
};
|
|
1135
1206
|
};
|
|
1136
1207
|
}
|
|
1137
1208
|
export interface KaiPromptedPayload {
|
|
@@ -1208,10 +1279,10 @@ export interface ContainerNodeTypePayload {
|
|
|
1208
1279
|
nodeType: "component" | "metanode";
|
|
1209
1280
|
}
|
|
1210
1281
|
export interface DeploymentCreatedPayload {
|
|
1211
|
-
deploymentType: "
|
|
1282
|
+
deploymentType: "data_app" | "schedule" | "service";
|
|
1212
1283
|
}
|
|
1213
1284
|
export interface DeploymentSharedPayload {
|
|
1214
|
-
deploymentType: "
|
|
1285
|
+
deploymentType: "data_app" | "service";
|
|
1215
1286
|
sharingMethod: "invite" | "copy_link";
|
|
1216
1287
|
}
|
|
1217
1288
|
export interface NodeConfigFeedbackPayload {
|
|
@@ -1226,3 +1297,8 @@ export interface NodeExecutionPayload {
|
|
|
1226
1297
|
}[];
|
|
1227
1298
|
total: number;
|
|
1228
1299
|
}
|
|
1300
|
+
export interface ObjectUploadedPayload {
|
|
1301
|
+
uploadedObjects: {
|
|
1302
|
+
[k: string]: number;
|
|
1303
|
+
};
|
|
1304
|
+
}
|
|
@@ -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",
|
|
@@ -112,7 +114,11 @@
|
|
|
112
114
|
"stepLoopExecutionActionBar",
|
|
113
115
|
"pauseLoopExecutionCtxMenu",
|
|
114
116
|
"resumeLoopExecutionCtxMenu",
|
|
115
|
-
"stepLoopExecutionCtxMenu"
|
|
117
|
+
"stepLoopExecutionCtxMenu",
|
|
118
|
+
"objectUploadedFromSpacePage",
|
|
119
|
+
"objectUploaded",
|
|
120
|
+
"teamMemberInvitedFromManageTeamMembersPanel",
|
|
121
|
+
"teamMemberInvitedFromShareSpacePopup"
|
|
116
122
|
],
|
|
117
123
|
"properties": {
|
|
118
124
|
"kaiPromptedQA": {
|
|
@@ -2292,7 +2298,7 @@
|
|
|
2292
2298
|
"properties": {
|
|
2293
2299
|
"location": {
|
|
2294
2300
|
"type": "string",
|
|
2295
|
-
"const": "
|
|
2301
|
+
"const": "main_area"
|
|
2296
2302
|
},
|
|
2297
2303
|
"page": {
|
|
2298
2304
|
"type": "string",
|
|
@@ -2630,6 +2636,134 @@
|
|
|
2630
2636
|
}
|
|
2631
2637
|
}
|
|
2632
2638
|
},
|
|
2639
|
+
"versionCreatedFromComponentDetails": {
|
|
2640
|
+
"type": "object",
|
|
2641
|
+
"additionalProperties": false,
|
|
2642
|
+
"$comment": "Fired when the user clicks the Create button in the version creation side panel on the component details page",
|
|
2643
|
+
"required": [
|
|
2644
|
+
"event_name",
|
|
2645
|
+
"event_source",
|
|
2646
|
+
"event_display_name",
|
|
2647
|
+
"interaction",
|
|
2648
|
+
"payload"
|
|
2649
|
+
],
|
|
2650
|
+
"properties": {
|
|
2651
|
+
"event_name": {
|
|
2652
|
+
"type": "string",
|
|
2653
|
+
"const": "version_created"
|
|
2654
|
+
},
|
|
2655
|
+
"event_source": {
|
|
2656
|
+
"type": "string",
|
|
2657
|
+
"const": "cloudhome"
|
|
2658
|
+
},
|
|
2659
|
+
"event_display_name": {
|
|
2660
|
+
"type": "string",
|
|
2661
|
+
"const": "Version Created"
|
|
2662
|
+
},
|
|
2663
|
+
"interaction": {
|
|
2664
|
+
"type": "object",
|
|
2665
|
+
"additionalProperties": false,
|
|
2666
|
+
"required": ["location", "page", "trigger", "type"],
|
|
2667
|
+
"properties": {
|
|
2668
|
+
"location": {
|
|
2669
|
+
"type": "string",
|
|
2670
|
+
"const": "contextual_side_panel"
|
|
2671
|
+
},
|
|
2672
|
+
"page": {
|
|
2673
|
+
"type": "string",
|
|
2674
|
+
"const": "component_details"
|
|
2675
|
+
},
|
|
2676
|
+
"trigger": {
|
|
2677
|
+
"allOf": [
|
|
2678
|
+
{
|
|
2679
|
+
"$ref": "#/definitions/InteractionTrigger"
|
|
2680
|
+
},
|
|
2681
|
+
{
|
|
2682
|
+
"const": "user"
|
|
2683
|
+
}
|
|
2684
|
+
]
|
|
2685
|
+
},
|
|
2686
|
+
"type": {
|
|
2687
|
+
"allOf": [
|
|
2688
|
+
{
|
|
2689
|
+
"$ref": "#/definitions/InteractionType"
|
|
2690
|
+
},
|
|
2691
|
+
{
|
|
2692
|
+
"const": "click"
|
|
2693
|
+
}
|
|
2694
|
+
]
|
|
2695
|
+
}
|
|
2696
|
+
}
|
|
2697
|
+
},
|
|
2698
|
+
"payload": {
|
|
2699
|
+
"$ref": "#/definitions/EmptyPayload"
|
|
2700
|
+
}
|
|
2701
|
+
}
|
|
2702
|
+
},
|
|
2703
|
+
"versionCreatedFromWorkflowDetails": {
|
|
2704
|
+
"type": "object",
|
|
2705
|
+
"additionalProperties": false,
|
|
2706
|
+
"$comment": "Fired when the user clicks the Create button in the version creation side panel on the workflow details page",
|
|
2707
|
+
"required": [
|
|
2708
|
+
"event_name",
|
|
2709
|
+
"event_source",
|
|
2710
|
+
"event_display_name",
|
|
2711
|
+
"interaction",
|
|
2712
|
+
"payload"
|
|
2713
|
+
],
|
|
2714
|
+
"properties": {
|
|
2715
|
+
"event_name": {
|
|
2716
|
+
"type": "string",
|
|
2717
|
+
"const": "version_created"
|
|
2718
|
+
},
|
|
2719
|
+
"event_source": {
|
|
2720
|
+
"type": "string",
|
|
2721
|
+
"const": "cloudhome"
|
|
2722
|
+
},
|
|
2723
|
+
"event_display_name": {
|
|
2724
|
+
"type": "string",
|
|
2725
|
+
"const": "Version Created"
|
|
2726
|
+
},
|
|
2727
|
+
"interaction": {
|
|
2728
|
+
"type": "object",
|
|
2729
|
+
"additionalProperties": false,
|
|
2730
|
+
"required": ["location", "page", "trigger", "type"],
|
|
2731
|
+
"properties": {
|
|
2732
|
+
"location": {
|
|
2733
|
+
"type": "string",
|
|
2734
|
+
"const": "contextual_side_panel"
|
|
2735
|
+
},
|
|
2736
|
+
"page": {
|
|
2737
|
+
"type": "string",
|
|
2738
|
+
"const": "workflow_details"
|
|
2739
|
+
},
|
|
2740
|
+
"trigger": {
|
|
2741
|
+
"allOf": [
|
|
2742
|
+
{
|
|
2743
|
+
"$ref": "#/definitions/InteractionTrigger"
|
|
2744
|
+
},
|
|
2745
|
+
{
|
|
2746
|
+
"const": "user"
|
|
2747
|
+
}
|
|
2748
|
+
]
|
|
2749
|
+
},
|
|
2750
|
+
"type": {
|
|
2751
|
+
"allOf": [
|
|
2752
|
+
{
|
|
2753
|
+
"$ref": "#/definitions/InteractionType"
|
|
2754
|
+
},
|
|
2755
|
+
{
|
|
2756
|
+
"const": "click"
|
|
2757
|
+
}
|
|
2758
|
+
]
|
|
2759
|
+
}
|
|
2760
|
+
}
|
|
2761
|
+
},
|
|
2762
|
+
"payload": {
|
|
2763
|
+
"$ref": "#/definitions/EmptyPayload"
|
|
2764
|
+
}
|
|
2765
|
+
}
|
|
2766
|
+
},
|
|
2633
2767
|
"secretCreatedTeamSecrets": {
|
|
2634
2768
|
"type": "object",
|
|
2635
2769
|
"additionalProperties": false,
|
|
@@ -6073,6 +6207,258 @@
|
|
|
6073
6207
|
"$ref": "#/definitions/SingleNodeExecutionPayload"
|
|
6074
6208
|
}
|
|
6075
6209
|
}
|
|
6210
|
+
},
|
|
6211
|
+
"objectUploadedFromSpacePage": {
|
|
6212
|
+
"type": "object",
|
|
6213
|
+
"additionalProperties": false,
|
|
6214
|
+
"$comment": "Fired when the user uploads items via the upload button in the main area on the space page",
|
|
6215
|
+
"required": [
|
|
6216
|
+
"event_name",
|
|
6217
|
+
"event_source",
|
|
6218
|
+
"event_display_name",
|
|
6219
|
+
"interaction",
|
|
6220
|
+
"payload"
|
|
6221
|
+
],
|
|
6222
|
+
"properties": {
|
|
6223
|
+
"event_name": {
|
|
6224
|
+
"type": "string",
|
|
6225
|
+
"const": "object_uploaded"
|
|
6226
|
+
},
|
|
6227
|
+
"event_source": {
|
|
6228
|
+
"type": "string",
|
|
6229
|
+
"const": "cloudhome"
|
|
6230
|
+
},
|
|
6231
|
+
"event_display_name": {
|
|
6232
|
+
"type": "string",
|
|
6233
|
+
"const": "Object Uploaded"
|
|
6234
|
+
},
|
|
6235
|
+
"interaction": {
|
|
6236
|
+
"type": "object",
|
|
6237
|
+
"additionalProperties": false,
|
|
6238
|
+
"required": ["location", "page", "trigger", "type"],
|
|
6239
|
+
"properties": {
|
|
6240
|
+
"location": {
|
|
6241
|
+
"type": "string",
|
|
6242
|
+
"const": "main_area"
|
|
6243
|
+
},
|
|
6244
|
+
"page": {
|
|
6245
|
+
"type": "string",
|
|
6246
|
+
"const": "space"
|
|
6247
|
+
},
|
|
6248
|
+
"trigger": {
|
|
6249
|
+
"allOf": [
|
|
6250
|
+
{
|
|
6251
|
+
"$ref": "#/definitions/InteractionTrigger"
|
|
6252
|
+
},
|
|
6253
|
+
{
|
|
6254
|
+
"const": "user"
|
|
6255
|
+
}
|
|
6256
|
+
]
|
|
6257
|
+
},
|
|
6258
|
+
"type": {
|
|
6259
|
+
"allOf": [
|
|
6260
|
+
{
|
|
6261
|
+
"$ref": "#/definitions/InteractionType"
|
|
6262
|
+
},
|
|
6263
|
+
{
|
|
6264
|
+
"const": "click"
|
|
6265
|
+
}
|
|
6266
|
+
]
|
|
6267
|
+
}
|
|
6268
|
+
}
|
|
6269
|
+
},
|
|
6270
|
+
"payload": {
|
|
6271
|
+
"$ref": "#/definitions/ObjectUploadedPayload"
|
|
6272
|
+
}
|
|
6273
|
+
}
|
|
6274
|
+
},
|
|
6275
|
+
"objectUploaded": {
|
|
6276
|
+
"type": "object",
|
|
6277
|
+
"additionalProperties": false,
|
|
6278
|
+
"$comment": "Fired when the user uploads items via the upload button in the space explorer",
|
|
6279
|
+
"required": [
|
|
6280
|
+
"event_name",
|
|
6281
|
+
"event_source",
|
|
6282
|
+
"event_display_name",
|
|
6283
|
+
"interaction",
|
|
6284
|
+
"payload"
|
|
6285
|
+
],
|
|
6286
|
+
"properties": {
|
|
6287
|
+
"event_name": {
|
|
6288
|
+
"type": "string",
|
|
6289
|
+
"const": "object_uploaded"
|
|
6290
|
+
},
|
|
6291
|
+
"event_source": {
|
|
6292
|
+
"type": "string",
|
|
6293
|
+
"const": "editor"
|
|
6294
|
+
},
|
|
6295
|
+
"event_display_name": {
|
|
6296
|
+
"type": "string",
|
|
6297
|
+
"const": "Object Uploaded"
|
|
6298
|
+
},
|
|
6299
|
+
"interaction": {
|
|
6300
|
+
"type": "object",
|
|
6301
|
+
"additionalProperties": false,
|
|
6302
|
+
"required": ["location", "trigger", "type"],
|
|
6303
|
+
"properties": {
|
|
6304
|
+
"location": {
|
|
6305
|
+
"type": "string",
|
|
6306
|
+
"const": "space_explorer"
|
|
6307
|
+
},
|
|
6308
|
+
"trigger": {
|
|
6309
|
+
"allOf": [
|
|
6310
|
+
{
|
|
6311
|
+
"$ref": "#/definitions/InteractionTrigger"
|
|
6312
|
+
},
|
|
6313
|
+
{
|
|
6314
|
+
"const": "user"
|
|
6315
|
+
}
|
|
6316
|
+
]
|
|
6317
|
+
},
|
|
6318
|
+
"type": {
|
|
6319
|
+
"allOf": [
|
|
6320
|
+
{
|
|
6321
|
+
"$ref": "#/definitions/InteractionType"
|
|
6322
|
+
},
|
|
6323
|
+
{
|
|
6324
|
+
"const": "click"
|
|
6325
|
+
}
|
|
6326
|
+
]
|
|
6327
|
+
}
|
|
6328
|
+
}
|
|
6329
|
+
},
|
|
6330
|
+
"payload": {
|
|
6331
|
+
"$ref": "#/definitions/ObjectUploadedPayload"
|
|
6332
|
+
}
|
|
6333
|
+
}
|
|
6334
|
+
},
|
|
6335
|
+
"teamMemberInvitedFromManageTeamMembersPanel": {
|
|
6336
|
+
"type": "object",
|
|
6337
|
+
"additionalProperties": false,
|
|
6338
|
+
"$comment": "Fired when the user invites a team member via the manage team members popup on the spaces page",
|
|
6339
|
+
"required": [
|
|
6340
|
+
"event_name",
|
|
6341
|
+
"event_source",
|
|
6342
|
+
"event_display_name",
|
|
6343
|
+
"interaction",
|
|
6344
|
+
"payload"
|
|
6345
|
+
],
|
|
6346
|
+
"properties": {
|
|
6347
|
+
"event_name": {
|
|
6348
|
+
"type": "string",
|
|
6349
|
+
"const": "team_member_invited"
|
|
6350
|
+
},
|
|
6351
|
+
"event_source": {
|
|
6352
|
+
"type": "string",
|
|
6353
|
+
"const": "cloudhome"
|
|
6354
|
+
},
|
|
6355
|
+
"event_display_name": {
|
|
6356
|
+
"type": "string",
|
|
6357
|
+
"const": "Team Member Invited"
|
|
6358
|
+
},
|
|
6359
|
+
"interaction": {
|
|
6360
|
+
"type": "object",
|
|
6361
|
+
"additionalProperties": false,
|
|
6362
|
+
"required": ["location", "page", "trigger", "type"],
|
|
6363
|
+
"properties": {
|
|
6364
|
+
"location": {
|
|
6365
|
+
"type": "string",
|
|
6366
|
+
"const": "popup"
|
|
6367
|
+
},
|
|
6368
|
+
"page": {
|
|
6369
|
+
"type": "string",
|
|
6370
|
+
"const": "spaces"
|
|
6371
|
+
},
|
|
6372
|
+
"trigger": {
|
|
6373
|
+
"allOf": [
|
|
6374
|
+
{
|
|
6375
|
+
"$ref": "#/definitions/InteractionTrigger"
|
|
6376
|
+
},
|
|
6377
|
+
{
|
|
6378
|
+
"const": "user"
|
|
6379
|
+
}
|
|
6380
|
+
]
|
|
6381
|
+
},
|
|
6382
|
+
"type": {
|
|
6383
|
+
"allOf": [
|
|
6384
|
+
{
|
|
6385
|
+
"$ref": "#/definitions/InteractionType"
|
|
6386
|
+
},
|
|
6387
|
+
{
|
|
6388
|
+
"const": "click"
|
|
6389
|
+
}
|
|
6390
|
+
]
|
|
6391
|
+
}
|
|
6392
|
+
}
|
|
6393
|
+
},
|
|
6394
|
+
"payload": {
|
|
6395
|
+
"$ref": "#/definitions/EmptyPayload"
|
|
6396
|
+
}
|
|
6397
|
+
}
|
|
6398
|
+
},
|
|
6399
|
+
"teamMemberInvitedFromShareSpacePopup": {
|
|
6400
|
+
"type": "object",
|
|
6401
|
+
"additionalProperties": false,
|
|
6402
|
+
"$comment": "Fired when the user invites a team member via the share space popup on the space page",
|
|
6403
|
+
"required": [
|
|
6404
|
+
"event_name",
|
|
6405
|
+
"event_source",
|
|
6406
|
+
"event_display_name",
|
|
6407
|
+
"interaction",
|
|
6408
|
+
"payload"
|
|
6409
|
+
],
|
|
6410
|
+
"properties": {
|
|
6411
|
+
"event_name": {
|
|
6412
|
+
"type": "string",
|
|
6413
|
+
"const": "team_member_invited"
|
|
6414
|
+
},
|
|
6415
|
+
"event_source": {
|
|
6416
|
+
"type": "string",
|
|
6417
|
+
"const": "cloudhome"
|
|
6418
|
+
},
|
|
6419
|
+
"event_display_name": {
|
|
6420
|
+
"type": "string",
|
|
6421
|
+
"const": "Team Member Invited"
|
|
6422
|
+
},
|
|
6423
|
+
"interaction": {
|
|
6424
|
+
"type": "object",
|
|
6425
|
+
"additionalProperties": false,
|
|
6426
|
+
"required": ["location", "page", "trigger", "type"],
|
|
6427
|
+
"properties": {
|
|
6428
|
+
"location": {
|
|
6429
|
+
"type": "string",
|
|
6430
|
+
"const": "popup"
|
|
6431
|
+
},
|
|
6432
|
+
"page": {
|
|
6433
|
+
"type": "string",
|
|
6434
|
+
"const": "space"
|
|
6435
|
+
},
|
|
6436
|
+
"trigger": {
|
|
6437
|
+
"allOf": [
|
|
6438
|
+
{
|
|
6439
|
+
"$ref": "#/definitions/InteractionTrigger"
|
|
6440
|
+
},
|
|
6441
|
+
{
|
|
6442
|
+
"const": "user"
|
|
6443
|
+
}
|
|
6444
|
+
]
|
|
6445
|
+
},
|
|
6446
|
+
"type": {
|
|
6447
|
+
"allOf": [
|
|
6448
|
+
{
|
|
6449
|
+
"$ref": "#/definitions/InteractionType"
|
|
6450
|
+
},
|
|
6451
|
+
{
|
|
6452
|
+
"const": "click"
|
|
6453
|
+
}
|
|
6454
|
+
]
|
|
6455
|
+
}
|
|
6456
|
+
}
|
|
6457
|
+
},
|
|
6458
|
+
"payload": {
|
|
6459
|
+
"$ref": "#/definitions/EmptyPayload"
|
|
6460
|
+
}
|
|
6461
|
+
}
|
|
6076
6462
|
}
|
|
6077
6463
|
}
|
|
6078
6464
|
}
|
|
@@ -6380,7 +6766,7 @@
|
|
|
6380
6766
|
"properties": {
|
|
6381
6767
|
"deploymentType": {
|
|
6382
6768
|
"type": "string",
|
|
6383
|
-
"enum": ["
|
|
6769
|
+
"enum": ["data_app", "schedule", "service"]
|
|
6384
6770
|
}
|
|
6385
6771
|
}
|
|
6386
6772
|
},
|
|
@@ -6391,7 +6777,7 @@
|
|
|
6391
6777
|
"properties": {
|
|
6392
6778
|
"deploymentType": {
|
|
6393
6779
|
"type": "string",
|
|
6394
|
-
"enum": ["
|
|
6780
|
+
"enum": ["data_app", "service"]
|
|
6395
6781
|
},
|
|
6396
6782
|
"sharingMethod": {
|
|
6397
6783
|
"type": "string",
|
|
@@ -6468,6 +6854,19 @@
|
|
|
6468
6854
|
"type": "string"
|
|
6469
6855
|
}
|
|
6470
6856
|
}
|
|
6857
|
+
},
|
|
6858
|
+
"ObjectUploadedPayload": {
|
|
6859
|
+
"type": "object",
|
|
6860
|
+
"additionalProperties": false,
|
|
6861
|
+
"required": ["uploadedObjects"],
|
|
6862
|
+
"properties": {
|
|
6863
|
+
"uploadedObjects": {
|
|
6864
|
+
"type": "object",
|
|
6865
|
+
"additionalProperties": {
|
|
6866
|
+
"type": "integer"
|
|
6867
|
+
}
|
|
6868
|
+
}
|
|
6869
|
+
}
|
|
6471
6870
|
}
|
|
6472
6871
|
}
|
|
6473
6872
|
}
|