@openfin/remote-adapter 40.100.6 → 40.101.1

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.
@@ -11851,6 +11851,13 @@ class System extends base_1$d.EmitterBase {
11851
11851
  const { payload } = await this.wire.sendAction('get-installed-extensions');
11852
11852
  return payload.data;
11853
11853
  }
11854
+ /**
11855
+ * Used to serve an asset signed by OpenFin within the given runtime.
11856
+ * Not indended for general use, will be used by the `@openfin/workspace-platform` package.
11857
+ */
11858
+ async serveAsset(options) {
11859
+ return (await this.wire.sendAction('serve-asset', { options })).payload.data;
11860
+ }
11854
11861
  }
11855
11862
  system.System = System;
11856
11863
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/remote-adapter",
3
- "version": "40.100.6",
3
+ "version": "40.101.1",
4
4
  "description": "Establish intermachine runtime connections using webRTC.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "private": false,
@@ -20,6 +20,6 @@
20
20
  "author": "OpenFin",
21
21
  "dependencies": {
22
22
  "lodash": "^4.17.21",
23
- "@openfin/core": "40.100.6"
23
+ "@openfin/core": "40.101.1"
24
24
  }
25
25
  }