@knime/hub-features 1.29.3 → 1.30.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,11 @@
1
1
  # @knime/hub-features
2
2
 
3
+ ## 1.30.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 90a327b: Adjust cloudhome events
8
+
3
9
  ## 1.29.3
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@knime/hub-features",
3
- "version": "1.29.3",
3
+ "version": "1.30.0",
4
4
  "description": "Vue components & composables for shared hub features",
5
5
  "repository": {
6
6
  "type": "git",
@@ -39,9 +39,9 @@
39
39
  "lodash-es": "4.18.1",
40
40
  "ofetch": "^1.4.1",
41
41
  "typescript": "^5.9.3",
42
- "@knime/components": "1.46.7",
42
+ "@knime/utils": "1.11.1",
43
43
  "@knime/styles": "1.15.1",
44
- "@knime/utils": "1.11.1"
44
+ "@knime/components": "1.46.7"
45
45
  },
46
46
  "peerDependencies": {
47
47
  "consola": "3.x",
@@ -124,9 +124,9 @@ export const secretCreatedPersonalSecrets = <T extends DefaultContext>(ctx: T) =
124
124
  };
125
125
 
126
126
  /**
127
- * Fired when the user clicks the Create button in the deployment creation side panel
127
+ * Fired when the user clicks the Create button in the deployment creation side panel on the workflow details page
128
128
  */
129
- export const deploymentCreated = <T extends DefaultContext>(ctx: T) => (eventData: EventFunctionArgs<"deploymentCreated">): AnalyticsEvent => {
129
+ export const deploymentCreatedFromWorkflowDetails = <T extends DefaultContext>(ctx: T) => (eventData: EventFunctionArgs<"deploymentCreatedFromWorkflowDetails">): AnalyticsEvent => {
130
130
  const staticData = {
131
131
  ...toSnakeCaseDeep(ctx),
132
132
  unique_event_id: crypto.randomUUID(),
@@ -136,7 +136,7 @@ export const deploymentCreated = <T extends DefaultContext>(ctx: T) => (eventDat
136
136
  event_display_name: "Deployment Created",
137
137
  interaction: {
138
138
  location: "contextual_side_panel",
139
- page: "deployments",
139
+ page: "workflow_details",
140
140
  trigger: "user",
141
141
  type: "click",
142
142
  },
@@ -672,13 +672,13 @@ export interface AnalyticsEventSchema {
672
672
  };
673
673
  payload: ContainerNodeTypePayload;
674
674
  };
675
- deploymentCreated: {
675
+ deploymentCreatedFromWorkflowDetails: {
676
676
  event_name: "deployment_created";
677
677
  event_source: "cloudhome";
678
678
  event_display_name: "Deployment Created";
679
679
  interaction: {
680
680
  location: "contextual_side_panel";
681
- page: "deployments";
681
+ page: "workflow_details";
682
682
  trigger: InteractionTrigger & "user";
683
683
  type: InteractionType & "click";
684
684
  };
@@ -73,7 +73,7 @@
73
73
  "containerNodeEnteredCtxMenu",
74
74
  "containerNodeExitedKeyboard",
75
75
  "containerNodeExitedToolbar",
76
- "deploymentCreated",
76
+ "deploymentCreatedFromWorkflowDetails",
77
77
  "deploymentSharedDeploymentsAccessPanel",
78
78
  "deploymentSharedDeploymentsSharingPopup",
79
79
  "deploymentSharedWorkflowAccessPanel",
@@ -3564,10 +3564,10 @@
3564
3564
  }
3565
3565
  }
3566
3566
  },
3567
- "deploymentCreated": {
3567
+ "deploymentCreatedFromWorkflowDetails": {
3568
3568
  "type": "object",
3569
3569
  "additionalProperties": false,
3570
- "$comment": "Fired when the user clicks the Create button in the deployment creation side panel",
3570
+ "$comment": "Fired when the user clicks the Create button in the deployment creation side panel on the workflow details page",
3571
3571
  "required": [
3572
3572
  "event_name",
3573
3573
  "event_source",
@@ -3599,7 +3599,7 @@
3599
3599
  },
3600
3600
  "page": {
3601
3601
  "type": "string",
3602
- "const": "deployments"
3602
+ "const": "workflow_details"
3603
3603
  },
3604
3604
  "trigger": {
3605
3605
  "allOf": [