@openfin/node-adapter 40.100.6 → 40.101.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -6958,6 +6958,13 @@ class System extends base_1$i.EmitterBase {
6958
6958
  const { payload } = await this.wire.sendAction('get-installed-extensions');
6959
6959
  return payload.data;
6960
6960
  }
6961
+ /**
6962
+ * Used to serve an asset signed by OpenFin within the given runtime.
6963
+ * Not indended for general use, will be used by the `@openfin/workspace-platform` package.
6964
+ */
6965
+ async serveAsset(options) {
6966
+ return (await this.wire.sendAction('serve-asset', { options })).payload.data;
6967
+ }
6961
6968
  }
6962
6969
  system.System = System;
6963
6970
 
@@ -17780,7 +17787,7 @@ class NodeEnvironment extends BaseEnvironment_1 {
17780
17787
  };
17781
17788
  }
17782
17789
  getAdapterVersionSync() {
17783
- return "40.100.6";
17790
+ return "40.101.1";
17784
17791
  }
17785
17792
  observeBounds(element, onChange) {
17786
17793
  throw new Error('Method not implemented.');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/node-adapter",
3
- "version": "40.100.6",
3
+ "version": "40.101.1",
4
4
  "description": "See README.md",
5
5
  "main": "out/node-adapter.js",
6
6
  "types": "out/node-adapter.d.ts",
@@ -24,7 +24,7 @@
24
24
  "author": "OpenFin",
25
25
  "dependencies": {
26
26
  "@types/node": "^20.14.2",
27
- "@openfin/core": "40.100.6",
27
+ "@openfin/core": "40.101.1",
28
28
  "lodash": "^4.17.21",
29
29
  "ws": "^7.3.0"
30
30
  }