@knime/hub-features 1.25.3 → 1.26.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 +13 -0
- package/package.json +2 -2
- package/src/analytics/schema/schema.d.ts +14 -0
- package/src/analytics/schema/schema.json +49 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @knime/hub-features
|
|
2
2
|
|
|
3
|
+
## 1.26.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [a10e61f]
|
|
8
|
+
- @knime/components@1.46.5
|
|
9
|
+
|
|
10
|
+
## 1.26.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- eb41bf0: add schema for container enter/exit
|
|
15
|
+
|
|
3
16
|
## 1.25.3
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knime/hub-features",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.26.1",
|
|
4
4
|
"description": "Vue components & composables for shared hub features",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"lodash-es": "4.18.1",
|
|
40
40
|
"ofetch": "^1.4.1",
|
|
41
41
|
"typescript": "^5.9.3",
|
|
42
|
-
"@knime/components": "1.46.
|
|
42
|
+
"@knime/components": "1.46.5",
|
|
43
43
|
"@knime/styles": "1.15.1",
|
|
44
44
|
"@knime/utils": "1.11.0"
|
|
45
45
|
},
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
1
2
|
/**
|
|
2
3
|
* This file was automatically generated by json-schema-to-typescript.
|
|
3
4
|
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
@@ -114,6 +115,15 @@ export interface AnalyticsEventSchema {
|
|
|
114
115
|
version_created: {
|
|
115
116
|
versionhistorypanel_button_: EmptyPayload;
|
|
116
117
|
};
|
|
118
|
+
containernode_entered: {
|
|
119
|
+
component_doubleclick_ctrl: ContainerNodeNavigationPayload;
|
|
120
|
+
component_ctxmenu_: ContainerNodeNavigationPayload;
|
|
121
|
+
keyboard_shortcut_: ContainerNodeNavigationPayload;
|
|
122
|
+
};
|
|
123
|
+
containernode_exited: {
|
|
124
|
+
wftoolbar_button_workflow: ContainerNodeNavigationPayload;
|
|
125
|
+
keyboard_shortcut_: ContainerNodeNavigationPayload;
|
|
126
|
+
};
|
|
117
127
|
};
|
|
118
128
|
}
|
|
119
129
|
export interface KaiPromptedPayload {
|
|
@@ -175,3 +185,7 @@ export interface SearchPayload {
|
|
|
175
185
|
repoType: "node" | "component";
|
|
176
186
|
keyword: string;
|
|
177
187
|
}
|
|
188
|
+
export interface ContainerNodeNavigationPayload {
|
|
189
|
+
nodeType: "component" | "metanode";
|
|
190
|
+
nodeHubId?: string;
|
|
191
|
+
}
|
|
@@ -33,6 +33,8 @@
|
|
|
33
33
|
"session_interrupted",
|
|
34
34
|
"session_resumed",
|
|
35
35
|
"containernode_created",
|
|
36
|
+
"containernode_entered",
|
|
37
|
+
"containernode_exited",
|
|
36
38
|
"hint_shown",
|
|
37
39
|
"hint_closed"
|
|
38
40
|
],
|
|
@@ -382,6 +384,39 @@
|
|
|
382
384
|
"$ref": "#/definitions/EmptyPayload"
|
|
383
385
|
}
|
|
384
386
|
}
|
|
387
|
+
},
|
|
388
|
+
"containernode_entered": {
|
|
389
|
+
"type": "object",
|
|
390
|
+
"additionalProperties": false,
|
|
391
|
+
"required": [
|
|
392
|
+
"component_doubleclick_ctrl",
|
|
393
|
+
"component_ctxmenu_",
|
|
394
|
+
"keyboard_shortcut_"
|
|
395
|
+
],
|
|
396
|
+
"properties": {
|
|
397
|
+
"component_doubleclick_ctrl": {
|
|
398
|
+
"$ref": "#/definitions/ContainerNodeNavigationPayload"
|
|
399
|
+
},
|
|
400
|
+
"component_ctxmenu_": {
|
|
401
|
+
"$ref": "#/definitions/ContainerNodeNavigationPayload"
|
|
402
|
+
},
|
|
403
|
+
"keyboard_shortcut_": {
|
|
404
|
+
"$ref": "#/definitions/ContainerNodeNavigationPayload"
|
|
405
|
+
}
|
|
406
|
+
}
|
|
407
|
+
},
|
|
408
|
+
"containernode_exited": {
|
|
409
|
+
"type": "object",
|
|
410
|
+
"additionalProperties": false,
|
|
411
|
+
"required": ["wftoolbar_button_workflow", "keyboard_shortcut_"],
|
|
412
|
+
"properties": {
|
|
413
|
+
"wftoolbar_button_workflow": {
|
|
414
|
+
"$ref": "#/definitions/ContainerNodeNavigationPayload"
|
|
415
|
+
},
|
|
416
|
+
"keyboard_shortcut_": {
|
|
417
|
+
"$ref": "#/definitions/ContainerNodeNavigationPayload"
|
|
418
|
+
}
|
|
419
|
+
}
|
|
385
420
|
}
|
|
386
421
|
}
|
|
387
422
|
}
|
|
@@ -640,6 +675,20 @@
|
|
|
640
675
|
"properties": {
|
|
641
676
|
"hintId": { "type": "string" }
|
|
642
677
|
}
|
|
678
|
+
},
|
|
679
|
+
"ContainerNodeNavigationPayload": {
|
|
680
|
+
"type": "object",
|
|
681
|
+
"additionalProperties": false,
|
|
682
|
+
"required": ["nodeType"],
|
|
683
|
+
"properties": {
|
|
684
|
+
"nodeType": {
|
|
685
|
+
"type": "string",
|
|
686
|
+
"enum": ["component", "metanode"]
|
|
687
|
+
},
|
|
688
|
+
"nodeHubId": {
|
|
689
|
+
"type": "string"
|
|
690
|
+
}
|
|
691
|
+
}
|
|
643
692
|
}
|
|
644
693
|
}
|
|
645
694
|
}
|