@openfin/remote-adapter 43.100.35 → 43.100.37

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.
@@ -9791,6 +9791,12 @@ class System extends base_1$h.EmitterBase {
9791
9791
  async serveAsset(options) {
9792
9792
  return (await this.wire.sendAction('serve-asset', { options })).payload.data;
9793
9793
  }
9794
+ /**
9795
+ * Launches the Log Uploader. Full documentation can be found [here](https://resources.here.io/docs/core/develop/debug/log-uploader/).
9796
+ */
9797
+ async launchLogUploader(options) {
9798
+ return (await this.wire.sendAction('launch-log-uploader', { options })).payload.data;
9799
+ }
9794
9800
  }
9795
9801
  system.System = System;
9796
9802
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/remote-adapter",
3
- "version": "43.100.35",
3
+ "version": "43.100.37",
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": "43.100.35"
23
+ "@openfin/core": "43.100.37"
24
24
  }
25
25
  }