@openfin/remote-adapter 37.80.17 → 37.80.19

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.
@@ -15123,8 +15123,7 @@ class LayoutModule extends base_1$3.Base {
15123
15123
  const managerProxy = new Proxy(layoutManager, {
15124
15124
  get(target, key) {
15125
15125
  console.warn(`[Layout-mgr-proxy] accessing ${key.toString()}`);
15126
- console.warn(msg);
15127
- return target[key];
15126
+ throw new Error(msg);
15128
15127
  }
15129
15128
  });
15130
15129
  const layout = Object.assign(this.wrapSync(layoutIdentity), { layoutManager: managerProxy });
@@ -15132,7 +15131,7 @@ class LayoutModule extends base_1$3.Base {
15132
15131
  get(target, key) {
15133
15132
  if (key === 'layoutManager') {
15134
15133
  console.warn(`[Layout-proxy] accessing ${key.toString()}`);
15135
- console.warn(msg);
15134
+ throw new Error(msg);
15136
15135
  }
15137
15136
  return target[key];
15138
15137
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/remote-adapter",
3
- "version": "37.80.17",
3
+ "version": "37.80.19",
4
4
  "description": "Establish intermachine runtime connections using webRTC.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "private": false,