@interopio/desktop 6.10.1 → 6.11.0
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 +6 -2
- package/desktop.d.ts +20 -4
- package/dist/desktop.browser.js +443 -274
- 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 +443 -274
- package/dist/desktop.es.js.map +1 -1
- package/dist/desktop.umd.js +443 -274
- 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 +50 -51
package/changelog.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
|
-
6.
|
|
2
|
-
-
|
|
1
|
+
6.11.0
|
|
2
|
+
- fix: increase the timeout for the interop methods to 90 seconds
|
|
3
|
+
- fix: appManager: fix the issue with the appManager.start - race condition
|
|
4
|
+
- chore: add validations for various methods
|
|
5
|
+
- chore: update core
|
|
6
|
+
- chore: update fdc3
|
|
3
7
|
6.10.0
|
|
4
8
|
- feat: channels - add support for multi channels
|
|
5
9
|
- fix: windows - navigate method accepts timeout as a parameter
|
package/desktop.d.ts
CHANGED
|
@@ -268,7 +268,6 @@ export declare namespace IOConnectDesktop {
|
|
|
268
268
|
}
|
|
269
269
|
|
|
270
270
|
/** Activities configuration object. */
|
|
271
|
-
// eslint-disable-next-line @typescript-eslint/no-shadow
|
|
272
271
|
export interface Config {
|
|
273
272
|
/**
|
|
274
273
|
* @ignore
|
|
@@ -1217,7 +1216,6 @@ export declare namespace IOConnectDesktop {
|
|
|
1217
1216
|
type Mode = "startOnly" | "skipIcons" | "full";
|
|
1218
1217
|
|
|
1219
1218
|
/** @ignore */
|
|
1220
|
-
// eslint-disable-next-line @typescript-eslint/no-shadow
|
|
1221
1219
|
interface Config {
|
|
1222
1220
|
activities: IOConnectDesktop.Activities.API;
|
|
1223
1221
|
agm: IOConnectDesktop.Interop.API;
|
|
@@ -6582,7 +6580,6 @@ export declare namespace IOConnectDesktop {
|
|
|
6582
6580
|
/**
|
|
6583
6581
|
* Global settings for the Intents API.
|
|
6584
6582
|
*/
|
|
6585
|
-
// eslint-disable-next-line @typescript-eslint/no-shadow
|
|
6586
6583
|
export interface Config {
|
|
6587
6584
|
/**
|
|
6588
6585
|
* If `true`, will enable using the Intents Resolver UI for handling raised Intents.
|
|
@@ -7592,8 +7589,27 @@ export declare namespace IOConnectDesktop {
|
|
|
7592
7589
|
* @since io.Connect Desktop 9.6
|
|
7593
7590
|
*/
|
|
7594
7591
|
closeNotificationOnClick?: boolean;
|
|
7595
|
-
}
|
|
7596
7592
|
|
|
7593
|
+
/**
|
|
7594
|
+
* Settings for snoozing notifications.
|
|
7595
|
+
*/
|
|
7596
|
+
snooze?: {
|
|
7597
|
+
/**
|
|
7598
|
+
* If `true`, will enable snoozing notifications.
|
|
7599
|
+
*/
|
|
7600
|
+
enabled?: boolean;
|
|
7601
|
+
/**
|
|
7602
|
+
* Interval in milliseconds for which the notifications will be snoozed.
|
|
7603
|
+
* @default 600000
|
|
7604
|
+
*/
|
|
7605
|
+
duration?: number;
|
|
7606
|
+
};
|
|
7607
|
+
|
|
7608
|
+
/**
|
|
7609
|
+
* If `true`, will enable showing a notification badge on the tray menu icon, in the "Notifications" section of the io.Connect launcher, and on the taskbar icon of the io.Connect launcher (or your shell app).
|
|
7610
|
+
*/
|
|
7611
|
+
showNotificationBadge?: boolean;
|
|
7612
|
+
}
|
|
7597
7613
|
|
|
7598
7614
|
/**
|
|
7599
7615
|
* Settings for placing the Notification Panel and the notification toasts.
|