@knime/hub-features 2.1.0 → 2.1.2
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,17 @@
|
|
|
1
1
|
# @knime/hub-features
|
|
2
2
|
|
|
3
|
+
## 2.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fd37cd4: adjust casing for event payload properties
|
|
8
|
+
|
|
9
|
+
## 2.1.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 966cc38: Adjust naming of payload properties for execution events
|
|
14
|
+
|
|
3
15
|
## 2.1.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knime/hub-features",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.2",
|
|
4
4
|
"description": "Vue components & composables for shared hub features",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"lodash-es": "4.18.1",
|
|
41
41
|
"ofetch": "^1.4.1",
|
|
42
42
|
"typescript": "^5.9.3",
|
|
43
|
-
"@knime/
|
|
44
|
-
"@knime/
|
|
43
|
+
"@knime/styles": "1.15.4",
|
|
44
|
+
"@knime/components": "2.0.0"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
47
47
|
"consola": "3.x",
|
|
@@ -1181,11 +1181,11 @@ export interface HintIdPayload {
|
|
|
1181
1181
|
hintId: string;
|
|
1182
1182
|
}
|
|
1183
1183
|
export interface NodeExecutionPayload {
|
|
1184
|
-
|
|
1184
|
+
nodesExecuted: {
|
|
1185
1185
|
nodeType: "node" | "component" | "metanode";
|
|
1186
1186
|
nodeFactoryId?: string;
|
|
1187
1187
|
}[];
|
|
1188
|
-
|
|
1188
|
+
totalExecutedNodes: 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": ["
|
|
6343
|
+
"required": ["nodesExecuted", "totalExecutedNodes"],
|
|
6344
6344
|
"properties": {
|
|
6345
|
-
"
|
|
6345
|
+
"nodesExecuted": {
|
|
6346
6346
|
"type": "array",
|
|
6347
6347
|
"items": {
|
|
6348
6348
|
"type": "object",
|
|
@@ -6359,7 +6359,7 @@
|
|
|
6359
6359
|
}
|
|
6360
6360
|
}
|
|
6361
6361
|
},
|
|
6362
|
-
"
|
|
6362
|
+
"totalExecutedNodes": {
|
|
6363
6363
|
"type": "number"
|
|
6364
6364
|
}
|
|
6365
6365
|
}
|