@interopio/desktop 6.2.0 → 6.2.2

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.
@@ -13023,7 +13023,7 @@
13023
13023
  };
13024
13024
  this.getMyApplication = () => {
13025
13025
  if (this._agm.instance) {
13026
- return this.application(this._agm.instance.application);
13026
+ return this.application(this._agm.instance.applicationName);
13027
13027
  }
13028
13028
  };
13029
13029
  this.handleSnapshotAppsAdded = (newApps) => {
@@ -18884,7 +18884,7 @@
18884
18884
  };
18885
18885
  }
18886
18886
 
18887
- var version = "6.2.0";
18887
+ var version = "6.2.2";
18888
18888
 
18889
18889
  var prepareConfig = (options) => {
18890
18890
  function getLibConfig(value, defaultMode, trueMode) {
@@ -19218,8 +19218,8 @@
19218
19218
  }
19219
19219
  await this.interop.invoke(this.NotificationsExecuteMethod, { command: "clear", data: { id } });
19220
19220
  }
19221
- async click(id, action) {
19222
- await this.interop.invoke(this.NotificationsExecuteMethod, { command: "click", data: { id, action } });
19221
+ async click(id, action, options) {
19222
+ await this.interop.invoke(this.NotificationsExecuteMethod, { command: "click", data: { id, action, options } });
19223
19223
  }
19224
19224
  async setState(id, state) {
19225
19225
  if (!id) {