@openfin/node-adapter 41.100.45 → 41.100.47

Sign up to get free protection for your applications and to get access to all the features.
@@ -6973,6 +6973,13 @@ class System extends base_1$l.EmitterBase {
6973
6973
  const { payload } = await this.wire.sendAction('get-installed-extensions');
6974
6974
  return payload.data;
6975
6975
  }
6976
+ /**
6977
+ * Used to serve an asset signed by OpenFin within the given runtime.
6978
+ * Not indended for general use, will be used by the `@openfin/workspace-platform` package.
6979
+ */
6980
+ async serveAsset(options) {
6981
+ return (await this.wire.sendAction('serve-asset', { options })).payload.data;
6982
+ }
6976
6983
  }
6977
6984
  system.System = System;
6978
6985
 
@@ -17714,7 +17721,7 @@ class NodeEnvironment extends BaseEnvironment_1 {
17714
17721
  };
17715
17722
  }
17716
17723
  getAdapterVersionSync() {
17717
- return "41.100.45";
17724
+ return "41.100.47";
17718
17725
  }
17719
17726
  observeBounds(element, onChange) {
17720
17727
  throw new Error('Method not implemented.');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/node-adapter",
3
- "version": "41.100.45",
3
+ "version": "41.100.47",
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": "41.100.45",
27
+ "@openfin/core": "41.100.47",
28
28
  "lodash": "^4.17.21",
29
29
  "ws": "^7.3.0"
30
30
  }