@openfin/remote-adapter 42.100.77 → 42.100.82

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.
@@ -5054,7 +5054,7 @@ function requireInstance$1 () {
5054
5054
  super(wire, identity, 'window');
5055
5055
  }
5056
5056
  async createWindow(options) {
5057
- this.wire.sendAction('window-create-window', this.identity).catch((e) => {
5057
+ this.wire.sendAction('window-create-window').catch((e) => {
5058
5058
  // we do not want to expose this error, just continue if this analytics-only call fails
5059
5059
  });
5060
5060
  const CONSTRUCTOR_CB_TOPIC = 'fire-constructor-callback';
@@ -5499,7 +5499,7 @@ function requireInstance$1 () {
5499
5499
  * @experimental
5500
5500
  */
5501
5501
  async getLayout(layoutIdentity) {
5502
- this.wire.sendAction('window-get-layout', this.identity).catch((e) => {
5502
+ this.wire.sendAction('window-get-layout').catch((e) => {
5503
5503
  // don't expose
5504
5504
  });
5505
5505
  const opts = await this.getOptions();
@@ -5550,7 +5550,7 @@ function requireInstance$1 () {
5550
5550
  * ```
5551
5551
  */
5552
5552
  getParentApplication() {
5553
- this.wire.sendAction('window-get-parent-application', this.identity).catch((e) => {
5553
+ this.wire.sendAction('window-get-parent-application').catch((e) => {
5554
5554
  // we do not want to expose this error, just continue if this analytics-only call fails
5555
5555
  });
5556
5556
  return Promise.resolve(new application_1.Application(this.wire, this.identity));
@@ -5575,7 +5575,7 @@ function requireInstance$1 () {
5575
5575
  * ```
5576
5576
  */
5577
5577
  getParentWindow() {
5578
- this.wire.sendAction('window-get-parent-window', this.identity).catch((e) => {
5578
+ this.wire.sendAction('window-get-parent-window').catch((e) => {
5579
5579
  // we do not want to expose this error, just continue if this analytics-only call fails
5580
5580
  });
5581
5581
  return Promise.resolve(new application_1.Application(this.wire, this.identity)).then((app) => app.getWindow());
@@ -5681,7 +5681,7 @@ function requireInstance$1 () {
5681
5681
  * ```
5682
5682
  */
5683
5683
  getWebWindow() {
5684
- this.wire.sendAction('window-get-web-window', this.identity).catch((e) => {
5684
+ this.wire.sendAction('window-get-web-window').catch((e) => {
5685
5685
  // we do not want to expose this error, just continue if this analytics-only call fails
5686
5686
  });
5687
5687
  return this.wire.environment.getWebWindow(this.identity);
@@ -5697,7 +5697,7 @@ function requireInstance$1 () {
5697
5697
  * ```
5698
5698
  */
5699
5699
  isMainWindow() {
5700
- this.wire.sendAction('window-is-main-window', this.identity).catch((e) => {
5700
+ this.wire.sendAction('window-is-main-window').catch((e) => {
5701
5701
  // we do not want to expose this error, just continue if this analytics-only call fails
5702
5702
  });
5703
5703
  return this.me.uuid === this.me.name;
@@ -6218,7 +6218,7 @@ function requireInstance$1 () {
6218
6218
  * ```
6219
6219
  */
6220
6220
  async dispatchPopupResult(data) {
6221
- this.wire.sendAction('window-dispatch-popup-result', this.identity).catch((e) => {
6221
+ this.wire.sendAction('window-dispatch-popup-result').catch((e) => {
6222
6222
  // we do not want to expose this error, just continue if this analytics-only call fails
6223
6223
  });
6224
6224
  await this.wire.sendAction('dispatch-popup-result', { data, ...this.identity });
@@ -6816,7 +6816,7 @@ function requireInstance () {
6816
6816
  * @experimental
6817
6817
  */
6818
6818
  this.getParentLayout = async () => {
6819
- this.wire.sendAction('view-get-parent-layout', { ...this.identity }).catch(() => {
6819
+ this.wire.sendAction('view-get-parent-layout').catch(() => {
6820
6820
  // don't expose
6821
6821
  });
6822
6822
  return this.fin.Platform.Layout.getLayoutByViewIdentity(this.identity);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/remote-adapter",
3
- "version": "42.100.77",
3
+ "version": "42.100.82",
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": "42.100.77"
23
+ "@openfin/core": "42.100.82"
24
24
  }
25
25
  }