@openfin/remote-adapter 39.83.7 → 39.83.20

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.
@@ -16678,6 +16678,10 @@ class LayoutModule extends base_1$3.Base {
16678
16678
  if (!allowedErrors.some((m) => e.message.includes(m))) {
16679
16679
  throw e;
16680
16680
  }
16681
+ // If a view is attached to provider window, return null
16682
+ if (layoutWindowIdentity.uuid === layoutWindowIdentity.name) {
16683
+ throw new Error(`View identity ${JSON.stringify(viewIdentity)} is not attached to any layout in provider window ${JSON.stringify(layoutWindowIdentity)}.`);
16684
+ }
16681
16685
  // fallback logic for missing endpoint in older runtimes
16682
16686
  return this.wrapSync(layoutWindowIdentity);
16683
16687
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/remote-adapter",
3
- "version": "39.83.7",
3
+ "version": "39.83.20",
4
4
  "description": "Establish intermachine runtime connections using webRTC.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "private": false,
@@ -19,6 +19,6 @@
19
19
  "author": "OpenFin",
20
20
  "dependencies": {
21
21
  "lodash": "^4.17.21",
22
- "@openfin/core": "39.83.7"
22
+ "@openfin/core": "39.83.20"
23
23
  }
24
24
  }