@knime/hub-features 2.1.0 → 2.1.1

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
+ ## 2.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 966cc38: Adjust naming of payload properties for execution events
8
+
3
9
  ## 2.1.0
4
10
 
5
11
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@knime/hub-features",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "Vue components & composables for shared hub features",
5
5
  "repository": {
6
6
  "type": "git",
@@ -1181,11 +1181,11 @@ export interface HintIdPayload {
1181
1181
  hintId: string;
1182
1182
  }
1183
1183
  export interface NodeExecutionPayload {
1184
- nodes: {
1184
+ nodes_executed: {
1185
1185
  nodeType: "node" | "component" | "metanode";
1186
1186
  nodeFactoryId?: string;
1187
1187
  }[];
1188
- total: number;
1188
+ total_executed_nodes: number;
1189
1189
  }
1190
1190
  export interface ConfigurationCompletedPayload {
1191
1191
  nodeFactoryId?: string;
@@ -6340,9 +6340,9 @@
6340
6340
  "NodeExecutionPayload": {
6341
6341
  "type": "object",
6342
6342
  "additionalProperties": false,
6343
- "required": ["nodes", "total"],
6343
+ "required": ["nodes_executed", "total_executed_nodes"],
6344
6344
  "properties": {
6345
- "nodes": {
6345
+ "nodes_executed": {
6346
6346
  "type": "array",
6347
6347
  "items": {
6348
6348
  "type": "object",
@@ -6359,7 +6359,7 @@
6359
6359
  }
6360
6360
  }
6361
6361
  },
6362
- "total": {
6362
+ "total_executed_nodes": {
6363
6363
  "type": "number"
6364
6364
  }
6365
6365
  }