@knime/hub-features 1.24.4 → 1.25.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 +14 -0
- package/package.json +3 -3
- package/src/embeddingSDK/types.ts +5 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @knime/hub-features
|
|
2
2
|
|
|
3
|
+
## 1.25.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [8b1c0a2]
|
|
8
|
+
- @knime/components@1.46.2
|
|
9
|
+
- @knime/styles@1.15.1
|
|
10
|
+
|
|
11
|
+
## 1.25.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- 838b5fb: add optional httpResourceUri to EmbeddingContext with tests
|
|
16
|
+
|
|
3
17
|
## 1.24.4
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knime/hub-features",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.25.1",
|
|
4
4
|
"description": "Vue components & composables for shared hub features",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
"lodash-es": "4.17.23",
|
|
40
40
|
"ofetch": "^1.4.1",
|
|
41
41
|
"typescript": "^5.9.3",
|
|
42
|
-
"@knime/components": "1.46.
|
|
43
|
-
"@knime/styles": "1.15.
|
|
42
|
+
"@knime/components": "1.46.2",
|
|
43
|
+
"@knime/styles": "1.15.1",
|
|
44
44
|
"@knime/utils": "1.10.1"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
@@ -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.
|