@openfin/remote-adapter 39.83.5 → 39.83.19

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.
@@ -11697,6 +11697,22 @@ class System extends base_1$d.EmitterBase {
11697
11697
  async setDomainSettings(domainSettings) {
11698
11698
  await this.wire.sendAction('set-domain-settings', { domainSettings, ...this.identity });
11699
11699
  }
11700
+ /**
11701
+ * Attempts to install and enable extensions for the security realm. Users may want to call this function in response
11702
+ * to an `extensions-install-failed` event. Only extensions allowed by every application on the current security realm
11703
+ * will be installed/enabled.
11704
+ */
11705
+ async refreshExtensions() {
11706
+ const { payload } = await this.wire.sendAction('refresh-extensions');
11707
+ return payload.data;
11708
+ }
11709
+ /**
11710
+ * Gets the currently-installed
11711
+ */
11712
+ async getInstalledExtensions() {
11713
+ const { payload } = await this.wire.sendAction('get-installed-extensions');
11714
+ return payload.data;
11715
+ }
11700
11716
  }
11701
11717
  system.System = System;
11702
11718
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/remote-adapter",
3
- "version": "39.83.5",
3
+ "version": "39.83.19",
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": "39.83.5"
22
+ "@openfin/core": "39.83.19"
23
23
  }
24
24
  }