@openfin/remote-adapter 41.100.45 → 41.100.47
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/out/remote-adapter.js +7 -0
- package/package.json +2 -2
package/out/remote-adapter.js
CHANGED
|
@@ -9718,6 +9718,13 @@ class System extends base_1$g.EmitterBase {
|
|
|
9718
9718
|
const { payload } = await this.wire.sendAction('get-installed-extensions');
|
|
9719
9719
|
return payload.data;
|
|
9720
9720
|
}
|
|
9721
|
+
/**
|
|
9722
|
+
* Used to serve an asset signed by OpenFin within the given runtime.
|
|
9723
|
+
* Not indended for general use, will be used by the `@openfin/workspace-platform` package.
|
|
9724
|
+
*/
|
|
9725
|
+
async serveAsset(options) {
|
|
9726
|
+
return (await this.wire.sendAction('serve-asset', { options })).payload.data;
|
|
9727
|
+
}
|
|
9721
9728
|
}
|
|
9722
9729
|
system.System = System;
|
|
9723
9730
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openfin/remote-adapter",
|
|
3
|
-
"version": "41.100.
|
|
3
|
+
"version": "41.100.47",
|
|
4
4
|
"description": "Establish intermachine runtime connections using webRTC.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"private": false,
|
|
@@ -20,6 +20,6 @@
|
|
|
20
20
|
"author": "OpenFin",
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"lodash": "^4.17.21",
|
|
23
|
-
"@openfin/core": "41.100.
|
|
23
|
+
"@openfin/core": "41.100.47"
|
|
24
24
|
}
|
|
25
25
|
}
|