@openfin/node-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.
@@ -7510,6 +7510,22 @@ class System extends base_1$i.EmitterBase {
7510
7510
  async setDomainSettings(domainSettings) {
7511
7511
  await this.wire.sendAction('set-domain-settings', { domainSettings, ...this.identity });
7512
7512
  }
7513
+ /**
7514
+ * Attempts to install and enable extensions for the security realm. Users may want to call this function in response
7515
+ * to an `extensions-install-failed` event. Only extensions allowed by every application on the current security realm
7516
+ * will be installed/enabled.
7517
+ */
7518
+ async refreshExtensions() {
7519
+ const { payload } = await this.wire.sendAction('refresh-extensions');
7520
+ return payload.data;
7521
+ }
7522
+ /**
7523
+ * Gets the currently-installed
7524
+ */
7525
+ async getInstalledExtensions() {
7526
+ const { payload } = await this.wire.sendAction('get-installed-extensions');
7527
+ return payload.data;
7528
+ }
7513
7529
  }
7514
7530
  system.System = System;
7515
7531
 
@@ -17493,7 +17509,7 @@ class NodeEnvironment extends BaseEnvironment_1 {
17493
17509
  };
17494
17510
  }
17495
17511
  getAdapterVersionSync() {
17496
- return "38.82.67";
17512
+ return "38.83.70";
17497
17513
  }
17498
17514
  observeBounds(element, onChange) {
17499
17515
  throw new Error('Method not implemented.');
@@ -17934,7 +17950,7 @@ async function loadConfig(config) {
17934
17950
  return await readLocalConfig(config.manifestUrl);
17935
17951
  }
17936
17952
  catch (error) {
17937
- throw new Error(`Could not locate JSON at supplied manifestUrl: ${config.manifestUrl}`);
17953
+ throw new Error(`Could not fetch and read local JSON at supplied manifestUrl: ${config.manifestUrl} Error caught: ${error.stack}`);
17938
17954
  }
17939
17955
  }
17940
17956
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/node-adapter",
3
- "version": "38.82.67",
3
+ "version": "38.83.70",
4
4
  "description": "See README.md",
5
5
  "main": "out/node-adapter.js",
6
6
  "types": "out/node-adapter.d.ts",
@@ -23,7 +23,7 @@
23
23
  "author": "OpenFin",
24
24
  "dependencies": {
25
25
  "@types/node": "^20.14.2",
26
- "@openfin/core": "38.82.67",
26
+ "@openfin/core": "38.83.70",
27
27
  "lodash": "^4.17.21",
28
28
  "ws": "^7.3.0"
29
29
  }