@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.
- package/changelog.md +4 -0
- package/desktop.d.ts +12 -2
- package/dist/desktop.browser.js +4 -4
- package/dist/desktop.browser.js.map +1 -1
- package/dist/desktop.browser.min.js +1 -1
- package/dist/desktop.browser.min.js.map +1 -1
- package/dist/desktop.es.js +4 -4
- package/dist/desktop.es.js.map +1 -1
- package/dist/desktop.umd.js +4 -4
- package/dist/desktop.umd.js.map +1 -1
- package/dist/desktop.umd.min.js +1 -1
- package/dist/desktop.umd.min.js.map +1 -1
- package/package.json +4 -3
package/dist/desktop.es.js
CHANGED
|
@@ -13017,7 +13017,7 @@ class AppManagerImpl {
|
|
|
13017
13017
|
};
|
|
13018
13018
|
this.getMyApplication = () => {
|
|
13019
13019
|
if (this._agm.instance) {
|
|
13020
|
-
return this.application(this._agm.instance.
|
|
13020
|
+
return this.application(this._agm.instance.applicationName);
|
|
13021
13021
|
}
|
|
13022
13022
|
};
|
|
13023
13023
|
this.handleSnapshotAppsAdded = (newApps) => {
|
|
@@ -18878,7 +18878,7 @@ function factory$3(agm) {
|
|
|
18878
18878
|
};
|
|
18879
18879
|
}
|
|
18880
18880
|
|
|
18881
|
-
var version = "6.2.
|
|
18881
|
+
var version = "6.2.2";
|
|
18882
18882
|
|
|
18883
18883
|
var prepareConfig = (options) => {
|
|
18884
18884
|
function getLibConfig(value, defaultMode, trueMode) {
|
|
@@ -19212,8 +19212,8 @@ class Notifications {
|
|
|
19212
19212
|
}
|
|
19213
19213
|
await this.interop.invoke(this.NotificationsExecuteMethod, { command: "clear", data: { id } });
|
|
19214
19214
|
}
|
|
19215
|
-
async click(id, action) {
|
|
19216
|
-
await this.interop.invoke(this.NotificationsExecuteMethod, { command: "click", data: { id, action } });
|
|
19215
|
+
async click(id, action, options) {
|
|
19216
|
+
await this.interop.invoke(this.NotificationsExecuteMethod, { command: "click", data: { id, action, options } });
|
|
19217
19217
|
}
|
|
19218
19218
|
async setState(id, state) {
|
|
19219
19219
|
if (!id) {
|