@openfin/remote-adapter 38.82.67 → 38.83.70
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 +16 -0
- package/package.json +2 -2
package/out/remote-adapter.js
CHANGED
|
@@ -12392,6 +12392,22 @@ class System extends base_1$d.EmitterBase {
|
|
|
12392
12392
|
async setDomainSettings(domainSettings) {
|
|
12393
12393
|
await this.wire.sendAction('set-domain-settings', { domainSettings, ...this.identity });
|
|
12394
12394
|
}
|
|
12395
|
+
/**
|
|
12396
|
+
* Attempts to install and enable extensions for the security realm. Users may want to call this function in response
|
|
12397
|
+
* to an `extensions-install-failed` event. Only extensions allowed by every application on the current security realm
|
|
12398
|
+
* will be installed/enabled.
|
|
12399
|
+
*/
|
|
12400
|
+
async refreshExtensions() {
|
|
12401
|
+
const { payload } = await this.wire.sendAction('refresh-extensions');
|
|
12402
|
+
return payload.data;
|
|
12403
|
+
}
|
|
12404
|
+
/**
|
|
12405
|
+
* Gets the currently-installed
|
|
12406
|
+
*/
|
|
12407
|
+
async getInstalledExtensions() {
|
|
12408
|
+
const { payload } = await this.wire.sendAction('get-installed-extensions');
|
|
12409
|
+
return payload.data;
|
|
12410
|
+
}
|
|
12395
12411
|
}
|
|
12396
12412
|
system.System = System;
|
|
12397
12413
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openfin/remote-adapter",
|
|
3
|
-
"version": "38.
|
|
3
|
+
"version": "38.83.70",
|
|
4
4
|
"description": "Establish intermachine runtime connections using webRTC.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"private": false,
|
|
@@ -19,6 +19,6 @@
|
|
|
19
19
|
"author": "OpenFin",
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"lodash": "^4.17.21",
|
|
22
|
-
"@openfin/core": "38.
|
|
22
|
+
"@openfin/core": "38.83.70"
|
|
23
23
|
}
|
|
24
24
|
}
|