@knime/hub-features 1.24.4 → 1.25.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 +6 -0
- package/package.json +3 -3
- package/src/embeddingSDK/types.ts +5 -0
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knime/hub-features",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.25.0",
|
|
4
4
|
"description": "Vue components & composables for shared hub features",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"ofetch": "^1.4.1",
|
|
41
41
|
"typescript": "^5.9.3",
|
|
42
42
|
"@knime/components": "1.46.1",
|
|
43
|
-
"@knime/
|
|
44
|
-
"@knime/
|
|
43
|
+
"@knime/utils": "1.10.1",
|
|
44
|
+
"@knime/styles": "1.15.0"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
47
47
|
"consola": "3.x",
|
|
@@ -6,6 +6,11 @@ export type EmbeddingContext = {
|
|
|
6
6
|
* (e.g in case of browser AP, this is the WS url provided by the ws-proxy)
|
|
7
7
|
*/
|
|
8
8
|
wsConnectionUri: string;
|
|
9
|
+
/**
|
|
10
|
+
* URI of the HTTP endpoint used by the embedded application to fetch HTTP resources.
|
|
11
|
+
* Optional for backwards compatibility with older embedders.
|
|
12
|
+
*/
|
|
13
|
+
httpResourceUri?: string;
|
|
9
14
|
/**
|
|
10
15
|
* @deprecated URI of the WS used by the embedded application.
|
|
11
16
|
* Last used in AP 5.8.0. From 5.9.0 and onwards `wsConnectionUri` is preferred.
|